/* ============================================================
   Homepage Variation 2 — "Warm Minimal" Premium Design
   ============================================================ */

:root {
    --h2-forest: #134e3a;
    --h2-forest-light: #1a6b4f;
    --h2-gold: #c8956c;
    --h2-gold-light: #deb892;
    --h2-cream: #faf5ef;
    --h2-dark: #1a1a2e;
    --h2-text: #5a5a6e;
    --h2-border: #eae5de;
    --h2-white: #ffffff;
    --h2-radius: 20px;
    --h2-radius-lg: 32px;
    --h2-shadow: 0 8px 32px rgba(0,0,0,0.06);
    --h2-shadow-hover: 0 16px 48px rgba(0,0,0,0.10);
    --h2-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Hero — Full-Width Visual ---- */
.h2-hero {
    position: relative;
    padding: 180px 0 140px;
    overflow: hidden;
    min-height: 620px;
    display: flex;
    align-items: center;
}

.h2-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.h2-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(19, 78, 58, 0.85) 0%, rgba(26, 26, 46, 0.92) 100%);
    z-index: 1;
}

.h2-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    padding: 8px 22px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: var(--h2-white);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.h2-hero-badge i {
    color: var(--h2-gold-light);
}

.h2-hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--h2-white);
    margin-bottom: 24px;
    letter-spacing: -2.5px;
}

.h2-hero-title .h2-highlight {
    position: relative;
    color: var(--h2-gold-light);
    display: inline-block;
}

.h2-hero-title .h2-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--h2-gold);
    opacity: 0.30;
    border-radius: 4px;
    z-index: -1;
}

.h2-hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 48px;
}

/* Floating Search Card */
.h2-search-card {
    background: var(--h2-white);
    border-radius: var(--h2-radius-lg);
    padding: 28px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.15);
    margin-top: 16px;
}

.h2-search-bar {
    background: var(--h2-cream);
    padding: 8px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    border: 1px solid var(--h2-border);
}

.h2-search-field {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.h2-search-field i {
    color: #94a3b8;
    margin-right: 12px;
    font-size: 16px;
}

.h2-search-bar input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 15px;
    padding: 12px 0;
    font-weight: 500;
    background: transparent;
    color: var(--h2-dark);
}

.h2-search-bar input::placeholder {
    color: #94a3b8;
}

.h2-search-divider {
    width: 1px;
    height: 32px;
    background: var(--h2-border);
}

.h2-search-select {
    padding: 0 16px;
    min-width: 170px;
}

.h2-search-select select {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: var(--h2-dark);
    width: 100%;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    padding: 12px 0;
}

.h2-btn-search {
    background: var(--h2-forest);
    color: var(--h2-white);
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--h2-transition);
    white-space: nowrap;
}

.h2-btn-search:hover {
    background: var(--h2-forest-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(19, 78, 58, 0.25);
}

/* Trust Row */
.h2-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.h2-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--h2-text);
}

.h2-trust-item i {
    color: var(--h2-forest);
    font-size: 15px;
}

/* ---- Features Strip ---- */
.h2-features-strip {
    padding: 80px 0;
    background: var(--h2-white);
    border-bottom: 1px solid var(--h2-border);
}

.h2-feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border-radius: var(--h2-radius);
    transition: var(--h2-transition);
}

.h2-feature-item:hover {
    background: var(--h2-cream);
}

.h2-feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--h2-cream);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--h2-forest);
    transition: var(--h2-transition);
}

.h2-feature-item:hover .h2-feature-icon {
    background: var(--h2-forest);
    color: var(--h2-white);
}

.h2-feature-item h5 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--h2-dark);
}

.h2-feature-item p {
    font-size: 14px;
    color: var(--h2-text);
    margin: 0;
    line-height: 1.5;
}

