@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Tokens - Midnight Teal, Royal Gold, Burgundy, Ivory White */
    --midnight-teal: #071A22;
    --royal-gold: #D4AF37;
    --burgundy: #6B1E2B;
    --ivory-white: #F8F6F2;
    
    /* Semantic mappings for easy integration */
    --primary-purple: var(--burgundy);
    --light-purple: #8B2E3E;
    --deep-plum: var(--midnight-teal);
    --primary-gold: var(--royal-gold);
    --light-gold: #E5C158;
    --cream-bg: var(--ivory-white);
    --ivory-bg: #EFECE6;
    --beige-bg: #E3DEC8;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-dark: #5c6c74;
    
    /* Layout & Shadow Tokens */
    --shadow-sm: 0 4px 10px rgba(7, 26, 34, 0.05);
    --shadow-md: 0 10px 25px rgba(7, 26, 34, 0.08);
    --shadow-lg: 0 20px 40px rgba(7, 26, 34, 0.12);
    --border-gold: 1px solid var(--primary-gold);
    --border-gold-light: 1px solid rgba(212, 175, 55, 0.3);
    
    /* Fonts */
    --font-headings: 'Cinzel', Georgia, serif;
    --font-body: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Base Styles & Reset
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--deep-plum);
    background-color: var(--cream-bg);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    color: var(--primary-purple);
    font-weight: 700;
    line-height: 1.3;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 26, 34, 0.95); /* Midnight Teal */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--primary-gold); /* Royal Gold */
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0.8rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.logo-img {
    height: 64px;
    width: 64px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    object-fit: cover;
    background-color: var(--white);
    transition: var(--transition-normal);
}

.logo-link:hover .logo-img {
    transform: scale(1.08) rotate(15deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
}

.logo-title {
    font-family: var(--font-headings);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-gold);
    font-weight: 600;
}

.desktop-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1.5rem;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(248, 246, 242, 0.9); /* Ivory White tint */
    padding: 0.5rem 0.2rem;
    position: relative;
    cursor: pointer;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-gold);
}

/* Navigation Dropdown List (Desktop) */
.nav-dropdown {
    position: relative;
}

.dropdown-menu-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background-color: var(--cream-bg);
    border: 2px solid var(--primary-gold);
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-list li a {
    display: block;
    padding: 0.6rem 1.2rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--deep-plum);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-fast);
}

.dropdown-menu-list li:last-child a {
    border-bottom: none;
}

.dropdown-menu-list li a:hover {
    background-color: rgba(107, 30, 43, 0.05);
    color: var(--primary-purple);
    padding-left: 1.5rem;
}

.nav-link .arrow {
    display: inline-block;
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-link .arrow {
    transform: rotate(180deg);
}

/* Background Overlay for mobile drawer */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 26, 34, 0.5);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-cta {
    display: inline-block;
    background-color: var(--primary-purple);
    color: var(--cream-bg) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--primary-purple);
}

.nav-cta:hover {
    background-color: transparent;
    color: var(--primary-purple) !important;
    border-color: var(--primary-purple);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-purple);
    margin: 5px 0;
    transition: var(--transition-fast);
    border-radius: 3px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

/* ==========================================================================
   Common Section Layouts
   ========================================================================== */
section {
    padding: 5rem 1.5rem;
}

.bg-cream {
    background-color: var(--cream-bg);
}

.bg-ivory {
    background-color: var(--ivory-bg);
}

.bg-beige {
    background-color: var(--beige-bg);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.8rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--primary-gold);
}

/* Decorative Gold Dots on sides of title underline */
.section-header h2::before {
    content: '✦';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-gold);
    background-color: var(--cream-bg);
    padding: 0 8px;
    font-size: 0.9rem;
    z-index: 1;
}
.bg-ivory .section-header h2::before {
    background-color: var(--ivory-bg);
}
.bg-beige .section-header h2::before {
    background-color: var(--beige-bg);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--primary-gold);
    font-family: var(--font-headings);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

/* Inner Page Banner */
.page-banner {
    background: linear-gradient(135deg, rgba(107, 30, 43, 0.95) 0%, rgba(7, 26, 34, 0.98) 100%), 
                url('../images/hero_spiritual_bg.webp') no-repeat center center/cover;
    padding: 5rem 1.5rem;
    text-align: center;
    border-bottom: 4px solid var(--primary-gold);
    color: var(--cream-bg);
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/celestial_pattern.webp') repeat center center;
    opacity: 0.12;
    pointer-events: none;
    mix-blend-mode: screen;
}

