/* ==========================================
   PRICING-FAQ PAGE - MASTERPIECE STYLE
   Follows Industry Standard Mobile Rules (0-640px)
   ========================================== */

:root {
    --bg-body: #0A0A0A;
    --bg-card: #111111;
    --text-main: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.6);
    --accent: #D6A043;
    /* Gold */
    --accent-glow: rgba(214, 160, 67, 0.3);
    --border: rgba(255, 255, 255, 0.1);
    --btn-wa-bg: #25D366;

    /* Active Theme */
    --page-bg: #0A0A0A;
    --page-text: #F4EBDD;
    --primary-gold: #D6A043;
    --card-border: rgba(214, 160, 67, 0.2);
}

body.light-theme {
    --bg-body: #F5F5F0;
    --page-bg: #F5F5F0;
    --page-text: #00204a;
    --bg-card: #FFFFFF;
    --primary-gold: #C2B280;
    --card-border: rgba(0, 32, 74, 0.1);
}

/* BASE */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* Base 16px */
body {
    background: var(--page-bg);
    color: var(--page-text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ==========================================
   HEADER (From Index)
   ========================================== */
.site-header-transparent {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    z-index: 1000;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.4s;
}

body.scrolled .site-header-transparent {
    background: var(--bg-body);
    border-bottom: 1px solid var(--border);
}

.nav-left-transparent,
.nav-right-transparent {
    flex: 1;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-right-transparent {
    justify-content: flex-end;
}

.brand-center-transparent {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}

.nav-link-transparent {
    color: var(--text-main);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
    transition: 0.3s;
}

.nav-link-transparent:hover,
.nav-link-transparent.active {
    color: var(--accent);
    opacity: 1;
}

.nav-logo {
    height: 50px;
    width: auto;
}

.logo-dark {
    display: block;
}

.logo-light {
    display: none;
}

body.light-theme .logo-dark {
    display: none;
}

body.light-theme .logo-light {
    display: block;
}

.btn-booking-transparent {
    background: var(--accent);
    color: #000;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    border: none;
    transition: 0.3s;
}

.theme-toggle {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-main);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu */
.mobile-menu-toggle-transparent {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle-transparent span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text-main);
    margin-bottom: 6px;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    height: 100vh;
    background: var(--bg-card);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 40px;
    gap: 30px;
    transform: translateX(100%);
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    border-left: 1px solid var(--border);
}

.mobile-nav-overlay.active {
    transform: translateX(0);
    box-shadow: -100vw 0 0 0 rgba(0, 0, 0, 0.6);
}

.mobile-nav-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-main);
    text-transform: uppercase;
}

/* ==========================================
   2. EXPLORE OUR WORK (Morphing Stack)
   ========================================== */
.morph-section {
    padding: 160px 5vw 80px;
    background: var(--page-bg);
    overflow: hidden;
}

/* Top padding accounts for fixed header */
.morph-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.morph-header {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 4.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    color: var(--page-text);
}

.morph-subtitle {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 14px;
}

.layout-controls {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 12px;
    border: 1px solid var(--border);
    gap: 4px;
}

.layout-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 8px 12px;
    border-radius: 8px;
    transition: 0.3s;
    font-size: 16px;
}

.layout-btn.active {
    background: var(--accent);
    color: #000;
}

.cards-stage {
    width: 100%;
    position: relative;
    transition: height 0.4s ease;
}

.cards-stage.mode-stack {
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.cards-stage.mode-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 340px;
    gap: 24px;
    height: auto;
    align-items: start;
    justify-items: center;
}

.cards-stage.mode-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: auto;
}

.morph-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 360px;
    aspect-ratio: 4/5;
    user-select: none;
    transition: 0.3s;
}

