/* --- THEME VARIABLES --- */
:root {
    --gold: #a77d40;
    --brown-dark: #5D4037;
    --black: #1a1a1a;
    --white: #ffffff;
    --bg-light: #f9f7f4;
    --border: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Sen', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--black);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

img {
    width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* --- HEADER & NAV (DARK THEME) --- */
header {
    background: var(--brown-dark);
    /* Header Dark Brown */
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease-in-out;
    position: relative;
}

/* Sticky Logic */
header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.4s ease;
    background: var(--brown-dark);
    /* Keeps background dark on scroll */
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    max-width: 1200px;
    margin: auto;
}

.brand-logo img {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1);
    /* Forces logo to be White */
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.desktop-nav ul {
    display: flex;
    gap: 25px;
}

/* Menu Links White on Dark Header */
.desktop-nav a {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    /* White Text */
    letter-spacing: 0.5px;
}

.desktop-nav a:hover {
    color: var(--gold);
}

/* Enquire Button - Gold on Dark Header */
.header-btn {
    background: var(--gold);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.header-btn:hover {
    background: #fff;
    color: var(--brown-dark);
}

/* Mobile Menu Toggle (White) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #fff;
    /* White Icon for Dark Header */
    cursor: pointer;
}

/* Mobile Drawer (Keep White) */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    padding: 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav.active {
    right: 0;
}

.mobile-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.mobile-head img {
    height: 40px;
}

.close-menu {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--brown-dark);
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
}

.mobile-nav a {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
}


/* --- HERO BANNER & INFO CARD --- */
.hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* Height constraint removed to let image define height, but relative is key */
}

/* Overlay Card Styling */
.banner-card {
    position: absolute;
    top: 50%;
    left: 10%;
    /* Left side placement */
    transform: translateY(-50%);
    width: 360px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 500;
    overflow: hidden;
    border: 1px solid #fff;
}