.page-banner h1 {
    color: var(--cream-bg);
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.page-banner p {
    font-size: 1.1rem;
    color: var(--primary-gold);
    font-family: var(--font-headings);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==========================================================================
   Buttons (Primary & Secondary)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary-purple);
    color: var(--cream-bg);
    border-color: var(--primary-purple);
    box-shadow: 0 4px 10px rgba(107, 30, 43, 0.2);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-purple);
    border-color: var(--primary-purple);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(107, 30, 43, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-purple);
    border-color: var(--primary-gold);
}

.btn-secondary:hover {
    background-color: var(--primary-purple);
    color: var(--cream-bg);
    border-color: var(--primary-purple);
    transform: translateY(-2px);
}

.btn-gold {
    background-color: var(--primary-gold);
    color: var(--white);
    border-color: var(--primary-gold);
}

.btn-gold:hover {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
    color: var(--cream-bg);
}

.btn-whatsapp-color {
    background-color: #25D366;
    color: #fff;
    border-color: #25D366;
}

.btn-whatsapp-color:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    color: #fff;
}

.btn-lg {
    padding: 1rem 2.2rem;
    font-size: 1rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, rgba(7, 26, 34, 0.96) 0%, rgba(107, 30, 43, 0.94) 100%), 
                url('../images/hero_spiritual_bg.webp') no-repeat center center/cover;
    padding: 8rem 1.5rem 6rem 1.5rem;
    color: var(--cream-bg);
    overflow: hidden;
    border-bottom: 4px solid var(--primary-gold);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Redesigned Left Column: Portrait & Stats Card */
.hero-left-column {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.hero-portrait-card {
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    padding-right: 20px;
}

.hero-portrait-frame {
    width: 290px;
    height: 390px;
    border-radius: 145px 145px 20px 20px; /* Elegant temple arch shape */
    border: 3px solid var(--primary-gold);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 30px rgba(212, 175, 55, 0.25);
    background-color: var(--midnight-teal);
    position: relative;
}

.hero-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.hero-portrait-card:hover .hero-portrait-img {
    transform: scale(1.06);
}

/* Floating glass stat widget */
.hero-stat-floating-card {
    position: absolute;
    bottom: 0px;
    right: -20px;
    background: rgba(7, 26, 34, 0.85); /* Midnight Teal glass */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid var(--primary-gold);
    border-radius: 8px;
    padding: 1.2rem;
    width: 180px;
    box-shadow: var(--shadow-lg);
    z-index: 5;
    text-align: center;
    animation: heroFloat 5s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.stat-card-badge {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.stat-card-number {
    font-family: var(--font-headings);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0.1rem;
    line-height: 1;
}

.stat-card-label {
    font-size: 0.72rem;
    color: var(--ivory-white);
    opacity: 0.9;
    line-height: 1.2;
}

/* Redesigned Right Column: Text Glass Card */
.hero-text-glass-card {
    background: rgba(7, 26, 34, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(7, 26, 34, 0.4);
}

.hero-content h1 {
    color: var(--cream-bg);
    font-size: 2.5rem;
    line-height: 1.25;
    margin-bottom: 1.2rem;
}

.hero-content h1 span {
    color: var(--primary-gold);
    display: block;
    font-size: 1.3rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 0.6rem;
}

.hero-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.92;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-trust-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.trust-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--cream-bg);
    opacity: 0.95;
}

.trust-tag-star {
    width: 18px;
    height: 18px;
    fill: var(--primary-gold);
}

.trust-tag-check {
    width: 18px;
    height: 18px;
    fill: #25D366;
}

/* ==========================================================================
   Trust Strip
   ========================================================================== */
.trust-strip {
    background-color: var(--primary-purple);
    border-bottom: 3px solid var(--primary-gold);
    padding: 1.5rem;
    color: var(--cream-bg);
}

.trust-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.trust-num {
    font-family: var(--font-headings);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.trust-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ==========================================================================
   Service Cards & Grid
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--cream-bg);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    padding: 2.5rem 1.8rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-lg);
    background-color: var(--white);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-img-wrapper {
    height: 180px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.service-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-card-img-wrapper img {
    transform: scale(1.08);
}
.service-card-body {
    padding: 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Redesigned Services Grid */
.services-grid-redesign {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-redesign {
    background-color: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card-redesign:hover {
    transform: translateY(-6px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-md), 0 0 20px rgba(212, 175, 55, 0.05);
}

.service-card-icon-header {
    width: 100%;
    height: 140px;
    background: linear-gradient(135deg, var(--midnight-teal) 0%, var(--burgundy) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-gold);
    border-bottom: 2.5px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
}

.service-card-icon-header::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

.service-card-icon-header .service-svg-icon {
    width: 50px;
    height: 50px;
    fill: currentColor;
    stroke: currentColor;
    transition: transform 0.4s ease;
}

.service-card-icon-header .service-svg-icon[fill="none"] {
    fill: none !important;
}

.service-card-redesign:hover .service-svg-icon {
    transform: scale(1.12) rotate(5deg);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(107, 30, 43, 0.06);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
    border: 1px dashed var(--primary-gold);
}

.service-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--primary-gold);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: var(--primary-purple);
}

.service-card p {
    font-size: 0.92rem;
    color: var(--deep-plum);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.5;
}

.service-card-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary-gold);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.service-card-link svg {
    width: 14px;
    height: 14px;
    fill: var(--primary-gold);
    transition: var(--transition-fast);
}

.service-card:hover .service-card-link svg {
    transform: translateX(4px);
}

/* ==========================================================================
   Two Column Pages (Split Layouts)
   ========================================================================== */
.split-layout {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 3rem;
    align-items: start;
}

.split-layout-equal {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.content-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-block {
    background-color: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2.5rem;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
}

.content-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid var(--beige-bg);
    padding-bottom: 0.5rem;
}

.content-block h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem 0;
}

.content-block p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.content-block ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.content-block li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.content-block li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
}