/* ---- Section Common ---- */
.h2-section-pretitle {
    color: var(--h2-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 12px;
}

.h2-section-title {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: var(--h2-dark);
    line-height: 1.15;
}

.h2-section-desc {
    font-size: 17px;
    color: var(--h2-text);
    line-height: 1.7;
    max-width: 560px;
}

/* ---- Categories ---- */
.h2-categories {
    padding: 100px 0;
    background: var(--h2-white);
}

.h2-cat-card {
    background: var(--h2-cream);
    border-radius: var(--h2-radius);
    padding: 36px 28px;
    text-align: center;
    transition: var(--h2-transition);
    height: 100%;
    text-decoration: none !important;
    display: block;
    border: 1px solid transparent;
}

.h2-cat-card:hover {
    background: var(--h2-forest);
    border-color: var(--h2-forest);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(19, 78, 58, 0.15);
}

.h2-cat-icon {
    width: 72px;
    height: 72px;
    background: var(--h2-white);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--h2-forest);
    margin: 0 auto 20px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.04);
    transition: var(--h2-transition);
}

.h2-cat-card:hover .h2-cat-icon {
    background: rgba(255,255,255,0.15);
    color: var(--h2-white);
}

.h2-cat-card h5 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--h2-dark);
    transition: var(--h2-transition);
}

.h2-cat-card p {
    font-size: 14px;
    color: var(--h2-text);
    margin: 0;
    transition: var(--h2-transition);
}

.h2-cat-card:hover h5,
.h2-cat-card:hover p {
    color: var(--h2-white);
}

/* ---- Services ---- */
.h2-services {
    padding: 100px 0;
    background: var(--h2-cream);
}

.h2-service-card {
    background: var(--h2-white);
    border-radius: var(--h2-radius-lg);
    overflow: hidden;
    border: 1px solid var(--h2-border);
    transition: var(--h2-transition);
    height: 100%;
}

.h2-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--h2-shadow-hover);
    border-color: transparent;
}

.h2-s-image {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.h2-s-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.h2-service-card:hover .h2-s-image img {
    transform: scale(1.06);
}

.h2-s-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--h2-white);
    color: var(--h2-dark);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.h2-s-price {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: var(--h2-forest);
    color: var(--h2-white);
    padding: 8px 18px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 16px;
}

.h2-s-wishlist {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: var(--h2-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--h2-text);
    cursor: pointer;
    transition: var(--h2-transition);
    z-index: 5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.h2-s-wishlist:hover,
.h2-s-wishlist.active {
    color: #ef4444;
    background: #fef2f2;
}

.h2-s-body {
    padding: 28px;
}

.h2-s-provider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.h2-s-provider img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.h2-s-provider span {
    font-size: 13px;
    font-weight: 600;
    color: var(--h2-text);
}

.h2-s-name {
    font-size: 19px;
    font-weight: 700;
    color: var(--h2-dark);
    text-decoration: none;
    display: block;
    margin-bottom: 18px;
    line-height: 1.35;
    transition: var(--h2-transition);
}

.h2-s-name:hover {
    color: var(--h2-forest);
}

.h2-s-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid var(--h2-border);
}

.h2-s-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: #f59e0b;
    font-size: 14px;
}

.h2-s-rating span {
    color: var(--h2-dark);
}

.h2-btn-book {
    color: var(--h2-forest);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    padding: 8px 16px;
    background: var(--h2-cream);
    border-radius: 100px;
    transition: var(--h2-transition);
}

.h2-btn-book:hover {
    background: var(--h2-forest);
    color: var(--h2-white);
}

.h2-btn-book i {
    font-size: 11px;
    transition: transform 0.3s;
}

.h2-btn-book:hover i {
    transform: translateX(3px);
}

/* ---- Stats Banner ---- */
.h2-stats-banner {
    padding: 80px 0;
    background: var(--h2-forest);
    position: relative;
    overflow: hidden;
}

.h2-stats-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: var(--h2-gold);
    opacity: 0.08;
    border-radius: 50%;
    filter: blur(80px);
}

.h2-stat-item {
    text-align: center;
    padding: 20px;
}

.h2-stat-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--h2-gold-light);
    margin: 0 auto 16px;
}