.cards-stage.mode-grid .morph-card {
    aspect-ratio: 4/3;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.cards-stage.mode-grid .morph-card {
    max-width: 100%;
}

.cards-stage.mode-list .morph-card {
    max-width: 100%;
    aspect-ratio: auto;
    height: 120px;
    display: flex;
    flex-direction: row;
}

.cards-stage.mode-stack .morph-card {
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.card-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cards-stage.mode-list .card-bg {
    width: 30%;
    position: relative;
}

.card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.cards-stage.mode-list .card-content {
    justify-content: center;
    width: 70%;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: rgba(214, 160, 67, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--accent);
}

.card-content h3 {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    color: #FFF;
    margin-bottom: 5px;
}

.card-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================
   3. STORY PICKER (New Section)
   ========================================== */
.story-picker-section {
    padding: 80px 5vw;
    background: var(--bg-body);
    border-top: 1px solid var(--border);
}

.picker-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.caption-uppercase {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-heading-h2 {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: var(--text-main);
    margin-bottom: 24px;
    line-height: 1.1;
}

.section-subline {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
    align-items: stretch;
}

.story-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.4s ease;
    cursor: pointer;
}

.story-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.story-image {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.story-card:hover .story-image img {
    transform: scale(1.1);
}

.story-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.story-content {
    padding: 32px;
}

.story-content h3 {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 12px;
    color: var(--text-main);
}

.story-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.story-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.picker-nudge {
    text-align: center;
    padding: 40px;
    background: var(--panel-bg);
    border-radius: 16px;
    border: 1px solid var(--border);
    max-width: 800px;
    margin: 0 auto;
}

.nudge-text {
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 32px;
    color: var(--text-main);
}

.btn-gold-wide {
    background: var(--accent);
    color: #000;
    padding: 16px 40px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    border: none;
    border-radius: 50px;
    transition: 0.3s;
    min-height: 48px;
    /* Touch target */
}

.btn-gold-wide:hover {
    background: #fff;
    transform: scale(1.05);
}

/* ==========================================
   4. FAQ & FOOTER
   ========================================== */
.faq-section {
    padding: 100px 5vw;
    background: var(--bg-body);
    border-top: 1px solid var(--border);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    font-size: 24px;
    color: var(--accent);
    transition: 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    padding-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-top: 16px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.site-footer-detailed {
    background: #000;
    padding: 80px 5vw 20px;
    border-top: 1px solid var(--border);
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.brand-col p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 20px 0;
    max-width: 300px;
}

.footer-col h4 {
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 24px;
    font-size: 14px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--text-muted);
    font-size: 14px;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border);
    padding-top: 24px;
    color: var(--text-muted);
    font-size: 12px;
}


.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-btn-call,
.social-btn-wa {
    color: var(--text-main);
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: 0.3s;
}

.social-btn-call:hover {
    background: var(--accent);
    color: #000;
}

.social-btn-wa:hover {
    background: #25D366;
    color: #fff;
}

.social-links a:nth-child(2):hover {
    background: #E1306C;
    color: #fff;
}

/* ==========================================
   MOBILE UI STANDARDS (0-640px)
   ========================================== */
@media (max-width: 640px) {

    /* 1. Header */
    .site-header-transparent {
        padding: 16px 20px;
    }

    .nav-left-transparent,
    .nav-right-transparent {
        display: none;
    }

    .brand-center-transparent {
        flex: 1;
        justify-content: flex-start;
    }

    .nav-logo {
        height: 40px;
    }

    .mobile-menu-toggle-transparent {
        display: block;
        margin-left: auto;
    }

    /* 2. Typography Scaling (~20-30% Reduction) */
    .section-title {
        font-size: 2rem;
    }

    .section-heading-h2 {
        font-size: 2rem;
    }

    .section-subline {
        font-size: 1rem;
    }

    .caption-uppercase {
        font-size: 11px;
    }

    /* 3. Grid & Layout (1 Column Stack) */
    .cards-stage.mode-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 270px;
        /* Reduced length by 20% */
    }

    /* Fix cropping for mobile grid items */
    .cards-stage.mode-grid .card-content {
        justify-content: center;
        text-align: center;
        padding: 10px !important;
        /* Force tighter padding */
    }

    .cards-stage.mode-grid .card-content h3 {
        font-size: 1.1rem !important;
        /* Smaller font */
        margin-bottom: 2px;
    }

    .cards-stage.mode-grid .card-content p {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .cards-stage.mode-grid .morph-card {
        width: 100%;
        margin: 0;
    }

    .cards-stage.mode-grid .card-content {
        justify-content: center;
        text-align: center;
    }

    /* Reduce horizontal size by 10% on mobile stack */
    .cards-stage.mode-stack .morph-card {
        width: 80%;
        /* Adjusted to be visibly smaller if user feels 90% is not enough, but stick to 90% if 'reduce by 10%' implies 100->90. Let's keep 90% but add better centering context if needed. */
        margin: 0 auto;
        left: 0;
        right: 0;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px 30px;
        text-align: left;
    }

    .brand-col {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 10px;
    }

    .contact-col {
        grid-column: 1 / -1;
        text-align: center;
        margin-top: 20px;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .social-links {
        justify-content: center;
    }

    .brand-col img {
        margin: 0 auto 20px;
        width: 40%;
    }

    /* 4. Spacing (Reduction) */
    .morph-section {
        padding: 100px 20px 60px;
    }

    .story-picker-section {
        padding: 60px 20px;
    }

    .faq-section {
        padding: 60px 20px;
    }

    .picker-intro {
        margin-bottom: 40px;
    }

    .picker-nudge {
        padding: 24px;
    }

    /* 5. Components */
    .story-image {
        height: 220px;
    }

    .story-content {
        padding: 24px;
    }

    .story-content h3 {
        font-size: 1.3rem;
    }

    /* 6. Touch Targets */
    .btn-gold-wide {
        width: 100%;
        padding: 16px;
        font-size: 12px;
    }

    .faq-question {
        padding: 12px 0;
        min-height: 48px;
    }

    /* Min 48px touch */
}

/* ==========================================
   MODAL STYLES (Kept from previous)
   ========================================== */
/* ... (Same modal styles as previous file, ensuring classes match) ... */
/* Essential Modal CSS included for completeness */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.modal-overlay.active {
    display: flex;
}

.aesthetic-modal {
    background: var(--bg-card);
    width: 90%;
    max-width: 480px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.ui-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-header-section {
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header-section h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent);
    font-size: 24px;
    margin-bottom: 10px;
}

.step-indicator-minimal {
    display: flex;
    gap: 8px;
    align-items: center;
}

.step-dot {
    width: 8px;
    height: 8px;
    background: #333;
    border-radius: 50%;
}

.step-dot.active {
    background: var(--accent);
}

.step-line {
    flex: 1;
    height: 1px;
    background: #333;
}

.modal-body-minimal {
    padding: 30px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.form-group-minimal {
    margin-bottom: 20px;
    position: relative;
}

.form-group-minimal input,
.form-group-minimal select,
.form-group-minimal textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 0;
    font-size: 16px;
    border-radius: 0;
}

.form-group-minimal label {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 14px;
    color: #666;
    pointer-events: none;
    transition: 0.3s;
}

.form-group-minimal input:focus~label,
.form-group-minimal input:not(:placeholder-shown)~label {
    top: -12px;
    font-size: 11px;
    color: var(--accent);
}

.nav-btn-minimal {
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    border: none;
    font-size: 13px;
}

.nav-btn-minimal.next {
    background: #fff;
    color: #000;
}

.nav-btn-minimal.submit {
    background: var(--accent);
    color: #fff;
}

.success-card-premium {
    position: absolute;
    inset: 0;
    background: #111;
    z-index: 20;
    display: flex;
    flex-direction: column;
}

.success-header-gold {
    background: linear-gradient(135deg, #d4af6a, #aa833e);
    padding: 40px;
    text-align: center;
    color: #2c2416;
}

.success-body-dark {
    flex: 1;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-circle-check {
    width: 60px;
    height: 60px;
    border: 2px solid #4bb71b;
    color: #4bb71b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.success-buttons-row {
    display: flex;
    gap: 15px;
    width: 100%;
    margin-top: 20px;
}

.btn-success-white {
    flex: 1;
    background: #fff;
    color: #000;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-success-green {
    flex: 1;
    background: #25D366;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ==========================================
   BLOG / STORY SECTION
   ========================================== */
.blog-story-section {
    padding: 120px 5vw;
    background: #000;
    max-width: 1200px;
    margin: 0 auto;
    display: block;
    /* Use block for wrapping */
}

/* Float-based layout for wrapping */
.blog-story-image {
    float: right;
    width: 50%;
    margin-left: 40px;
    margin-bottom: 20px;
    clear: right;
}

.blog-story-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    filter: brightness(0.9) contrast(1.1);
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.blog-story-content {
    display: block;
    /* Flow content */
    color: var(--text-muted);
}

/* Clearfix for the container */
.blog-story-section::after {
    content: "";
    display: table;
    clear: both;
}


/* Content Styling */
.blog-story-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 32px;
    line-height: 1.15;
    font-weight: 400;
}

.blog-story-content .intro-text {
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 32px;
    font-weight: 400;
    line-height: 1.7;
    border-left: 2px solid var(--accent);
    padding-left: 20px;
}

.blog-story-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.8;
}

.closing-line {
    font-size: 0.8rem;
    color: #fff;
    letter-spacing: 4px;
    margin-top: 50px;
    text-transform: uppercase;
    padding-top: 30px;
    display: block;
    text-align: center;
    position: relative;
    opacity: 0.8;
    clear: both;
    /* Ensure closing line is below everything if needed */
}

.closing-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .blog-story-section {
        padding: 60px 20px;
    }

    .blog-story-image {
        width: 50%;
        float: right;
        margin-left: 20px;
    }

    .blog-story-content h2 {
        /* font-size: 1.8rem; Removed to keep desktop size (3rem) */
        clear: none;
    }
}

/* Animation Classes from Index */
.anim-header {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.anim-header.in-view {
    opacity: 1;
    transform: translateY(0);
}

.accent-text {
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
}
/* ==========================================
   PORTED FORM STYLES FROM INDEX (Requested)
   ========================================== */
.lead-form-boho {
    width: 100%;
    /* No border needed inside modal, or keep it minimal */
    padding: 10px 0; 
}

.form-group-boho {
    margin-bottom: 20px;
}

.form-group-boho label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group-boho input, 
.form-group-boho select, 
.form-group-boho textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-main);
    border-radius: 6px;
    font-family: inherit;
}

.form-group-boho input:focus, 
.form-group-boho select:focus, 
.form-group-boho textarea:focus {
    border-color: var(--accent);
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

.form-submit-btn-boho {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: #000; /* Contrast text */
    border: none;
    border-radius: 6px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 1px;
    margin-top: 10px;
}

.form-submit-btn-boho:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(214, 160, 67, 0.3);
}

/* SUCCESS MODAL STYLES (From Index) */
.modal-overlay {
    /* Ensure flex display alignment */
    display: none; 
    justify-content: center; 
    align-items: center; 
}

/* Override aesthetic-modal max-width for simpler form if needed, or keep standard */
.aesthetic-modal {
    max-width: 500px; /* Slightly wider for form */
}

.modal-header {
    background: linear-gradient(135deg, var(--accent), #b08634);
    padding: 30px 20px;
    color: #000;
    text-align: center;
}

.modal-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin: 0;
    font-weight: 700;
}

.modal-icon-glow {
    font-size: 3rem;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
    display: block;
    text-align: center;
}

.modal-body {
    padding: 30px 20px;
    color: var(--text-muted);
    text-align: center;
}

.modal-sub {
    font-size: 0.9rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
    font-weight: bold;
}

.modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 0 20px 30px;
}

.modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    font-size: 0.9rem;
}

