/* ============================================================
   DREEMGIRL.IN — Main Stylesheet
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
    /* Core */
    --color-base:        #FFFFFF;
    --color-contrast:    #111111;
    --color-bg:          #f2fad6;

    /* Accents */
    --color-accent-1:    #FFEE58;
    --color-accent-2:    #F6CFF4;
    --color-accent-3:    #503AA8;
    --color-accent-4:    #686868;
    --color-accent-5:    #FBFAF3;
    --color-hot-pink:    #c600c3;

    /* Action buttons */
    --color-call-btn:    #1ea8e6;
    --color-wa-btn:      #1ca452;
    --color-cta-banner:  #b41226;

    /* Card palette */
    --card-dark-1:  #453a37;
    --card-dark-2:  #331b07;
    --card-dark-3:  #150e0e;
    --card-dark-4:  #1b2b11;
    --card-dark-5:  #35241a;
    --card-mid-1:   #6e6d6f;
    --card-mid-2:   #8b5235;
    --card-light-1: #bfbbb5;
    --card-light-2: #bdb4b5;
    --card-light-3: #b4ac9a;
    --card-light-4: #ddc9ae;
    --card-light-5: #e5c1a0;
    --card-light-6: #f5ede5;

    /* Section heading gradients */
    --grad-h2-1: linear-gradient(135deg, rgb(255,252,103) 0%, rgb(196,242,255) 100%);
    --grad-h2-2: linear-gradient(135deg, rgb(254,255,254) 0%, rgb(199,143,255) 100%);
    --grad-h2-3: linear-gradient(135deg, rgb(254,205,165) 0%, rgb(254,45,45) 50%, rgb(107,0,62) 100%);

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 20px rgba(198,0,195,0.3);
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: "Fira Sans", system-ui, -apple-system, sans-serif;
    font-weight: 400; /* Increased font weight for readability */
    font-size: 1.05rem; /* Increased base font size */
    line-height: 1.7;
    color: var(--color-contrast);
    background: var(--color-bg);
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: "Literata", serif;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
h3 { font-size: clamp(1rem, 2.5vw, 1.4rem); }

a {
    color: var(--color-hot-pink);
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}
a:hover { opacity: 0.85; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ── Container ─────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

/* ── Header ────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: var(--shadow-lg);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-xs) var(--space-sm);
    min-height: 60px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-base);
    font-weight: 700;
    font-size: 1.2rem;
}
.logo-link:hover { opacity: 1; color: var(--color-accent-1); }

.logo-img {
    border-radius: 0;
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: "Literata", serif;
    background: var(--grad-h2-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.nav-link {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 400;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
    color: var(--color-base);
    background: rgba(255,255,255,0.1);
}

.nav-btn {
    background: var(--color-hot-pink);
    color: var(--color-base) !important;
    padding: 8px 18px;
    border-radius: var(--radius-xl);
    font-weight: 700;
}
.nav-btn:hover {
    background: #a800a5;
    opacity: 1;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--color-base);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .main-nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(17, 17, 17, 0.98);
        flex-direction: column;
        padding: var(--space-sm);
        gap: var(--space-xs);
        border-top: 1px solid rgba(255,255,255,0.06);
    }
    .main-nav.open { display: flex; }
    .nav-link { width: 100%; text-align: center; padding: 12px; }
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero-section {
    position: relative;
    margin-bottom: var(--space-xl);
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-height: 420px;
    margin-bottom: var(--space-md);
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.hero-title {
    text-align: center;
    margin: var(--space-md) 0;
    color: var(--color-contrast);
}

.hero-subtitle {
    text-align: center;
    color: var(--color-accent-4);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    margin-bottom: var(--space-lg);
}

/* ── Section Headings ──────────────────────────────────────── */
.section {
    margin-bottom: var(--space-2xl);
}

.section-heading {
    display: inline-block;
    padding: 10px 24px;
    border-radius: var(--radius-sm); /* Less rounded */
    margin-bottom: var(--space-lg);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--color-contrast);
}

.section-heading.grad-1 { background: var(--grad-h2-1); }
.section-heading.grad-2 { background: var(--grad-h2-2); }
.section-heading.grad-3 { background: var(--grad-h2-3); color: #fff; }

/* ── Girl Cards Grid ───────────────────────────────────────── */
.girls-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 900px) {
    .girls-grid {
        grid-template-columns: repeat(2, 1fr); /* Two cards side by side on wide screens */
    }
}