/* Card Header */
.card-header {
    background: var(--gold);
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card Body */
.card-body {
    padding: 20px;
    text-align: center;
}

.card-body h3 {
    color: var(--brown-dark);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 2px;
    font-family: 'Times New Roman', serif;
}

.developer {
    color: #666;
    font-size: 13px;
    margin-bottom: 5px;
}

.location {
    color: var(--black);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.location i {
    color: var(--gold);
    margin-right: 5px;
}

/* RERA Text */
.rera-details-text {
    font-size: 11px;
    color: #777;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.rera-details-text b {
    color: #333;
}

.cp-rera {
    margin-top: 3px;
    color: #555;
}

/* Stats Grid */
.card-stats-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.stat-item {
    text-align: center;
    width: 33%;
    border-right: 1px solid #eee;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item strong {
    display: block;
    font-size: 14px;
    color: var(--brown-dark);
}

.stat-item span {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
}

/* Highlights Box */
.card-highlights-box {
    border: 2px dashed var(--brown-dark);
    background: #fdfdfd;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.card-highlights-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    padding-left: 10px;
}

.card-highlights-box li {
    font-size: 13px;
    color: #444;
    margin-bottom: 4px;
    position: relative;
    padding-left: 15px;
}

.card-highlights-box li::before {
    content: "✔";
    color: var(--gold);
    position: absolute;
    left: 0;
    font-size: 10px;
    top: 2px;
}

/* Price Section */
.card-price-box span {
    font-size: 12px;
    color: #666;
    display: block;
}

.card-price-box h4 {
    font-size: 26px;
    color: var(--brown-dark);
    font-weight: 800;
    margin: 5px 0 15px 0;
}

.card-price-box small {
    font-size: 14px;
    font-weight: 500;
    color: #555;
}

/* CTA Button */
.btn-card-action {
    background: var(--brown-dark);
    color: #fff;
    border: none;
    width: 100%;
    padding: 12px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-card-action:hover {
    background: var(--gold);
}


/* --- BUTTONS --- */
.btn-primary,
.btn-submit {
    background-color: var(--brown-dark) !important;
    color: var(--white);
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    display: block;
    text-align: center;
    transition: 0.3s;
}

.btn-primary:hover,
.btn-submit:hover {
    background-color: var(--gold) !important;
}

.btn-sm {
    background: transparent;
    border: 1px solid var(--brown-dark);
    color: var(--brown-dark);
    padding: 8px 15px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 4px;
}

.btn-sm:hover {
    background: var(--brown-dark);
    color: white;
}

/* --- LAYOUT & SECTIONS --- */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

.main-layout {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.content-area {
    width: 66%;
}

.sidebar-form {
    width: 34%;
}

section {
    background: #fff;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 6px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.01);
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.main-heading {
    font-size: 26px;
    color: var(--brown-dark);
    font-weight: 800;
    margin-bottom: 5px;
}

.sub-heading {
    color: var(--gold);
    font-size: 15px;
    font-weight: 600;
}

.text-center {
    text-align: center;
}

/* --- KEY SPECIFICATIONS SWIPER --- */
.keySpecsSwiper {
    padding-bottom: 30px;
    width: 100%;
}

.key-spec-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    transition: 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.key-spec-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.spec-icon {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 12px;
}

.key-spec-card h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 8px;
}

.key-spec-card p {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* --- SWIPERS --- */
.swiper {
    width: 100%;
    padding-bottom: 40px;
    padding-top: 10px;
}

.swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--gold);
    width: 30px;
    height: 30px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}

.swiper-pagination-bullet-active {
    background: var(--gold);
}

/* --- UNIT TABLE --- */
.table-wrapper {
    overflow-x: auto;
    margin-top: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.unit-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    min-width: 600px;
}

.unit-table th {
    background-color: var(--brown-dark);
    color: var(--white);
    padding: 5px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    border: 1px solid var(--brown-dark);
    letter-spacing: 0.5px;
}

.unit-table td {
    padding: 5px;
    border: 1px solid #eee;
    text-align: center;
    color: var(--black);
    font-size: 14px;
    vertical-align: middle;
}

.unit-table tr:nth-child(even) {
    background-color: #fcfcfc;
}

.unit-table tr:hover {
    background-color: #f9f7f4;
}

.unit-table td b {
    color: var(--brown-dark);
    font-weight: 700;
}

.price-clickable {
    color: var(--brown-dark);
    font-weight: 800;
    font-size: 16px;
    text-decoration: underline;
    text-underline-offset: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.price-clickable:hover {
    color: var(--gold);
}
/* --- MOBILE SPECIFIC TABLE FIXES --- */
@media (max-width: 768px) {
    
    /* 1. Wrapper ka extra space khatam */
    .table-wrapper {
        margin-top: 10px;      /* Upar ka gap kam kiya */
        border-radius: 4px;    /* Radius chhota kiya */
        overflow-x: hidden;    /* Scroll band (kyunki ab fit ho jayega) */
        width: 100%;
    }

    /* 2. Table ki minimum width hatayi taaki phone me fit ho */
    .unit-table {
        min-width: auto;       /* IMPORTANT: 600px wala restriction hataya */
        width: 100%;           /* Full screen width */
        table-layout: fixed;   /* Columns ko zabardasti fit karega */
    }

    /* 3. Cells ke andar ka space (padding) aur font size */
    .unit-table th, 
    .unit-table td {
        padding: 4px 1px;      /* Padding: Top-Bottom 4px, Left-Right 1px (Bahut kam) */
        font-size: 10px;       /* Aapki requirement ke hisaab se 10px */
        line-height: 1.2;      /* Lines ke beech ka gap kam kiya */
        height: auto;          /* Height auto adjust hogi */
    }

    /* 4. Table Headings */
    .unit-table th {
        font-size: 10px;
        letter-spacing: 0px;   /* Spacing hatayi taaki text na toote */
        white-space: nowrap;   /* Heading ek line me rakhne ki koshish */
    }

    /* 5. Bold Text (Unit Name) */
    .unit-table td b {
        font-size: 10px;       /* Bold text bhi chhota */
        display: block;        /* Alag line me dikhe */
        margin-bottom: 2px;
    }

    /* 6. Price Text Styling fix */
    .price-clickable {
        font-size: 10px !important; /* Price ka bada font override kiya */
        font-weight: 700;
        text-decoration: none;      /* Underline hata di safayi ke liye (optional) */
        display: block;
    }

    /* 7. Small tag (squ. ft. / onwards) adjustments */
    .unit-table small {
        font-size: 9px;        /* Sub-text 9px */
        color: #666;
    }
}
/* --- PLANS --- */
.plan-tabs-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.plan-tab {
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: #666;
    padding: 10px 20px;
    cursor: pointer;
    text-transform: uppercase;
    position: relative;
    transition: 0.3s;
}

.plan-tab.active {
    color: var(--brown-dark);
}

.plan-tab.active::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--gold);
}

.master-img-box {
    text-align: center;
    padding: 20px;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
}

.master-img-box img {
    max-width: 100%;
    max-height: 400px;
    width: auto;
    margin: auto;
    border-radius: 6px;
}

.floor-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: center;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.floor-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    margin-bottom: 15px;
    background: #f9f9f9;
    border-radius: 4px;
}

.floor-card h5 {
    color: var(--brown-dark);
    font-size: 16px;
    font-weight: 700;
}

.plan-content {
    animation: fadeIn 0.5s ease;
}

/* --- AMENITIES --- */
.amenity-card {
    width: 100%;
    border: 1px solid #eee;
    border-radius: 6px;
    text-align: center;
    background: #fff;
    padding: 30px 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.amenity-card:hover {
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(167, 125, 64, 0.1);
}

.icon-box {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 15px;
}

.amenity-card p {
    font-weight: 700;
    color: var(--brown-dark);
    font-size: 14px;
    margin: 0;
}

/* --- GALLERY --- */
.gallery-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 6px;
}

/* --- FORM --- */
.form-wrapper {
    background: var(--white);
    padding: 25px;
    border: 1px solid #dcdcdc;
    border-top: 5px solid var(--brown-dark);
    border-radius: 6px;
    position: sticky;
    top: 100px;
}

.form-wrapper h4 {
    color: var(--brown-dark);
    font-size: 22px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    font-weight: 800;
}

.form-group {
    margin-bottom: 12px;
    width: 100%;
}

.enquiry-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
}