.btn-call {
    background: var(--text-main);
    color: var(--bg-body);
}

.btn-wa-modal {
    background: #25D366;
    color: #fff;
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding-bottom: 20px;
    cursor: pointer;
    text-decoration: underline;
    font-size: 0.8rem;
    width: 100%;
    display: block;
    text-align: center;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

/* ==========================================
   2-STEP FORM & CAMERA SUCCESS MODAL
   ========================================== */

/* 2-Step Form Layout */
#bookingForm {
    /* overflow: hidden; */ /* Handled by container */
    position: relative;
    min-height: 380px; /* Space for steps */
}

.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
    width: 100%;
}

.form-step.active {
    display: block;
}

.step-indicator-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.s-dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: 0.3s;
}

.s-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

.form-actions-row {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-form-nav {
    flex: 1;
    padding: 14px;
    border: 1px solid var(--accent);
    background: transparent;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-form-nav:hover {
    background: rgba(214, 160, 67, 0.1);
}

.btn-form-nav.primary {
    background: var(--accent);
    color: #000;
}

.btn-form-nav.primary:hover {
    background: #fff;
}

/* CAMERA SUCCESS MODAL with OVERLAY */
.success-camera-modal {
    position: relative;
    width: 90%;
    max-width: 450px;
    min-height: 400px; /* Use min-height to ensure content fits */
    border-radius: 16px;
    overflow: hidden;
    background-color: #000; /* Fallback */
    background-image: url('assets/pricing/camera-success.png');
    background-size: cover;
    background-position: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid var(--accent);
}

.success-overlay-dark {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75); /* Dark overlay */
    z-index: 1;
    backdrop-filter: blur(2px);
}

.success-content-wrapper {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.success-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.success-msg {
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.5;
}

.close-btn-top {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.close-btn-top:hover {
    background: var(--accent);
    color: #000;
}

/* "View Pictures" Button on Cards */
.card-btn-view {
    display: inline-block;
    margin-top: 12px;
    padding: 6px 12px;
    font-size: 0.75rem;
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
}

.card-btn-view:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 10px rgba(214, 160, 67, 0.4);
    transform: translateY(-2px);
}

/* ==========================================
   FIXES FOR VIEW PICTURES BUTTONS
   ========================================== */

/* 1. Reset .card-content in List Mode to allow variable height */
.cards-stage.mode-list .morph-card {
    height: auto; /* Allow growth */
    min-height: 140px; /* Bit taller for button */
}

/* 2. Adjust Grid Mode Overlay & Spacing to prevent overlap */
.cards-stage.mode-grid .card-content {
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.4)); /* Stronger contrast */
    justify-content: flex-end; /* Push to bottom naturally */
    padding-bottom: 20px;
}

