/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-darkest: #01140b;
    --bg-darker: #022012;
    --bg-dark: #042e1b;
    --bg-light-dark: #064026;
    
    --gold-primary: #d4af37;
    --gold-light: #f3e5ab;
    --gold-dark: #aa8010;
    --gold-gradient: linear-gradient(135deg, #f3e5ab 0%, #d4af37 50%, #aa8010 100%);
    --gold-border: rgba(197, 160, 89, 0.25);
    
    --text-white: #ffffff;
    --text-muted: #a4d9b9;
    --text-dark: #222222;
    
    --wa-green: #25d366;
    --wa-green-hover: #20ba5a;
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', Helvetica, Arial, sans-serif;
    
    /* Layout */
    --container-width: 1240px;
    --header-height: 80px;
    --border-radius: 12px;
    --transition-speed: 0.3s;
    
    /* Shadows & Effects */
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.2);
    --backdrop-blur: blur(12px);
}

/* ==========================================================================
   RESET & BASICS
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-darkest);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: clip;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
    transition: all var(--transition-speed) ease;
}

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

ul {
    list-style: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darkest);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* Common Section Container */
.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

.section-tag-left {
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.header-divider {
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 0 auto 20px;
    position: relative;
    border-radius: 2px;
}

.header-divider::before {
    content: '\f14a'; /* Star & Crescent icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-darkest);
    padding: 0 10px;
    color: var(--gold-primary);
    font-size: 0.9rem;
}

.header-divider-left {
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 0 0 20px 0;
    position: relative;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.85; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulseGlowGold {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

.pulse-icon {
    animation: pulse 2s infinite ease-in-out;
}

/* ==========================================================================
   0. TOP BLINKER BAR (Above Top Bar)
   ========================================================================== */
.top-blinker {
    background: var(--gold-primary);
    padding: 10px 20px;
    text-align: center;
    position: relative;
    z-index: 1002;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@keyframes blinkerPulse {
    0%   { opacity: 1; transform: scale(1); }
    50%  { opacity: 0.25; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

.top-blinker-content {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    color: var(--bg-darkest);
    animation: blinkerPulse 0.6s ease-in-out infinite;
}

.blinker-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blinker-flag {
    display: inline-block;
    width: 28px;
    height: 20px;
    object-fit: cover;
    border-radius: 3px;
    vertical-align: middle;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.15);
}

/* Mobile Responsiveness for Blinker */
@media (max-width: 768px) {
    .top-blinker {
        padding: 8px 12px;
    }
    .top-blinker-content {
        font-size: 0.85rem;
        gap: 8px 12px;
        letter-spacing: 1px;
    }
    .top-blinker-content .blinker-item:first-child {
        flex-basis: 100%;
        margin-bottom: 4px;
        justify-content: center;
    }
    .blinker-flag {
        width: 30px;
        height: 20px;
    }
}

/* ==========================================================================
   1. TOP BAR
   ========================================================================== */
.top-bar {
    background-color: var(--bg-darkest);
    border-bottom: 1px solid var(--gold-border);
    font-size: 0.85rem;
    padding: 10px 0;
    position: relative;
    z-index: 1001;
}

.top-bar-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.top-contact, .top-email {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-contact a, .top-email a {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-contact a:hover, .top-email a:hover {
    color: var(--gold-primary);
}

.top-contact i {
    color: var(--gold-primary);
}

.top-announcement {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-border);
    padding: 4px 15px;
    border-radius: 20px;
    color: var(--gold-light);
}

.live-indicator {
    width: 10px;
    height: 10px;
    background-color: #ff3b30;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7);
    animation: livePulse 1.2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes livePulse {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(255, 59, 48, 0);
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0);
    }
}

/* ==========================================================================
   2. STICKY HEADER & NAVBAR
   ========================================================================== */
.main-header {
    background-color: rgba(2, 32, 18, 0.85);
    backdrop-filter: var(--backdrop-blur);
    border-bottom: 1px solid var(--gold-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    background-color: var(--bg-darkest);
    box-shadow: var(--shadow-premium);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

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

.logo-circle {
    width: 45px;
    height: 45px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-darkest);
    font-size: 1.4rem;
    box-shadow: var(--shadow-glow);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--gold-primary);
    letter-spacing: 0.5px;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.google-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.google-badge .stars {
    color: var(--gold-primary);
    font-size: 0.8rem;
}

.google-badge .review-text {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.cta-btn-header {
    background: var(--gold-gradient);
    color: var(--bg-darkest);
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-glow);
    animation: pulseGlowGold 2.5s infinite;
}

.cta-btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
    color: var(--bg-darkest);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--gold-primary);
}

.top-marquee-bar {
    background: var(--gold-gradient);
    color: var(--bg-darkest);
    padding: 8px 0;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    border-top: 1px solid rgba(0,0,0,0.1);
    overflow: hidden;
}

.top-marquee-track {
    display: flex;
    width: max-content;
    animation: topMarqueeScroll 18s linear infinite;
}

.top-marquee-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 0 20px;
}

@keyframes topMarqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 6px;
    vertical-align: middle;
}

.marquee-flag {
    display: inline-block;
    width: 28px;
    height: 20px;
    object-fit: cover;
    border-radius: 3px;
    vertical-align: middle;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    border: 1px solid rgba(0,0,0,0.15);
}

/* ==========================================================================
   3. HERO SECTION (Autoplay Image Slider)
   ========================================================================== */
.hero-section {
    position: relative;
    height: calc(100vh - var(--header-height) - 40px);
    min-height: 580px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
    transform: translateY(20px);
    transition: transform 1s ease-in-out;
}

.hero-slide.active .hero-content {
    transform: translateY(0);
}

.hero-badge {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold-primary);
    color: var(--gold-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 20px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 25px;
    font-size: 0.85rem;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    color: var(--text-white);
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-features span {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-white);
}

.hero-features i {
    color: var(--gold-primary);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 15px 35px;
    border-radius: 35px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-premium);
}

