/* ==========================================================================
   Deepti Makeup Artist - Premium Design System (style.css)
   Theme: Luxury Champagne Gold & Obsidian Charcoal
   ========================================================================== */

/* --- Google Fonts Integration --- */
@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* --- Design Tokens & Variables --- */
:root {
    /* Colors */
    --bg-dark: #070605;           /* Rich Obsidian Black */
    --bg-card: #13110f;           /* Warm Dark Chocolate Card */
    --bg-card-hover: #191613;     /* Hover state card */
    --gold-main: #d4af37;         /* Classic Luxury Gold */
    --gold-bright: #ffd700;       /* Bright Solid Accent Gold */
    --gold-light: #f5d796;        /* Light champagne gold */
    --text-light: #f5f3ef;        /* Elegant soft off-white */
    --text-muted: #a6a099;        /* Warm taupe-gray for readable descriptions */
    --border-color: #2b2621;      /* Thin warm border */
    
    /* Gradients */
    --gold-shine: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --gold-gradient: linear-gradient(135deg, #b88e4c, #f5d796, #d8b26e);
    --dark-gradient: linear-gradient(180deg, #13110f 0%, #070605 100%);
    --bg-gradient: linear-gradient(180deg, #070605 0%, #151310 50%, #070605 100%);
    --gold-glow: 0 0 25px rgba(212, 175, 55, 0.18);
    --gold-glow-intense: 0 0 35px rgba(212, 175, 55, 0.45);
    
    /* Layout & Styling details */
    --border-radius-lg: 20px;
    --border-radius-md: 12px;
    --border-radius-sm: 8px;
    --glass-bg: rgba(19, 17, 15, 0.75);
    --glass-border: rgba(212, 175, 55, 0.12);
    
    /* Transitions */
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s ease;
}

/* ==========================================================================
   Global Resets & Scrollbars
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: var(--bg-dark) !important;
    color: var(--text-muted);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
    border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-main);
}

/* Text Selection */
::selection {
    background: var(--gold-main);
    color: var(--bg-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* ==========================================================================
   Typography Hierarchy
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--text-light);
    font-weight: 500;
}

/* Custom Creative Section Title Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 5;
}
.section-subtitle {
    font-family: 'Alex Brush', cursive;
    font-size: 2.4rem;
    color: var(--gold-main);
    margin-bottom: 2px;
    letter-spacing: 1px;
    line-height: 1;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--text-light);
    margin-bottom: 15px;
    position: relative;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1.5px;
    background: var(--gold-gradient);
    margin: 15px auto 0;
}
.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ==========================================================================
   Glowing Ambient Orbs (Auras)
   ========================================================================== */
.glowing-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
    filter: blur(40px);
}
.orb-top-right { top: -100px; right: -150px; }
.orb-bottom-left { bottom: -100px; left: -150px; }
.orb-center { top: 30%; left: 50%; transform: translate(-50%, -50%); }

/* ==========================================================================
   Scroll Reveal System
   ========================================================================== */
.reveal-element {
    opacity: 0;
    will-change: opacity, transform;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Slide Up Parallax */
.reveal-element.reveal-slide-up,
.reveal-element:not([class*="reveal-slide"]):not([class*="reveal-scale"]) {
    transform: translateY(60px);
}

/* Slide Left Parallax */
.reveal-element.reveal-slide-left {
    transform: translateX(-50px);
}

/* Slide Right Parallax */
.reveal-element.reveal-slide-right {
    transform: translateX(50px);
}

/* Scale Up Parallax */
.reveal-element.reveal-scale-up {
    transform: scale(0.92);
}

/* Revealed State (triggers when class 'revealed' is added by JS) */
.reveal-element.revealed {
    opacity: 1 !important;
    transform: translateY(0) translateX(0) scale(1) !important;
}

/* Staggered transition delays for children of a staggered parent */
.reveal-stagger > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.6s; }

/* ==========================================================================
   Layout Containers
   ========================================================================== */
.brxe-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 3;
}

.brxe-section {
    padding: 100px 0;
    background-color: transparent !important;
    position: relative;
    overflow: hidden;
}

.brx-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* ==========================================================================
   Header & Floating Navigation
   ========================================================================== */
#brx-header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
}