/* 3. Mobile Grid Adjustments */
@media (max-width: 768px) {
    .cards-stage.mode-grid {
        grid-template-columns: 1fr; /* Full width cards on mobile easier to read */
        grid-auto-rows: auto; /* Let content dictate height */
        gap: 20px;
    }

    .cards-stage.mode-grid .morph-card {
        aspect-ratio: auto;
        min-height: 250px;
    }

    .cards-stage.mode-grid .card-content {
        padding: 20px !important; /* More breathing room */
        justify-content: flex-end;
    }

    /* Ensure button is visible & tappable */
    .card-btn-view {
        margin-top: 10px;
        font-size: 0.7rem;
        padding: 8px 16px;
        background: var(--accent); /* Solid on mobile for visibility */
        color: #000;
        display: inline-block; /* Ensure it respects spacing */
        max-width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* List View Tweaks on Mobile */
    .cards-stage.mode-list .morph-card {
        flex-direction: column; /* Stack image and text on mobile list */
        height: auto;
    }

    .cards-stage.mode-list .card-bg {
        width: 100%;
        height: 150px; /* Fixed height for image */
        position: relative;
    }

    .cards-stage.mode-list .card-content {
        width: 100%;
        padding: 20px;
        text-align: center;
    }
}

/* Desktop orientation for List View button */
.cards-stage.mode-list .card-btn-view {
    margin-top: 8px;
    align-self: flex-start; /* Left align in list view (desktop) */
}

@media (max-width: 768px) {
     .cards-stage.mode-list .card-btn-view {
        align-self: center; /* Center align in mobile stacked list */
    }
}

/* ==========================================
   FINAL MOBILE LAYOUT ADJUSTMENTS (GRID 2-COL & LIST COMPACT)
   ========================================== */

/* MOBILE GRID: 2 Columns, Optimized Height */
@media (max-width: 768px) {
    .cards-stage.mode-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important; /* Force 2 columns */
        grid-auto-rows: auto !important;
        gap: 12px !important; /* Standard gap */
    }

    .cards-stage.mode-grid .morph-card {
        min-height: 280px !important; /* Use vertical space to fit content */
        aspect-ratio: auto !important;
    }

    .cards-stage.mode-grid .card-content {
        padding: 12px !important;
        justify-content: flex-end !important;
        background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0) 80%) !important;
    }

    /* Scale down text for 2-column fit */
    .cards-stage.mode-grid .card-content h3 {
        font-size: 0.95rem !important;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .cards-stage.mode-grid .card-content p {
        display: none !important; /* Hide description in dense grid to save space, rely on title + button */
    }

    .cards-stage.mode-grid .card-btn-view {
        margin-top: 5px !important;
        font-size: 0.65rem !important;
        padding: 8px 0 !important;
        width: 100%;
        text-align: center;
        background: var(--accent);
        color: #000;
        border: none;
    }
    
    .cards-stage.mode-grid .card-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
        margin-bottom: 8px;
    }
}