.girl-card {
    display: flex;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 200px;
    position: relative;
}
.girl-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.girl-card-image {
    width: 40%;
    min-height: 200px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.girl-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.girl-card:hover .girl-card-image img {
    transform: scale(1.05);
}

.girl-card-content {
    width: 60%;
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-xs);
}

.girl-card-name {
    font-family: "Literata", serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 4px;
}

.girl-card-meta {
    font-size: 0.85rem;
    opacity: 0.8;
}

.girl-card-desc {
    font-size: 0.9rem;
    opacity: 0.9;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.girl-card-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: var(--space-xs);
    flex-wrap: nowrap;
}

.girl-card-cta .btn {
    white-space: nowrap;
    padding: 8px 12px;
    font-size: 0.85rem;
}

.girl-card-cta img {
    height: 40px;
    width: auto;
}

/* ── Hotel Cards ───────────────────────────────────────────── */
.hotels-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 900px) {
    .hotels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hotel-card {
    display: flex;
    flex-direction: row-reverse;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--color-base);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.hotel-card-image {
    width: 40%;
    min-height: 200px;
    flex-shrink: 0;
    overflow: hidden;
}

.hotel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.hotel-card:hover .hotel-card-image img {
    transform: scale(1.05);
}

.hotel-card-content {
    width: 60%;
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-xs);
}

.hotel-card-name {
    font-family: "Literata", serif;
    font-size: 1.1rem;
    color: var(--color-contrast);
}

.hotel-stars {
    color: #FFD700;
    font-size: 0.9rem;
}

.hotel-card-desc {
    font-size: 0.9rem;
    color: var(--color-accent-4);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hotel-booking-link {
    display: inline-block;
    background: var(--color-accent-3);
    color: var(--color-base);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: var(--space-xs);
    transition: background 0.3s ease;
    width: fit-content;
}
.hotel-booking-link:hover { background: #3a2a8a; color: #fff; opacity: 1; }

/* ── How to Book ───────────────────────────────────────────── */
.how-to-book {
    background: var(--color-cta-banner);
    color: var(--color-base);
    padding: var(--space-xl) var(--space-md);
    border-radius: var(--radius-lg);
    text-align: center;
}

.how-to-book h2 {
    color: var(--color-base);
    margin-bottom: var(--space-lg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    transition: all 0.3s ease;
}
.step:hover .step-num {
    background: var(--color-base);
    color: var(--color-cta-banner);
    transform: scale(1.1);
}

.step p {
    font-size: 0.95rem;
    opacity: 0.95;
}

@media (max-width: 600px) {
    .steps-grid { grid-template-columns: 1fr; }
}

/* ── Culture & Background ──────────────────────────────────── */
.culture-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.culture-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.culture-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.culture-text {
    line-height: 1.8;
    font-size: 0.95rem;
    color: var(--color-accent-4);
}

@media (max-width: 768px) {
    .culture-section { grid-template-columns: 1fr; }
}

/* ── Sublocations ──────────────────────────────────────────── */
.sublocations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: var(--space-sm);
}

@media (min-width: 1024px) {
    .sublocations-grid {
        grid-template-columns: repeat(5, 1fr); /* 5 in a row in wide screens */
    }
}

.sublocation-card {
    background: var(--color-base);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.06);
    color: var(--color-contrast);
    font-weight: 400;
}
.sublocation-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-hot-pink);
    color: var(--color-hot-pink);
}

/* ── Price Table ───────────────────────────────────────────── */
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-md);
}

.price-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}
.price-card:hover { transform: translateY(-4px); }

.price-card-header {
    padding: var(--space-md);
    font-family: "Literata", serif;
    font-size: 1.1rem;
}

.price-card-body {
    padding: var(--space-md);
    background: var(--color-base);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}
.price-table th,
.price-table td {
    padding: 10px 12px;
    text-align: left;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.price-table th {
    font-weight: 700;
    color: var(--color-accent-3);
}
.price-table td {
    color: var(--color-contrast);
}

.price-amount {
    font-weight: 700;
    color: var(--color-cta-banner);
}

/* ── Reviews ───────────────────────────────────────────────── */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-md);
}