.image-block {
    margin: 1.5rem 0;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid var(--primary-gold);
}

/* ==========================================================================
   Forms & Enquiries
   ========================================================================== */
.sticky-sidebar {
    position: sticky;
    top: 100px;
}

.enquiry-card {
    background-color: var(--white);
    border: 2px solid var(--primary-gold);
    border-radius: 8px;
    padding: 2rem 1.8rem;
    box-shadow: var(--shadow-md);
}

.enquiry-card h3 {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.enquiry-card p {
    font-size: 0.85rem;
    text-align: center;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--deep-plum);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--beige-bg);
    border-radius: 4px;
    background-color: var(--cream-bg);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--deep-plum);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(107, 30, 43, 0.1);
    background-color: var(--white);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-submit-btn {
    width: 100%;
    margin-top: 0.5rem;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.why-choose-item {
    display: flex;
    gap: 1rem;
}

.why-choose-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--primary-gold);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.why-choose-text h4 {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
    color: var(--primary-purple);
}

.why-choose-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--deep-plum);
}

.why-choose-image {
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid var(--primary-gold);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Testimonial Slider (Carousel)
   ========================================================================== */
.testimonial-carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 1rem;
    box-sizing: border-box;
}

.testimonial-bubble {
    background-color: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    position: relative;
    box-shadow: 0 15px 35px rgba(107, 30, 43, 0.05);
    text-align: center;
}

/* Quote Icon styling */
.testimonial-quote-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(212, 175, 55, 0.06);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.2rem auto;
    color: var(--primary-gold);
    border: 1px solid rgba(212, 175, 55, 0.15);
}
.testimonial-quote-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* Decorative Divider */
.header-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin: 1rem auto 0 auto;
}
.header-divider::before,
.header-divider::after {
    content: '';
    width: 40px;
    height: 1px;
    background-color: var(--primary-gold);
    opacity: 0.6;
}
.header-divider-dot {
    font-size: 0.7rem;
    color: var(--primary-gold);
}

.testimonial-stars {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--deep-plum);
}

.testimonial-author {
    font-family: var(--font-headings);
    font-weight: 700;
    color: var(--primary-purple);
    font-size: 1rem;
}

.testimonial-location {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-gold);
    margin-top: 0.2rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: none;
    border: 1px solid var(--primary-gold);
    color: var(--primary-purple);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-fast);
}

.carousel-btn:hover {
    background-color: var(--primary-purple);
    color: var(--cream-bg);
    border-color: var(--primary-purple);
}

.carousel-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-dot.active {
    background-color: var(--primary-purple);
    transform: scale(1.2);
}

/* ==========================================================================
   FAQ Accordions
   ========================================================================== */
.faq-list {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--primary-gold);
}

.faq-trigger {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-trigger h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-purple);
    font-family: var(--font-body);
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    transition: var(--transition-normal);
}