#brx-header .brxe-section {
    padding: 0 !important;
}

.navbar-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: var(--transition-smooth);
}

/* Shrink navbar on scroll script helper compatibility */
.navbar-scrolled .navbar-wrapper {
    padding: 8px 25px;
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    transition: var(--transition-smooth);
}

.navbar-scrolled .logo-img {
    height: 42px;
}

.brand-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.8px;
    line-height: 1.1;
    transition: var(--transition-smooth);
}

.brand-subtext {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    color: var(--gold-main);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1;
    margin-top: 2px;
    transition: var(--transition-smooth);
}

.navbar-scrolled .brand-name {
    font-size: 1.25rem;
}

.navbar-scrolled .brand-subtext {
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.brxe-nav-menu ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.brxe-nav-menu ul li a {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
}

.brxe-nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.brxe-nav-menu ul li a:hover {
    color: var(--gold-light);
}

.brxe-nav-menu ul li a:hover::after {
    width: 80%;
}

/* Header Booking Button */
#brxe-jxuzzf {
    background: var(--gold-gradient) !important;
    color: #070605 !important;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 10px 24px;
    border-radius: 30px;
    border: none;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
    text-transform: uppercase;
}

#brxe-jxuzzf:hover {
    transform: translateY(-2px);
    box-shadow: var(--gold-glow-intense);
    color: #070605 !important;
}

/* Hamburger Menu Icon */
#hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 24px;
    z-index: 1001;
}

#hamburger-menu span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--gold-light);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

#hamburger-menu span:nth-child(1) { top: 0px; }
#hamburger-menu span:nth-child(2) { top: 10px; }
#hamburger-menu span:nth-child(3) { top: 20px; }

#hamburger-menu.active span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}
#hamburger-menu.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}
#hamburger-menu.active span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

/* ==========================================================================
   Home Hero Section
   ========================================================================== */
.home-section {
    position: relative;
    overflow: hidden;
}

.home-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(180deg, rgba(7,6,5,0) 0%, var(--bg-dark) 100%);
    z-index: 2;
    pointer-events: none;
}

.home-section .swiper-slide img {
    width: 100%;
    height: 95vh;
    object-fit: cover;
    opacity: 0.95;
}

/* Hero Glass Card Overlay styling */
.hero-overlay-card {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 90%;
    max-width: 680px;
    background: rgba(19, 17, 15, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: var(--border-radius-lg);
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), var(--gold-glow);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.hero-overlay-card .hero-subtitle {
    font-family: 'Alex Brush', cursive;
    font-size: 2.8rem;
    color: var(--gold-main);
    margin-bottom: 2px;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-overlay-card .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.hero-overlay-card .hero-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    opacity: 0.95;
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-overlay-card .hero-btn {
    display: inline-block;
    background: var(--gold-gradient);
    color: #070605;
    font-weight: 700;
    padding: 15px 38px;
    border-radius: 30px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.hero-overlay-card .hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--gold-glow-intense);
}

.mobile-banner {
    display: none;
}

/* ==========================================================================
   Overview / About Section
   ========================================================================== */
#overview {
    background: var(--bg-gradient);
    z-index: 5;
}

#overview .brxe-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    font-weight: 300;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

#overview .brxe-text p strong {
    color: var(--gold-main);
    font-weight: 600;
}

/* ==========================================================================
   Premium Gold Foil pseudo element border gradient (Luxury Card Base)
   ========================================================================== */
.luxury-card {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(184, 142, 76, 0.2);
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.luxury-card::after {
    display: none; /* Disabled gradient pseudo-border to maintain a sober dark background */
}

.luxury-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-main);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), var(--gold-glow);
}

/* ==========================================================================
   Services Section (Exclusive Packages)
   ========================================================================== */
#configuration {
    background: var(--bg-dark);
}

.config-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.config-card {
    padding: 45px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
}

.config-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition-smooth);
    border-top-left-radius: var(--border-radius-lg);
    border-top-right-radius: var(--border-radius-lg);
    z-index: 3;
}

.config-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--gold-glow);
}

.config-card:hover::before {
    opacity: 1;
}

.config-card h3 {
    color: var(--text-light);
    font-size: 1.65rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.config-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
    text-align: left;
    flex-grow: 1;
}