.review-card {
    background: var(--color-base);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.review-card:hover { transform: translateY(-3px); }

.review-stars {
    color: #FFD700;
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.review-body {
    font-size: 0.9rem;
    color: var(--color-accent-4);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
    font-style: italic;
}

.review-author {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-contrast);
}

.review-avatar {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    margin-right: 8px;
    vertical-align: middle;
}

/* ── FAQ Accordion ─────────────────────────────────────────── */
.faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xs);
    max-width: 1200px; /* Make it wider to support 2 columns */
    margin: 0 auto;
}

@media (min-width: 900px) {
    .faq-list {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
}

.faq-item {
    background: var(--color-base);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-xs);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: var(--space-md);
    background: none;
    border: none;
    text-align: left;
    font-family: "Fira Sans", sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--color-contrast);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}
.faq-question:hover { background: rgba(0,0,0,0.02); }

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-hot-pink);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: var(--space-sm);
}
.faq-item.open .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 var(--space-md);
}
.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 var(--space-md) var(--space-md);
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--color-accent-4);
    line-height: 1.7;
}

/* ── Related Cities ────────────────────────────────────────── */
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-sm);
}

.related-card {
    background: var(--color-base);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}
.related-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-hot-pink);
}

.related-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.related-card-body {
    padding: var(--space-sm);
}

.related-card-body h4 {
    font-size: 0.95rem;
    color: var(--color-contrast);
    margin-bottom: 4px;
}

.related-card-body p {
    font-size: 0.8rem;
    color: var(--color-accent-4);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Sticky Buttons ────────────────────────────────────────── */
.sticky-buttons {
    position: sticky; /* Make it stick to bottom not fixed, relative to body */
    bottom: 0px;
    left: 0;
    right: 0;
    z-index: 9999;
    background: transparent; /* Transparent background */
    padding: 10px 16px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.sticky-btn {
    flex: 1;
    max-width: 250px;
    text-align: center;
    padding: 14px 20px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-base) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: transparent;
}
.sticky-btn i { font-size: 1.3rem; }

.sticky-call { background: var(--color-call-btn); border-color: var(--color-call-btn); }
.sticky-call:hover { color: var(--color-call-btn) !important; }

.sticky-wa   { background: var(--color-wa-btn); border-color: var(--color-wa-btn); }
.sticky-wa:hover { color: var(--color-wa-btn) !important; }

/* ── Rent City Popup ───────────────────────────────────────── */
.rent-popup-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.rent-popup {
    background: var(--color-base);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    max-width: 440px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.4s ease;
}

.rent-popup h3 {
    margin-bottom: var(--space-md);
    color: var(--color-contrast);
}

.rent-option {
    display: block;
    width: 100%;
    padding: 14px;
    margin-bottom: var(--space-xs);
    border-radius: var(--radius-md);
    border: 2px solid rgba(0,0,0,0.1);
    background: var(--color-accent-5);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-contrast);
    font-family: "Fira Sans", sans-serif;
}
.rent-option:hover {
    border-color: var(--color-hot-pink);
    background: rgba(198,0,195,0.05);
}

.rent-popup .close-popup {
    margin-top: var(--space-sm);
    background: none;
    border: none;
    color: var(--color-accent-4);
    cursor: pointer;
    font-size: 0.9rem;
    font-family: "Fira Sans", sans-serif;
}

.rent-message {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: var(--color-accent-5);
    color: var(--color-accent-4);
    font-size: 0.95rem;
    margin-top: var(--space-sm);
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
    background: #111;
    color: rgba(255,255,255,0.7);
    padding: var(--space-2xl) 0 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

@media (max-width: 768px) {
    .site-footer { text-align: center; }
    .footer-grid { 
        display: flex; 
        flex-direction: column; 
        gap: var(--space-lg); 
    }
    .footer-grid-mobile-row {
        display: flex;
        justify-content: space-around;
        text-align: left;
    }
}

.footer-heading {
    color: var(--color-base);
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-dmca { margin-top: var(--space-sm); }

.footer-links {
    list-style: none;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--color-accent-1); opacity: 1; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--space-md);
    text-align: center;
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.5;
    margin-bottom: var(--space-xs);
}

.copyright {
    font-size: 0.85rem;
}