/* LIST VIEW: Reduce Vertical Height by 20% */
/* Desktop List */
.cards-stage.mode-list .morph-card {
    min-height: 110px !important; /* Reduced from ~140px */
}

/* Mobile List Stack */
@media (max-width: 768px) {
    .cards-stage.mode-list .card-bg {
        height: 120px !important; /* Reduced from 150px */
    }
    
    .cards-stage.mode-list .card-content {
        padding: 15px !important;
    }
}

/* ==========================================
   ROBUST CENTERING FOR MOBILE GRID
   ========================================== */
@media (max-width: 768px) {
    .cards-stage.mode-grid .card-content {
        /* Force Centering of Block Text */
        text-align: center !important;
        /* Force Centering of Flex Items (Icon, Button) */
        align-items: center !important; 
        /* Ensure distinct stacking */
        display: flex !important;
        flex-direction: column !important;
        /* Push content to bottom for readability over image, or center? */
        /* User's screenshot shows content broadly centered or lower half. */
        /* Let's stick to flex-end to ensure it doesn't cover faces if images are portraits */
        justify-content: flex-end !important;
        padding-bottom: 20px !important;
    }

    /* Ensure Title Wraps Nicely */
    .cards-stage.mode-grid .card-content h3 {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    /* Ensure Icon is Centered */
    .cards-stage.mode-grid .card-icon {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 8px;
    }

    /* Ensure Button is Centered & Text Centered */
    .cards-stage.mode-grid .card-btn-view {
        width: 100%;
        text-align: center;
        display: block; /* Ensure it fills width */
    }
}