.faq-icon svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
    transition: var(--transition-normal);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-inner {
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-size: 0.95rem;
    color: var(--deep-plum);
    line-height: 1.6;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

/* Active FAQ Item State */
.faq-item.active {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-icon {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
    color: var(--cream-bg);
}

.faq-item.active .faq-icon svg {
    transform: rotate(180deg);
}

/* ==========================================================================
   Blog Layout
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background-color: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-lg);
}

.blog-img-wrapper {
    height: 220px;
    overflow: hidden;
    border-bottom: 2px solid var(--primary-gold);
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.08);
}

.blog-card-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--primary-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.blog-card h3 {
    font-size: 1.25rem;
    color: var(--primary-purple);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.blog-card p {
    font-size: 0.92rem;
    color: var(--deep-plum);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-read-more {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary-gold);
    cursor: pointer;
    background: none;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    align-self: flex-start;
}

/* Modal Popup for Articles */
.blog-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 26, 34, 0.7);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}

.blog-modal.active {
    opacity: 1;
    pointer-events: all;
}

.blog-modal-content {
    background-color: var(--cream-bg);
    border: 2px solid var(--primary-gold);
    border-radius: 8px;
    max-width: 750px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.blog-modal.active .blog-modal-content {
    transform: translateY(0);
}

.blog-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-purple);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-modal-img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--primary-gold);
    margin: 1rem 0 1.5rem 0;
}

.blog-modal-body {
    line-height: 1.8;
}

.blog-modal-body p {
    margin-bottom: 1.2rem;
}

/* ==========================================================================
   Contact Layout
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background-color: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 1.8rem;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 1.2rem;
}

.contact-card-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(107, 30, 43, 0.08);
    color: var(--primary-gold);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.contact-card-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: var(--primary-purple);
}

.contact-card-text p {
    font-size: 0.95rem;
    color: var(--deep-plum);
}

.map-placeholder {
    height: 280px;
    background: linear-gradient(135deg, rgba(234, 220, 200, 0.6) 0%, rgba(248, 242, 232, 0.8) 100%);
    border: 2px solid var(--primary-gold);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    text-align: center;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.map-placeholder svg {
    width: 40px;
    height: 40px;
    fill: var(--primary-gold);
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
footer {
    background-color: var(--deep-plum);
    color: var(--cream-bg);
    border-top: 4px solid var(--primary-gold);
    margin-top: auto;
}

.footer-top {
    padding: 5rem 1.5rem 3rem 1.5rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 3.5rem;
}

.footer-col h3 {
    color: var(--cream-bg);
    font-size: 1.3rem;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-gold);
}

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-fast);
}

.footer-social-icon:hover {
    background-color: var(--primary-gold);
    color: var(--deep-plum);
}

.footer-links-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem 1.2rem;
}

.footer-links-list li a {
    font-size: 0.92rem;
    opacity: 0.85;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-links-list li a::before {
    content: '•';
    color: var(--primary-gold);
    font-weight: bold;
}

.footer-links-list li a:hover {
    opacity: 1;
    color: var(--primary-gold);
    transform: translateX(3px);
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-list li {
    display: flex;
    gap: 0.8rem;
    font-size: 0.92rem;
    line-height: 1.5;
    opacity: 0.85;
}

.footer-contact-list svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-gold);
    flex-shrink: 0;
}

.footer-bottom {
    background-color: #2b172f;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.75;
}

.footer-bottom a {
    color: var(--primary-gold);
    font-weight: 700;
    text-shadow: 0 0 1px rgba(184,138,74,0.3);
}

.footer-bottom a:hover {
    text-decoration: underline;
    color: #e5b974;
}

/* ==========================================================================
   Sticky Navigation Bar / Call CTAs (Mobile Specific)
   ========================================================================== */
/* Desktop Floating CTA Box */
.desktop-floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: var(--transition-normal);
    position: relative;
}

.floating-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.4;
}

.floating-btn:hover {
    transform: scale(1.08) translateY(-3px);
}

.floating-whatsapp {
    background-color: #25D366;
    color: var(--white) !important;
}

.floating-whatsapp::after {
    box-shadow: 0 0 0 12px #25D366;
    animation: pulseGlow 2s infinite;
}

.floating-phone {
    background-color: var(--primary-purple);
    border: 2px solid var(--primary-gold);
    color: var(--cream-bg) !important;
}

.floating-phone::after {
    box-shadow: 0 0 0 12px var(--primary-gold);
    animation: pulseGlow 2s infinite;
}

.floating-btn svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

/* Tooltips */
.floating-tooltip {
    position: absolute;
    right: 70px;
    background-color: var(--primary-purple);
    color: var(--cream-bg);
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid var(--primary-gold);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(10px);
    pointer-events: none;
    box-shadow: var(--shadow-md);
}

.floating-btn:hover .floating-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.9);
        opacity: 0.4;
    }
    50% {
        opacity: 0.1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Mobile Sticky Bottom CTA Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: var(--white);
    box-shadow: 0 -4px 15px rgba(0,0,0,0.15);
    z-index: 1000;
    border-top: 2px solid var(--primary-gold);
}