.config-card li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    transition: var(--transition-fast);
}

.config-card li:hover {
    color: var(--text-light);
}

.config-card li .fas {
    color: var(--gold-main);
    margin-right: 12px;
    margin-top: 3px;
    font-size: 1.05rem;
    filter: drop-shadow(0 0 3px rgba(212,175,55,0.3));
}

/* Premium Buttons & Shimmer Sweeps */
.btn-check-price,
.btn-submit,
#brxe-jxuzzf,
.btn-home,
.hero-btn {
    position: relative;
    overflow: hidden;
}

.btn-check-price::after,
.btn-submit::after,
#brxe-jxuzzf::after,
.btn-home::after,
.hero-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: none;
    pointer-events: none;
}

.btn-check-price:hover::after,
.btn-submit:hover::after,
#brxe-jxuzzf:hover::after,
.btn-home:hover::after,
.hero-btn:hover::after {
    animation: buttonShine 1s ease-in-out forwards;
}

@keyframes buttonShine {
    100% {
        left: 150%;
    }
}

.btn-check-price {
    background: var(--gold-gradient);
    color: #070605 !important;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    border: none;
    display: inline-block;
    width: 100%;
    margin-top: auto;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: var(--transition-smooth);
    text-transform: uppercase;
}

.btn-check-price:hover {
    transform: translateY(-2px);
    box-shadow: var(--gold-glow-intense);
    color: #070605 !important;
}

/* ==========================================================================
   Expertise / Amenities Section
   ========================================================================== */
#amenities {
    background: var(--bg-gradient);
}

.amenity-card {
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.amenity-card:hover {
    box-shadow: var(--gold-glow);
}

.amenity-card .image-wrapper {
    position: relative;
    width: 100%;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
}

.amenity-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
}

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

.amenity-card h4 {
    color: var(--gold-main);
    font-weight: 600;
    font-size: 1.45rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.amenity-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.amenity-list-grid ul {
    list-style: none;
}

.amenity-list-grid li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.amenity-list-grid li::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gold-gradient);
    color: #070605;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    text-align: center;
    font-size: 10px;
    line-height: 18px;
}

/* ==========================================================================
   Lifestyle / Testimonials Review Section
   ========================================================================== */
#lifestyle {
    background: var(--bg-dark);
}

#lifestyle .lifestyle-swiper {
    padding-bottom: 60px;
}

/* Testimonial Quote Card overrides */
.testimonial-card {
    background: var(--bg-card);
    padding: 40px 35px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gold-glow);
}

.testimonial-stars {
    color: var(--gold-bright);
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 1.02rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border-color);
    padding-top: 18px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--gold-main);
    object-fit: cover;
}

.testimonial-username {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--text-light);
    font-size: 1.1rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--gold-main);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

.quote-icon {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 2.5rem;
    color: rgba(212, 175, 55, 0.08);
    line-height: 1;
}

/* ==========================================================================
   Gallery Section (Portfolio Showcase)
   ========================================================================== */
#gallery {
    background: var(--bg-gradient);
}

#gallery .gallery-swiper {
    padding-bottom: 60px;
}

.gallery-swiper .swiper-slide {
    overflow: hidden;
    border-radius: var(--border-radius-md);
}

.gallery-swiper .swiper-slide a {
    cursor: zoom-in;
    display: block;
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.gallery-swiper .swiper-slide a::after {
    content: '\f002';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    background: rgba(212, 175, 55, 0.95);
    color: #070605;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 5;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.gallery-swiper .swiper-slide a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 6, 5, 0.6);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 4;
}

.gallery-swiper img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.gallery-swiper .swiper-slide a:hover img {
    transform: scale(1.08);
}

.gallery-swiper .swiper-slide a:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.gallery-swiper .swiper-slide a:hover::before {
    opacity: 1;
}

/* ==========================================================================
   Instagram Feed Section
   ========================================================================== */
#instagram-feed {
    background: var(--bg-dark) !important;
}

.insta-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.insta-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: var(--gold-glow);
}

.insta-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.insta-profile-pic {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--gold-main);
    padding: 2px;
    object-fit: contain;
    background: #000000;
}

.insta-info {
    flex: 1;
}

