/* ===================================================
   DYORE EXPERIENCES - SEO PAGE STYLESHEET
   (Best Restaurant in Jaipur)
   Scoped component styles for seo-page.html
   (All base, typography, layout, header, map & footer
    styles are globally inherited from style.css)
   =================================================== */

/* ==========================================
   PAGE MAIN WRAPPER & CONTAINER
   ========================================== */
.seo-main-content {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    background-color: var(--color-white);
}

.seo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    box-sizing: border-box;
}

/* ==========================================
   1. SEO HERO BANNER SECTION (100vh)
   ========================================== */
.seo-hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-dark);
}

/* Hero Background Layer */
.seo-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.seo-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.seo-hero-banner:hover .seo-hero-img {
    transform: scale(1.035);
}

/* Atmospheric Dark Contrast Gradient Overlay */
.seo-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(21, 19, 18, 0.45) 0%,
            rgba(21, 19, 18, 0.25) 50%,
            rgba(21, 19, 18, 0.55) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Hero Content Area */
.seo-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    max-width: 1200px;
}

/* Main Hero Heading "BEST RESTAURANT IN JAIPUR" */
.seo-hero-title {
    font-family: var(--font-primary);
    font-size: 52px;
    font-weight: var(--fw-semibold);
    color: var(--color-white);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.15;
    margin: 0;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

/* ==========================================
   2. ALTERNATING FEATURES SECTION (5 ROWS)
   ========================================== */
.seo-features-section {
    padding: 120px 0 90px;
    background-color: var(--color-white);
}

.seo-feature-row {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.seo-feature-row.reverse {
    grid-template-columns: 1fr 460px;
}

.seo-feature-row:last-child {
    margin-bottom: 0;
}

/* Image Column (Portrait Aspect Ratio) */
.seo-feature-img-col {
    width: 100%;
    display: flex;
    justify-content: center;
}

.seo-feature-img-wrap {
    width: 100%;
    max-width: 460px;
    aspect-ratio: 460 / 580;
    height: 560px;
    overflow: hidden;
    background-color: #f2f2f2;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.seo-feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.seo-feature-row:hover .seo-feature-img {
    transform: scale(1.04);
}

/* Content Column */
.seo-feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
}

.seo-feature-title {
    font-family: var(--font-primary);
    font-size: 38px;
    font-weight: var(--fw-regular);
    line-height: 1.25;
    color: var(--color-dark);
    margin: 0 0 22px 0;
    text-transform: none;
    letter-spacing: 0;
}

.seo-feature-subtitle {
    font-family: var(--font-primary);
    font-size: 14.5px;
    font-weight: var(--fw-medium);
    color: #222222;
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.seo-feature-text {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: var(--fw-light);
    line-height: 26px;
    color: #555555;
    margin: 0 0 16px 0;
    letter-spacing: 0;
}

.seo-feature-text:last-child {
    margin-bottom: 0;
}

.seo-feature-text a {
    color: var(--color-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: var(--fw-medium);
    transition: color 0.25s ease;
}

.seo-feature-text a:hover {
    color: #800020;
}

/* Unordered Feature List */
.seo-feature-list {
    list-style: none;
    margin: 6px 0 18px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.seo-feature-list li {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: var(--fw-light);
    line-height: 25px;
    color: #555555;
    position: relative;
    padding-left: 16px;
}

.seo-feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #555555;
    font-size: 16px;
    line-height: 24px;
}

/* ==========================================
   3. CTA EXPERIENCE SECTION (ROYAL ESCAPE ADAPTATION)
   ========================================== */
.seo-cta-section {
    margin-top: 40px;
    margin-bottom: 0;
}

.seo-plan-link {
    font-family: var(--font-primary);
    font-size: 14.5px;
    font-weight: var(--fw-light);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
    line-height: 1.5;
}

.seo-plan-link a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: var(--fw-medium);
    transition: color 0.25s ease;
}

.seo-plan-link a:hover {
    color: #ffd700;
}

.seo-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 440px;
}

.seo-btn-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 28px;
    background-color: #ffffff;
    color: #151312;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: var(--fw-medium);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #ffffff;
    box-sizing: border-box;
    transition: all 0.3s ease;
    text-align: center;
}

.seo-btn-call:hover {
    background-color: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

.seo-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 28px;
    background-color: #8B002B;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: var(--fw-medium);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #8B002B;
    box-sizing: border-box;
    transition: all 0.3s ease;
    text-align: center;
}

.seo-btn-whatsapp:hover {
    background-color: #a50335;
    border-color: #a50335;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 0, 43, 0.4);
}

/* ==========================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
   ========================================== */
@media (max-width: 1200px) {
    .seo-container {
        padding: 0 35px;
    }

    .seo-feature-row {
        grid-template-columns: 380px 1fr;
        gap: 50px;
        margin-bottom: 90px;
    }

    .seo-feature-row.reverse {
        grid-template-columns: 1fr 380px;
    }

    .seo-feature-img-wrap {
        height: 480px;
    }

    .seo-feature-title {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .seo-hero-banner {
        height: 100vh;
        min-height: 500px;
    }

    .seo-hero-title {
        font-size: 42px;
    }

    .seo-features-section {
        padding: 80px 0 50px;
    }

    .seo-feature-row,
    .seo-feature-row.reverse {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-bottom: 75px;
    }

    .seo-feature-img-wrap {
        max-width: 100%;
        height: 440px;
    }

    /* Keep image first on mobile for all rows */
    .seo-feature-row.reverse .seo-feature-img-col {
        order: -1;
    }

    .seo-feature-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .seo-hero-banner {
        height: 100vh;
        min-height: 440px;
    }

    .seo-hero-title {
        font-size: 32px;
        letter-spacing: 0.05em;
    }

    .seo-container {
        padding: 0 20px;
    }

    .seo-features-section {
        padding: 40px 0 45px !important;
    }

    .seo-feature-row,
    .seo-feature-row.reverse {
        gap: 20px;
        margin-bottom: 35px !important;
    }

    .seo-feature-img-wrap {
        height: 380px;
    }

    .seo-feature-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .seo-feature-text {
        font-size: 13.5px;
        line-height: 24px;
    }

    .seo-feature-list li {
        font-size: 13.5px;
        line-height: 23px;
    }
}

@media (max-width: 480px) {
    .seo-hero-banner {
        height: 100vh;
        min-height: 380px;
    }

    .seo-hero-title {
        font-size: 26px;
    }

    .seo-feature-img-wrap {
        height: 300px;
    }

    .seo-feature-title {
        font-size: 21px;
    }
}