.hero-btn.wa-btn {
    background-color: var(--wa-green);
    color: var(--text-white);
    animation: pulseGlow 2s infinite;
}

.hero-btn.wa-btn:hover {
    background-color: var(--wa-green-hover);
    transform: translateY(-2px);
}

.hero-btn.phone-btn {
    background: var(--gold-gradient);
    color: var(--bg-darkest);
    animation: pulseGlowGold 2.5s infinite;
}

.hero-btn.phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 1px solid var(--gold-border);
    border-radius: 50%;
    background: rgba(2, 32, 18, 0.6);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 10;
    backdrop-filter: var(--backdrop-blur);
}

.slider-arrow:hover {
    background: var(--gold-gradient);
    color: var(--bg-darkest);
    border-color: transparent;
}

.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }

.slider-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: var(--gold-primary);
    transform: scale(1.25);
    box-shadow: var(--shadow-glow);
}

/* Hero Marquee Ticker */
.hero-marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--gold-gradient);
    color: var(--bg-darkest);
    padding: 12px 0;
    overflow: hidden;
    z-index: 5;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
    gap: 60px;
}

.marquee-content span {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .marquee-content {
        animation-duration: 12s;
    }
}

/* ==========================================================================
   4. AWARDS & CERTIFICATES SECTION
   ========================================================================== */
.awards-section {
    background-color: var(--bg-darker);
    border-bottom: 1px solid var(--gold-border);
    position: relative;
}

.awards-slider-wrapper {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.awards-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.award-slide {
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 15px;
}

/* Certificate Visual Design */
.cert-img-card {
    width: 100%;
    max-width: 700px;
    background: #fbfbf8;
    padding: 10px;
    box-shadow: var(--shadow-premium), 0 20px 40px rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    position: relative;
    border: 2px solid var(--gold-primary);
    margin: 0 auto;
}

.cert-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.awards-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.award-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.award-dot.active {
    background: var(--gold-primary);
    transform: scale(1.2);
}

.awards-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--gold-border);
    background: rgba(4, 46, 27, 0.6);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: var(--backdrop-blur);
}

.awards-arrow:hover {
    background: var(--gold-gradient);
    color: var(--bg-darkest);
    border-color: transparent;
}

.awards-arrow.prev { left: -60px; }
.awards-arrow.next { right: -60px; }

/* ==========================================================================
   5. SOLUTIONS SECTION (Services Grid)
   ========================================================================== */
.solutions-section {
    background-color: var(--bg-darkest);
    border-bottom: 1px solid var(--gold-border);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-dark);
    border: 1px solid var(--gold-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.5);
}