.insta-handle {
    color: var(--text-light);
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.insta-handle .fa-check-circle {
    color: #3897f0;
    font-size: 0.95rem;
    margin-left: 6px;
}

.insta-bio {
    color: var(--text-muted);
    margin: 4px 0 0;
    font-size: 0.95rem;
}

.insta-stats {
    color: var(--gold-main);
    margin: 6px 0 0;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-insta-follow {
    background: var(--gold-gradient);
    color: #070605 !important;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.btn-insta-follow:hover {
    transform: translateY(-2px);
    box-shadow: var(--gold-glow-intense);
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.insta-grid-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    display: block;
    position: relative;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
}

.insta-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.insta-grid-item::after {
    content: '\f16d';
    font-family: 'Font Awesome 5 Brands';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    color: #ffffff;
    font-size: 1.8rem;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 5;
}

.insta-grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 4;
}

.insta-grid-item:hover img {
    transform: scale(1.08);
}

.insta-grid-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.insta-grid-item:hover::before {
    opacity: 1;
}

.insta-embed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 35px;
    justify-content: center;
}

.insta-embed-item {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background: #ffffff; /* Use solid white background to blend seamlessly with Instagram's player background */
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    height: 620px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: var(--transition-smooth);
}

.insta-embed-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--gold-main);
    box-shadow: var(--gold-glow);
}

.insta-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 991px) {
    .insta-embed-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .insta-embed-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .insta-embed-item {
        max-width: 420px;
        margin: 0 auto;
        height: 600px;
    }
}

.insta-footer-link {
    text-align: center;
}

.insta-footer-link a {
    color: var(--gold-main);
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 1px dashed var(--gold-main);
    padding-bottom: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.insta-footer-link a:hover {
    color: var(--gold-bright);
    border-color: var(--gold-bright);
    padding-bottom: 6px;
}

/* ==========================================================================
   FAQ Accordion Section
   ========================================================================== */
#faq {
    background: var(--bg-dark);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    padding: 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.faq-item:hover {
    box-shadow: var(--gold-glow);
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--text-light);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    transition: var(--transition-fast);
}

.faq-item:hover .faq-question h4 {
    color: var(--gold-light);
}

.faq-toggle-icon {
    position: relative;
    width: 16px;
    height: 16px;
    transition: var(--transition-smooth);
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
    content: '';
    position: absolute;
    background: var(--gold-main);
    transition: var(--transition-smooth);
}

/* Horizontal bar */
.faq-toggle-icon::before {
    top: 7px;
    left: 0;
    width: 100%;
    height: 2px;
}

/* Vertical bar */
.faq-toggle-icon::after {
    top: 0;
    left: 7px;
    width: 2px;
    height: 100%;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

/* FAQ active and hover states: keep dark background, brighten border and shadow glow */
.faq-item.active,
.faq-item:hover {
    border-color: var(--gold-main) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), var(--gold-glow) !important;
}

.faq-item.active .faq-question h4,
.faq-item:hover .faq-question h4 {
    color: var(--gold-light) !important;
}

.faq-item.active .faq-toggle-icon::before,
.faq-item.active .faq-toggle-icon::after,
.faq-item:hover .faq-toggle-icon::before,
.faq-item:hover .faq-toggle-icon::after {
    background: var(--gold-main) !important;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-content {
    padding: 0 30px 25px;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
#contact {
    background: var(--bg-gradient);
}

.contact-card-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 50px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.contact-card-wrapper::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(0,0,0,0) 70%);
    top: -50px;
    right: -50px;
    pointer-events: none;
}

.form-group {
    margin-bottom: 24px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color) !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    background: rgba(7, 6, 5, 0.5) !important;
    color: var(--text-light) !important;
    transition: var(--transition-smooth) !important;
}

.form-input:focus {
    border-color: var(--gold-main) !important;
    outline: none !important;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
    background: rgba(7, 6, 5, 0.8) !important;
}

textarea.form-input {
    resize: vertical;
}

.btn-submit {
    background: var(--gold-gradient) !important;
    color: #070605 !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    letter-spacing: 1px !important;
    padding: 16px 30px !important;
    border-radius: var(--border-radius-sm) !important;
    border: none !important;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: var(--transition-smooth) !important;
    text-transform: uppercase;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--gold-glow-intense) !important;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background: #000000 !important;
    color: var(--text-muted) !important;
    text-align: center;
    padding: 50px 25px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
}

.footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--text-light);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
}

.footer-copyright a {
    color: var(--gold-main) !important;
    font-weight: 600;
}

.footer-copyright a:hover {
    color: var(--gold-bright) !important;
}

/* ==========================================================================
   Mobile Bottom Bar (Fixed)
   ========================================================================== */
#brxe-wylpbs {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
}

#brxe-wylpbs a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-light);
    padding: 10px 5px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
}

#brxe-wylpbs a i {
    font-size: 18px;
    margin-bottom: 4px;
    transition: var(--transition-fast);
}

#brxe-wylpbs a:nth-child(1) {
    color: var(--gold-main);
}
#brxe-wylpbs a:nth-child(2) {
    background: var(--gold-gradient);
    color: #070605;
}
#brxe-wylpbs a:nth-child(2) i {
    color: #070605;
}
#brxe-wylpbs a:nth-child(3) {
    color: #25D366;
}

#brxe-wylpbs a:hover i {
    transform: scale(1.1);
}

/* ==========================================================================
   Popup Modal Styling
   ========================================================================== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 4, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: rgba(19, 17, 15, 0.98);
    border: none;
    color: var(--text-light);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    width: 95%;
    max-width: 440px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), var(--gold-glow);
    text-align: center;
    transform: translateY(-40px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.popup-overlay.show .popup-content {
    transform: translateY(0);
}

.popup-content .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    font-weight: 300;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
    z-index: 5;
}

.popup-content .close-btn:hover {
    color: var(--gold-main);
}

.popup-logo {
    max-width: 90px;
    margin-bottom: 10px;
    border-radius: 50%;
    border: 2px solid var(--gold-main);
    background: #000000;
    padding: 6px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.popup-subtitle {
    font-family: 'Alex Brush', cursive;
    color: var(--gold-main);
    font-size: 1.8rem;
    margin: 5px 0 0;
    line-height: 1;
}

.popup-content h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-top: 5px;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.popup-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.5;
}

.popup-form input, 
.popup-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: rgba(7, 6, 5, 0.5);
    color: var(--text-light);
    transition: var(--transition-fast);
}

.popup-form input:focus, 
.popup-form textarea:focus {
    border-color: var(--gold-main);
    background: rgba(7, 6, 5, 0.8);
    outline: none;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.popup-form button {
    background: var(--gold-gradient);
    color: #070605;
    border: none;
    padding: 14px;
    width: 100%;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: var(--transition-smooth);
}

.popup-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--gold-glow-intense);
}

/* ==========================================================================
   Thank You Page Styling
   ========================================================================== */
.thankyou-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: var(--bg-gradient);
}

.thankyou-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 60px 40px;
    border-radius: var(--border-radius-lg);
    max-width: 580px;
    width: 100%;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.thankyou-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: var(--gold-glow);
}

.thankyou-card .icon-box {
    font-size: 90px;
    color: var(--gold-main);
    margin-bottom: 25px;
    display: inline-block;
    filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.2));
}

.thankyou-card h1 {
    font-family: 'Playfair Display', serif;
    color: var(--text-light);
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.thankyou-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 35px;
    color: var(--text-muted);
}

.btn-home, 
.btn-insta {
    display: inline-block;
    padding: 14px 30px;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    margin: 10px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.btn-home {
    background: var(--gold-gradient);
    color: #070605 !important;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
}

.btn-home:hover {
    transform: translateY(-2px);
    box-shadow: var(--gold-glow-intense);
}

.btn-insta {
    background: transparent;
    color: var(--gold-main) !important;
    border: 1px solid var(--gold-main);
}

.btn-insta:hover {
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold-bright) !important;
    border-color: var(--gold-bright);
}

/* ==========================================================================
   Privacy Policy Page Styling
   ========================================================================== */
.policy-content {
    padding: 80px 0;
    background: var(--bg-gradient);
}