.mobile-sticky-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

.mobile-sticky-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-sticky-call {
    background-color: var(--primary-purple);
    color: var(--cream-bg);
}

.mobile-sticky-whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.mobile-sticky-item svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Spacer for mobile body bottom padding to avoid blocking footer content */
.body-bottom-spacer {
    display: none;
    height: 60px;
}

/* ==========================================================================
   Solutions Grid & Cards
   ========================================================================== */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}
/* Redesigned Solutions Section */
.solutions-section-redesign {
    padding: 5rem 1.5rem;
    background: linear-gradient(180deg, var(--midnight-teal) 0%, #030a0d 100%);
    border-bottom: 2px solid var(--primary-gold);
    color: var(--white);
}

.solutions-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.8rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sol-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.sol-glass-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.sol-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.08);
    border: 1.5px solid var(--primary-gold);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.sol-glass-card:hover .sol-icon-wrapper {
    background-color: var(--primary-gold);
    color: var(--midnight-teal);
    transform: scale(1.08) rotate(10deg);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.sol-svg-icon {
    width: 28px;
    height: 28px;
    fill: currentColor;
    stroke: currentColor;
}

/* Ensure fill or stroke are respected depending on svg */
.sol-svg-icon[fill="none"] {
    fill: none !important;
}

.sol-text-block h3 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    color: var(--white);
    font-family: var(--font-headings);
}

.sol-glass-card:hover .sol-text-block h3 {
    color: var(--primary-gold);
}

.sol-text-block p {
    font-size: 0.88rem;
    color: rgba(248, 246, 242, 0.8);
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-trust-tags {
        justify-content: center;
    }

    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .why-choose-image {
        max-width: 550px;
        margin: 0 auto;
    }
    
    .split-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .split-layout-equal {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .sticky-sidebar {
        position: static;
        max-width: 550px;
        margin: 0 auto;
        width: 100%;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3.5rem 1rem;
    }
    
    .zodiac-selector-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .nav-container {
        padding: 0.8rem 1rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .page-banner h1 {
        font-size: 2.2rem;
    }
    
    /* Show mobile sticky bottom, hide desktop floating */
    .desktop-floating-cta {
        display: none;
    }
    
    .mobile-sticky-bar {
        display: block;
    }
    
    .body-bottom-spacer {
        display: block;
    }
    
    /* Header menu mobile layout */
    .mobile-toggle {
        display: block;
        position: relative;
        z-index: 1001; /* Ensure hamburger/X is always on top of drawer */
    }
    
    .desktop-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--cream-bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 3rem 2rem;
        gap: 1.2rem;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
        border-left: 2px solid var(--primary-gold);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
        display: flex;
    }
    
    .desktop-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.05rem;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
        color: var(--midnight-teal); /* Dark color for mobile drawer readability */
    }

    .nav-link::after {
        display: none; /* Hide hover line effect on mobile */
    }
    
    .nav-dropdown {
        width: 100%;
    }
    
    .dropdown-menu-list {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(212, 175, 55, 0.05);
        border: none;
        border-left: 2px solid var(--primary-gold);
        padding: 0.5rem 0 0.5rem 1rem;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        display: none;
        z-index: auto;
    }
    
    .nav-dropdown.open .dropdown-menu-list {
        display: block;
    }
    
    .dropdown-menu-list li a {
        padding: 0.5rem 0;
        font-size: 0.95rem;
        border-bottom: none;
    }
    
    .dropdown-menu-list li a:hover {
        padding-left: 0.5rem;
        background-color: transparent;
    }
    
    .nav-cta {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-logo-container {
        width: 250px;
        height: 250px;
        padding: 1.8rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .testimonial-bubble {
        padding: 1.8rem;
    }
}

/* ==========================================================================
   UI/UX Polish Accents
   ========================================================================== */

/* Floating WhatsApp Widget */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white) !important;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), 0 0 0 0px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}
.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}
.whatsapp-float:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Tooltip */
.whatsapp-float-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--primary-purple);
    color: var(--cream-bg);
    padding: 0.5rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid var(--primary-gold);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(10px);
    pointer-events: none;
    box-shadow: var(--shadow-md);
}
.whatsapp-float:hover .whatsapp-float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Animations */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), 0 0 0 0px rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), 0 0 0 0px rgba(37, 211, 102, 0);
    }
}

/* Hide on mobile since there is already a sticky bar */
@media (max-width: 768px) {
    .whatsapp-float {
        display: none !important;
    }
}