.service-image-placeholder {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-badges {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
}

.badge-astro {
    background-color: var(--gold-primary);
    color: var(--bg-darkest);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.badge-results {
    background-color: #ff3b30;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-icon {
    font-size: 1.25rem;
}

.service-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-chat-btn {
    background-color: var(--wa-green);
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: var(--border-radius);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color var(--transition-speed) ease;
}

.service-chat-btn:hover {
    background-color: var(--wa-green-hover);
    box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   6. ABOUT SECTION (Muslim Astrologer Profile)
   ========================================================================== */
.about-section {
    background-color: var(--bg-darker);
    border-bottom: 1px solid var(--gold-border);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-graphic-area {
    display: flex;
    justify-content: center;
}

.about-frame {
    position: relative;
    border-radius: 50% 50% 0 0; /* Arched style */
    border: 5px solid var(--gold-primary);
    padding: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    max-width: 420px;
    background: var(--bg-darkest);
}

.about-img {
    border-radius: 50% 50% 0 0;
    display: block;
    width: 100%;
    height: 480px;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.05);
}

.about-overlay-badge {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(2, 32, 18, 0.9);
    backdrop-filter: var(--backdrop-blur);
    border: 1px solid var(--gold-primary);
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    color: var(--gold-light);
    font-size: 0.9rem;
    font-weight: 600;
}

.about-overlay-badge i {
    color: var(--gold-primary);
}

.about-content-area h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.about-intro {
    font-size: 1.15rem;
    color: var(--gold-light);
    margin-bottom: 15px;
    font-weight: 500;
}

.about-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

/* Accordion Component */
.about-accordion {
    margin-bottom: 35px;
}

.accordion-item {
    border-bottom: 1px solid var(--gold-border);
    margin-bottom: 10px;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    text-align: left;
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.05rem;
}

.accordion-header span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.accordion-header i.fa-star-and-crescent {
    color: var(--gold-primary);
}

.accordion-header .arrow {
    color: var(--gold-primary);
    transition: transform var(--transition-speed) ease;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.accordion-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    padding-bottom: 15px;
    line-height: 1.6;
}

.accordion-item.active .accordion-body {
    max-height: 1000px;
    transition: max-height 1s ease-in-out;
}

.accordion-item.active .arrow {
    transform: rotate(180deg);
}

.about-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.about-btn {
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.about-btn.wa {
    background-color: var(--wa-green);
    color: white;
}

.about-btn.wa:hover {
    background-color: var(--wa-green-hover);
}

.about-btn.call {
    background: var(--gold-gradient);
    color: var(--bg-darkest);
}

.about-btn.call:hover {
    box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   7. INTERACTIVE STATS COUNTERS
   ========================================================================== */
.stats-section {
    background: linear-gradient(rgba(4, 43, 26, 0.9), rgba(2, 29, 17, 0.95)),
                url('../images/WhatsApp%20Image%202026-06-07%20at%2019.29.14.jpeg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    border-bottom: 1px solid var(--gold-border);
    position: relative;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-icon-wrap {
    font-size: 2.8rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.stat-number::after {
    content: '+';
    color: var(--gold-primary);
}

.stat-label {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   8. MID-PAGE CTA BANNER (Stop Dispute)
   ========================================================================== */
.mid-cta-section {
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--gold-border);
}

.mid-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.mandala-frame {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}

.mandala-img {
    border-radius: 50%;
    border: 5px solid var(--gold-primary);
    width: 320px;
    height: 320px;
    object-fit: cover;
    z-index: 2;
    position: relative;
}

.mandala-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    background-image: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 3s infinite ease-in-out;
}

.mid-cta-right {
    color: var(--text-white);
}

.cta-tag {
    color: var(--gold-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.mid-cta-right h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--text-white);
    margin-bottom: 5px;
    line-height: 1.15;
}

.cta-name {
    color: var(--gold-primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-text {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-actions-row {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.phone-link-cta {
    background: var(--gold-gradient);
    color: var(--bg-darkest);
    font-size: 1.15rem;
    font-weight: 800;
    padding: 15px 30px;
    border-radius: 35px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-glow);
}

.whatsapp-btn-cta {
    background-color: var(--wa-green);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 35px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-btn-cta:hover {
    background-color: var(--wa-green-hover);
}

/* ==========================================================================
   9. ADDITIONAL INSTANT SOLUTIONS
   ========================================================================== */
.additional-solutions {
    background-color: var(--bg-darkest);
    border-bottom: 1px solid var(--gold-border);
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.addon-card {
    background-color: var(--bg-darker);
    border: 1px solid var(--gold-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all var(--transition-speed) ease;
}

.addon-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
}

.addon-img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.addon-content {
    padding: 25px;
}

.addon-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold-primary);
    margin-bottom: 12px;
}

.addon-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.addon-btn {
    background: transparent;
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.addon-btn:hover {
    background: var(--gold-gradient);
    color: var(--bg-darkest);
    border-color: transparent;
}

/* ==========================================================================
   10. TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    background-color: var(--bg-darker);
    border-bottom: 1px solid var(--gold-border);
}

.testimonial-slider-container {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-slider {
    position: relative;
    height: 280px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-card {
    background-color: var(--bg-dark);
    border: 1px solid var(--gold-border);
    border-radius: var(--border-radius);
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-premium);
    text-align: center;
}

.quote-icon {
    font-size: 2.2rem;
    color: rgba(212, 175, 55, 0.2);
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-white);
    line-height: 1.7;
    margin-bottom: 25px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--bg-darkest);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.user-info {
    text-align: left;
}

.user-info h4 {
    color: var(--gold-primary);
    font-size: 1.05rem;
    font-weight: 600;
}

.user-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.t-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.t-dot.active {
    background: var(--gold-primary);
    transform: scale(1.2);
}

/* ==========================================================================
   11. CONTACT INFO & FORM SECTION
   ========================================================================== */
.contact-section {
    background-color: var(--bg-darkest);
    border-bottom: 1px solid var(--gold-border);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background-color: var(--bg-darker);
    border: 1px solid var(--gold-border);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all var(--transition-speed) ease;
}

.contact-info-card:hover {
    transform: translateX(8px);
    border-color: rgba(212, 175, 55, 0.4);
    background-color: var(--bg-dark);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    border: 1px solid var(--gold-border);
    flex-shrink: 0;
}

.card-body h3 {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 4px;
}

.card-body p {
    color: var(--gold-light);
    font-weight: 600;
    font-size: 1rem;
    word-break: break-all;
}

.card-action {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Form Styling */
.contact-form-container {
    background-color: var(--bg-darker);
    border: 1px solid var(--gold-border);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-premium);
}

.contact-form-container h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.contact-form-container p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--gold-light);
    font-weight: 500;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background-color: rgba(1, 20, 11, 0.5);
    border: 1px solid var(--gold-border);
    border-radius: 6px;
    padding: 12px 15px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition-speed) ease;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.form-group select option {
    background-color: var(--bg-darker);
    color: var(--text-white);
}

.submit-btn {
    background-color: var(--wa-green);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color var(--transition-speed) ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.submit-btn:hover {
    background-color: var(--wa-green-hover);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   12. FOOTER
   ========================================================================== */
.footer-bottom {
    background-color: #010c07;
    border-top: 1px solid var(--gold-border);
    padding: 40px 20px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: rgba(164, 217, 185, 0.5);
    max-width: 800px;
    margin: 0 auto;
}

/* ==========================================================================
   13. STICKY MOBILE CTA FLOATING BAR
   ========================================================================== */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: none;
    z-index: 999;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
}

.sticky-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: white;
    gap: 8px;
}

.sticky-action.call-action {
    background: var(--gold-gradient);
    color: var(--bg-darkest);
}

.sticky-action.whatsapp-action {
    background-color: var(--wa-green);
}

/* ==========================================================================
   MEDIA QUERIES (Responsiveness)
   ========================================================================== */

/* Up to 1100px: Medium Screens / Tablets */
@media (max-width: 1100px) {
    .about-grid, .mid-cta-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-graphic-area, .mid-cta-left {
        order: -1;
    }
    
    .about-img {
        max-height: 400px;
    }

    .awards-arrow.prev { left: -20px; }
    .awards-arrow.next { right: -20px; }
}

/* Up to 991px: Small Tablets / Large Mobile */
@media (max-width: 991px) {
    .top-bar-container {
        justify-content: center;
        flex-direction: column;
        padding: 8px;
        gap: 6px;
    }
    
    .top-bar {
        font-size: 0.8rem;
    }
    
    .top-contact, .top-email {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
        gap: 10px;
    }

    .top-announcement {
        justify-content: center;
        text-align: center;
        font-size: 0.75rem;
        padding: 3px 10px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--bg-darkest);
        flex-direction: column;
        align-items: center;
        padding-top: 40px;
        gap: 30px;
        transition: left 0.4s ease;
        border-top: 1px solid var(--gold-border);
    }
    
    .nav-links.active {
        left: 0;
    }

    .header-cta {
        display: none; /* Hide header elements for mobile menu sizing */
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Up to 768px: Mobile Devices */
@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .hero-features {
        gap: 15px;
    }
    
    .hero-features span {
        font-size: 0.85rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form-container {
        padding: 25px;
    }
    
    body {
        padding-bottom: 60px; /* Space for the sticky bar */
    }
    
    .mobile-sticky-bar {
        display: flex;
    }
    
    .slider-arrow {
        display: none; /* Hide side arrows on mobile touch */
    }

    .awards-arrow {
        display: none;
    }
    
    .testimonial-slider {
        height: 380px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
}

/* Up to 480px: Tiny Mobile Screens */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.9rem;
    }
    
    .brand-title {
        font-size: 1.1rem;
    }
    
    .brand-subtitle {
        font-size: 0.65rem;
    }
    
    .certificate-card {
        padding: 6px;
    }
    
    .cert-border {
        padding: 15px;
    }
    
    .cert-name {
        font-size: 1.6rem;
    }
    
    .cert-header h3 {
        font-size: 1.2rem;
    }
    
    .cert-footer {
        flex-direction: column;
        gap: 15px;
    }
    
    .cert-sign {
        width: 100%;
    }
    
    .testimonial-slider {
        height: 450px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
}