.policy-card {
    background: var(--bg-card);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.policy-card h1 {
    font-family: 'Playfair Display', serif;
    color: var(--text-light);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 25px;
}

.policy-card h3 {
    color: var(--gold-main);
    margin-top: 35px;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.policy-card p, 
.policy-card li {
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 18px;
    font-size: 0.98rem;
}

.policy-card ul {
    margin-left: 25px;
    margin-bottom: 25px;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .section-title { font-size: 2.4rem; }
    .brx-grid { gap: 30px; }
    .config-grid-3 { gap: 20px; }
}

@media (max-width: 991px) {
    #hamburger-menu {
        display: block;
    }
    
    .brxe-nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 20px;
        right: 20px;
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius-lg);
        flex-direction: column;
        box-shadow: 0 10px 30px rgba(0,0,0,0.6);
        padding: 20px 0;
        margin-top: 15px;
        z-index: 999;
    }
    
    .brxe-nav-menu.active {
        display: flex;
    }
    
    .brxe-nav-menu ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .brxe-nav-menu ul li {
        width: 100%;
        text-align: center;
    }
    
    .brxe-nav-menu ul li a {
        display: block;
        padding: 15px 20px;
        width: 100%;
        font-size: 1.05rem;
    }
    
    .brxe-nav-menu ul li a::after {
        display: none;
    }
    
    #brxe-jxuzzf {
        display: none; /* Hide on mobile navbar header, action is in bottom bar */
    }
    
    .navbar-wrapper {
        border-radius: 30px;
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    .section-subtitle { font-size: 1.8rem; }
    .section-title { font-size: 2rem; }
    .brxe-section { padding: 70px 0; }
    
    .brx-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .config-grid-3 {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .amenity-list-grid {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .insta-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .insta-card {
        padding: 20px;
    }
    
    .desktop-banner {
        display: none;
    }
    
    .mobile-banner {
        display: block;
    }
    
    .home-section .swiper-slide img {
        height: 80vh;
    }
    
    #brxe-wylpbs {
        display: flex;
    }
    
    body {
        padding-bottom: 60px; /* Padding for mobile fixed bottom bar */
    }
    
    .contact-card-wrapper {
        padding: 35px 20px;
    }
    
    .policy-card {
        padding: 30px 20px;
    }
    .policy-card h1 { font-size: 2.2rem; }
    
    .thankyou-card {
        padding: 40px 20px;
    }
    .thankyou-card h1 { font-size: 2.2rem; }
    .thankyou-card .icon-box { font-size: 70px; }
}

@media (max-width: 480px) {
    .insta-handle { font-size: 1.15rem; }
    .insta-bio { font-size: 0.85rem; }
    .btn-insta-follow { padding: 8px 16px; font-size: 0.8rem; }
}

/* ==========================================================================
   Pricing & Investment Section
   ========================================================================== */
#pricing-packages {
    background: var(--bg-gradient);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    padding: 45px 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card-header {
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 25px;
    margin-bottom: 25px;
    position: relative;
}

.pricing-badge {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-main);
    color: var(--gold-main);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 15px;
}

.pricing-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--text-light);
    margin: 0 0 15px;
    font-weight: 700;
}

.pricing-price-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.price-val {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--gold-light);
    font-weight: 700;
    line-height: 1;
}

.price-lbl {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.pricing-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.pricing-features li {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

.pricing-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold-main);
}

.pricing-features li .note {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
}

.pricing-inclusions {
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-bottom: 25px;
    text-align: center;
}

.pricing-inclusions h5 {
    color: var(--gold-main);
    font-size: 0.85rem;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.pricing-inclusions p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

/* Popular Card highlight style */
.popular-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gold-gradient);
    border-top-left-radius: var(--border-radius-lg);
    border-top-right-radius: var(--border-radius-lg);
}


/* Terms Policy box styling */
.pricing-policy-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 35px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    text-align: left;
}

.policy-column h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--gold-light);
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.policy-column h4 i {
    color: var(--gold-main);
}

.policy-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.policy-column ul li {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    display: flex;
    gap: 12px;
}

.policy-column ul li i {
    color: var(--gold-main);
    margin-top: 4px;
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-policy-box {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-policy-box {
        padding: 30px 20px;
    }
}

/* Contact Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid .contact-card-wrapper {
    max-width: 100%;
    margin: 0;
}

.map-card-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