.h2-stat-item h3 {
    font-size: 42px;
    font-weight: 800;
    color: var(--h2-white);
    margin: 0 0 4px;
}

.h2-stat-item p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    margin: 0;
    font-weight: 500;
}

/* ---- Testimonials ---- */
.h2-testimonials {
    padding: 100px 0;
    background: var(--h2-white);
}

.h2-testi-card {
    background: var(--h2-cream);
    border-radius: var(--h2-radius-lg);
    padding: 40px;
    height: 100%;
    transition: var(--h2-transition);
    border: 1px solid transparent;
    margin: 0 12px;
}

.h2-testi-card:hover {
    border-color: var(--h2-border);
    box-shadow: var(--h2-shadow);
}

.h2-testi-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.h2-testi-stars i {
    color: #f59e0b;
    font-size: 15px;
}

.h2-testi-card blockquote {
    font-size: 16px;
    line-height: 1.7;
    color: var(--h2-text);
    margin: 0 0 28px;
    font-style: normal;
}

.h2-testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.h2-testi-author img {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    object-fit: cover;
}

.h2-testi-author h6 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 2px;
    color: var(--h2-dark);
}

.h2-testi-author span {
    font-size: 13px;
    color: var(--h2-text);
}

/* Slick dots for h2 testimonials */
.h2-testimonials .slick-dots {
    display: flex !important;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 48px 0 0;
    gap: 10px;
}

.h2-testimonials .slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    outline: none;
    background: var(--h2-border);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--h2-transition);
}

.h2-testimonials .slick-dots li button:before {
    display: none !important;
}

.h2-testimonials .slick-dots li.slick-active button {
    background: var(--h2-forest);
    width: 28px;
    border-radius: 100px;
}

/* ---- How It Works ---- */
.h2-how-it-works {
    padding: 100px 0;
    background: var(--h2-cream);
}

.h2-step-card {
    text-align: center;
    padding: 40px 28px;
    position: relative;
}

.h2-step-number {
    width: 64px;
    height: 64px;
    background: var(--h2-forest);
    color: var(--h2-white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 24px;
    transition: var(--h2-transition);
}

.h2-step-card:hover .h2-step-number {
    background: var(--h2-gold);
    transform: scale(1.1) rotate(-5deg);
}

.h2-step-card h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--h2-dark);
}

.h2-step-card p {
    font-size: 15px;
    color: var(--h2-text);
    line-height: 1.6;
    margin: 0;
}

.h2-step-connector {
    position: absolute;
    top: 68px;
    right: -20%;
    width: 40%;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        var(--h2-border) 0px,
        var(--h2-border) 8px,
        transparent 8px,
        transparent 16px
    );
}

/* ---- App Download ---- */
.h2-app-section {
    padding: 100px 0;
    background: var(--h2-white);
}

.h2-app-card {
    background: var(--h2-forest);
    border-radius: var(--h2-radius-lg);
    padding: 64px;
    position: relative;
    overflow: hidden;
}

.h2-app-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: var(--h2-gold);
    opacity: 0.08;
    border-radius: 50%;
    filter: blur(80px);
}

.h2-app-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--h2-white);
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.h2-app-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 420px;
}

.h2-app-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.h2-app-btns a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--h2-white);
    padding: 14px 28px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--h2-transition);
}

.h2-app-btns a:hover {
    background: var(--h2-white);
    color: var(--h2-forest);
    border-color: var(--h2-white);
}

.h2-app-btns a i {
    font-size: 22px;
}

.h2-app-img {
    text-align: center;
    position: relative;
    z-index: 1;
}

.h2-app-img img {
    max-height: 420px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* ---- Blog ---- */
.h2-blog-section {
    padding: 100px 0;
    background: var(--h2-cream);
}

.h2-blog-card {
    background: var(--h2-white);
    border-radius: var(--h2-radius-lg);
    overflow: hidden;
    border: 1px solid var(--h2-border);
    transition: var(--h2-transition);
    height: 100%;
}

.h2-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--h2-shadow-hover);
    border-color: transparent;
}