.enquiry-form input:focus {
    border-color: var(--gold);
}

.checkbox-container {
    margin: 15px 0;
}

.unit-label {
    font-weight: 700;
    color: var(--brown-dark);
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.checkbox-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.check-box {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #444;
}

.check-box input {
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--brown-dark);
}

/* --- OTHERS --- */
.hero-banner img {
    width: 100%;
}

.desktop-img {
    display: block;
}

.mobile-img {
    display: none;
}

.location-box img {
    border-radius: 6px;
    border: 1px solid #eee;
}

.location-list ul {
    margin-top: 15px;
    padding-left: 20px;
    list-style: disc;
}

/* --- POPUP (Bootstrap Enhanced) --- */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%; /* Mobile par full width */
    max-width: 500px; /* INCREASED: Widened to fit 2 columns nicely */
    z-index: 2000;
}

/* Close button positioning */
.popup .close-popup {
    position: absolute;
    right: -10px;
    top: -10px;
    border: 2px solid #fff;
}

/* Custom helper class for Gold Icons */
.text-gold { color: var(--gold) !important; }

/* Checkbox Accent Color */
.form-check-input:checked {
    background-color: var(--brown-dark);
    border-color: var(--brown-dark);
}

.form-check { transition: 0.2s; cursor: pointer; }
.form-check:hover { background-color: #e9ecef !important; }

/* Input Focus Glow */
.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.25rem rgba(167, 125, 64, 0.25);
}