/* ── Forms ─────────────────────────────────────────────────── */
.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-weight: 400;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--color-contrast);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-md);
    font-family: "Fira Sans", sans-serif;
    font-size: 0.95rem;
    background: var(--color-base);
    color: var(--color-contrast);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-hot-pink);
    box-shadow: 0 0 0 3px rgba(198,0,195,0.1);
}

.form-textarea { min-height: 120px; resize: vertical; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius-xl);
    font-family: "Fira Sans", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--color-hot-pink);
    color: var(--color-base);
}
.btn-primary:hover { background: #a800a5; color: #fff; opacity: 1; }

.btn-secondary {
    background: var(--color-accent-3);
    color: var(--color-base);
}
.btn-secondary:hover { background: #3a2a8a; color: #fff; opacity: 1; }

.btn-success {
    background: var(--color-wa-btn);
    color: var(--color-base);
}
.btn-success:hover { background: #168f44; color: #fff; opacity: 1; }

.btn-danger {
    background: var(--color-cta-banner);
    color: var(--color-base);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-hot-pink);
    color: var(--color-hot-pink);
}
.btn-outline:hover { background: var(--color-hot-pink); color: var(--color-base); }

.btn-outline-success {
    background: transparent;
    border: 2px solid var(--color-wa-btn);
    color: var(--color-wa-btn);
}
.btn-outline-success:hover { background: var(--color-wa-btn); color: var(--color-base); opacity: 1; }

/* ── Alerts ────────────────────────────────────────────────── */
.alert {
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    font-size: 0.9rem;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-info    { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }
.alert-warning { background: #fff3cd; color: #856404; border: 1px solid #ffeaa8; }

/* ── Auth Pages ────────────────────────────────────────────── */
.auth-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
}

.auth-box {
    background: var(--color-base);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    max-width: 440px;
    width: 100%;
    box-shadow: var(--shadow-lg);
}

.auth-box h1 {
    text-align: center;
    margin-bottom: var(--space-lg);
    font-size: 1.6rem;
}

.auth-footer {
    text-align: center;
    margin-top: var(--space-md);
    font-size: 0.9rem;
    color: var(--color-accent-4);
}

/* ── Profile Page ──────────────────────────────────────────── */
.profile-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.profile-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xs);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.profile-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.profile-gallery img:hover { transform: scale(1.05); }
.profile-gallery img:first-child {
    grid-column: 1 / -1;
    height: 350px;
}

.profile-info {
    padding: var(--space-md) 0;
}

.profile-name {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: var(--space-xs);
}

.profile-meta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-md);
    color: var(--color-accent-4);
    font-size: 0.9rem;
}

.profile-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-accent-4);
    margin-bottom: var(--space-md);
}

.profile-services {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.service-tag {
    background: var(--color-accent-5);
    padding: 6px 14px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    color: var(--color-accent-3);
    border: 1px solid rgba(80,58,168,0.15);
}

@media (max-width: 768px) {
    .profile-hero { grid-template-columns: 1fr; }
    .profile-gallery img:first-child { height: 250px; }
}
@media (min-width: 769px) {
    .footer-grid-mobile-row {
        display: contents;
    }
}

/* ── Dashboard ─────────────────────────────────────────────── */
.dashboard-header {
    background: var(--color-base);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.stat-card {
    background: var(--color-base);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border-left: 4px solid var(--color-hot-pink);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-contrast);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-accent-4);
    margin-top: 4px;
}

/* ── Data Tables ───────────────────────────────────────────── */
.data-table {
    width: 100%;
    background: var(--color-base);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border-collapse: collapse;
}

.data-table th {
    background: #111;
    color: var(--color-base);
    padding: 12px 16px;
    text-align: left;
    font-weight: 400;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.data-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.9rem;
}

.data-table tr:hover td {
    background: rgba(0,0,0,0.02);
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}
.badge-pending  { background: #fff3cd; color: #856404; }
.badge-active   { background: #d4edda; color: #155724; }
.badge-confirmed { background: #d4edda; color: #155724; }
.badge-expired  { background: #f8d7da; color: #721c24; }
.badge-suspended { background: #f8d7da; color: #721c24; }
.badge-cancelled { background: #e2e3e5; color: #383d41; }

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.05); }
}

.animate-in {
    animation: slideUp 0.5s ease forwards;
    opacity: 0;
}

/* Add bottom padding to not hide content behind sticky buttons if they overlap */
body { padding-bottom: 20px; }