.h2-blog-img {
    height: 220px;
    overflow: hidden;
}

.h2-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.h2-blog-card:hover .h2-blog-img img {
    transform: scale(1.06);
}

.h2-blog-body {
    padding: 28px;
}

.h2-blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.h2-blog-tag {
    background: var(--h2-cream);
    color: var(--h2-forest);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--h2-transition);
}

.h2-blog-tag:hover {
    background: var(--h2-forest);
    color: var(--h2-white);
}

.h2-blog-date {
    font-size: 13px;
    color: var(--h2-text);
}

.h2-blog-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--h2-dark);
    text-decoration: none;
    line-height: 1.4;
    display: block;
    margin-bottom: 16px;
    transition: var(--h2-transition);
}

.h2-blog-title:hover {
    color: var(--h2-forest);
}

.h2-blog-link {
    color: var(--h2-forest);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.h2-blog-link i {
    font-size: 11px;
    transition: transform 0.3s;
}

.h2-blog-link:hover i {
    transform: translateX(4px);
}

/* ---- Buttons ---- */
.h2-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--h2-forest);
    color: var(--h2-white);
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: var(--h2-transition);
    border: none;
    cursor: pointer;
}

.h2-btn-primary:hover {
    background: var(--h2-forest-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(19, 78, 58, 0.2);
    color: var(--h2-white);
}

.h2-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--h2-dark);
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border: 2px solid var(--h2-border);
    transition: var(--h2-transition);
}

.h2-btn-outline:hover {
    border-color: var(--h2-forest);
    color: var(--h2-forest);
    background: rgba(19, 78, 58, 0.04);
}

/* ---- CTA Banner ---- */
.h2-cta-section {
    padding: 100px 0;
    background: var(--h2-white);
}

.h2-cta-card {
    background: linear-gradient(135deg, var(--h2-cream) 0%, #fff 100%);
    border-radius: var(--h2-radius-lg);
    padding: 64px;
    border: 1px solid var(--h2-border);
    text-align: center;
}

.h2-cta-card h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--h2-dark);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.h2-cta-card p {
    font-size: 18px;
    color: var(--h2-text);
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- Responsive ---- */
@media (max-width: 1199px) {
    .h2-hero-title { font-size: 50px; letter-spacing: -2px; }
    .h2-section-title { font-size: 38px; }
}

@media (max-width: 991px) {
    .h2-hero { padding: 140px 0 100px; min-height: auto; }
    .h2-hero-title { font-size: 42px; }
    .h2-search-bar { flex-wrap: wrap; border-radius: 24px; padding: 12px; }
    .h2-search-field { width: 100%; border-bottom: 1px solid var(--h2-border); padding-bottom: 10px; margin-bottom: 10px; }
    .h2-search-divider { display: none; }
    .h2-search-select { width: 100%; padding: 0 12px; }
    .h2-btn-search { width: 100%; justify-content: center; margin-top: 10px; }
    .h2-trust-row { gap: 16px; }
    .h2-step-connector { display: none; }
    .h2-app-card { padding: 40px; }
    .h2-app-title { font-size: 32px; }
    .h2-cta-card { padding: 40px; }
    .h2-cta-card h2 { font-size: 32px; }
}

@media (max-width: 767px) {
    .h2-hero { padding: 120px 0 80px; }
    .h2-hero-title { font-size: 34px; letter-spacing: -1.5px; }
    .h2-hero-desc { font-size: 16px; }
    .h2-search-card { padding: 20px; }
    .h2-trust-row { flex-direction: column; gap: 12px; align-items: flex-start; padding-left: 8px; }
    .h2-section-title { font-size: 30px; }
    .h2-stat-item h3 { font-size: 32px; }
    .h2-app-card { padding: 28px; }
    .h2-app-title { font-size: 26px; }
    .h2-app-img img { max-height: 280px; }
    .h2-cta-card { padding: 28px; }
    .h2-cta-card h2 { font-size: 26px; }
}