/* Fix for Input Group Icons size */
.input-group-text { font-size: 0.9rem; }
.form-control { font-size: 0.9rem; }
/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .main-layout {
        flex-direction: column;
    }

    .content-area,
    .sidebar-form {
        width: 100%;
    }

    .sidebar-form {
        order: -1;
        margin-bottom: 20px;
    }

    .form-wrapper {
        position: static;
    }

    .desktop-nav,
    .header-btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    /* Responsive Card Adjustment */
    .banner-card {
        width: 300px;
        left: 5%;
    }
}
/* 1. Blur Overlay */
.overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); /* Dark transparent */
    z-index: 1500;
    backdrop-filter: blur(8px); /* The Blur Effect */
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
@media (max-width: 768px) {
    .desktop-img {
        display: none;
    }

    .mobile-img {
        display: block;
    }

    .header-flex {
        padding: 10px 15px;
    }

    .brand-logo img {
        height: 40px;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    /* Mobile Banner Card Adjustment */
    .hero-banner {
        display: flex;
        flex-direction: column;
    }

    .banner-card {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 90%;
        margin: -40px auto 20px auto;
        z-index: 10;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    }

    .mobile-img {
        min-height: 300px;
        object-fit: cover;
    }
}
/* --- FAQ ACCORDION STYLES --- */
.accordion-container {
    max-width: 800px;
    margin: 20px auto 0;
}

.accordion-item {
    border: 1px solid #eee;
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    transition: 0.3s;
}

.accordion-item:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.accordion-header {
    width: 100%;
    padding: 18px 20px;
    background: #fff;
    border: none;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    color: var(--brown-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.accordion-header:hover {
    color: var(--gold);
    background: #fcfcfc;
}

.accordion-header.active {
    background: var(--brown-dark);
    color: var(--white);
}

.accordion-header i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fdfdfd;
}

.accordion-content p {
    padding: 20px;
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    border-top: 1px solid #f0f0f0;
}
/* --- MOBILE STICKY FOOTER --- */
.mobile-sticky-footer {
    display: none; /* Desktop par hidden rahega */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    background: #fff;
}

.sticky-btn {
    flex: 1; /* Dono buttons barabar jagah lenge */
    padding: 15px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.sticky-btn i {
    font-size: 18px;
}

/* Colors */
.call-btn {
    background-color: var(--brown-dark); /* Theme Dark Brown */
}

.brochure-btn {
    background-color: var(--gold); /* Theme Gold */
}

.call-btn:hover { background-color: #3e2b24; }
.brochure-btn:hover { background-color: #8c6734; }

/* Show only on Mobile/Tablet */
@media (max-width: 768px) {
    .mobile-sticky-footer {
        display: flex;
    }
    
    /* Footer ke peeche content chup na jaye isliye body me padding */
    /* body {
        padding-bottom: 60px;
    } */
}
/* --- FULL WIDTH FOOTER (THEME BASED) --- */
footer {
    background-color: var(--brown-dark); /* Theme Brown */
    color: #f0f0f0;
    padding-top: 10px;
    font-size: 12px;
    margin-top: 0;
    width: 100%;
    border-top: 4px solid var(--gold); /* Gold Top Border for premium look */
}

/* Container Fluid Fix if Bootstrap is used, else it acts as full width div */
.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.footer-wrapper {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* 1. Disclaimer Styling */
.footer-disclaimer {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.7); /* Slightly transparent white */
    line-height: 1.5;
    text-align: center;
   
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtle divider */
    max-width: 1200px; /* Text readable width me rahe */
    margin: 0 auto;
}

.footer-disclaimer b {
    color: var(--gold);
}

/* 2. CP Details Styling */
.footer-cp-details p {
    margin: 2px 0;
    font-size: 10px;
    color: #fff;
   
}

.footer-cp-details b {
    color: var(--gold);
    font-weight: 700;
}

.footer-cp-details a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.footer-cp-details a:hover {
    color: var(--gold);
}

.separator {
    margin: 0 10px;
    color: var(--gold);
    opacity: 0.6;
}

/* 3. Copyright Styling */
.footer-copyright {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.6);
  
}

.footer-copyright a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}
.footer-copyright a:hover {
    color: var(--gold);
}



/* Responsive Tweak */
@media (max-width: 768px) {
    footer {
        padding-bottom: 10px; /* Space for Sticky Mobile Buttons */
        padding-left: 10px;
        padding-right: 10px;
    }
}
/* --- EXTRA STYLES FOR LEGAL & SYSTEM PAGES --- */

/* Simple Header (Logo Only) */
.simple-header {
    background: var(--brown-dark);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.simple-header .container {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Logo Left aligned */
}

/* Legal Content Container */
.legal-content-wrapper {
    background: #fff;
    max-width: 1000px;
    margin: 40px auto;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--border);
}

.legal-content-wrapper h1 {
    color: var(--brown-dark);
    font-weight: 800;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
    padding-bottom: 10px;
}

.legal-content-wrapper h2 {
    font-size: 18px;
    color: var(--brown-dark);
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-content-wrapper p, .legal-content-wrapper li {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

.legal-content-wrapper ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

/* Thank You & 404 Page Styling */
.system-page-container {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
}

.icon-large {
    font-size: 80px;
    margin-bottom: 20px;
}

.text-success-custom { color: #28a745; }
.text-error-custom { color: #dc3545; }

.system-page-container h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--brown-dark);
    margin-bottom: 10px;
}

.system-page-container p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .legal-content-wrapper {
        padding: 20px;
        margin: 20px 15px;
    }
}