/* 
   Astrologer Molana Azmatullah Khan Ji - Style Customizations
   Aesthetics: Premium, Modern, Islamic/Spiritual, Mobile-First
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400&display=swap');

:root {
    /* Main Accent Colors */
    --primary-green: #108a47;         /* Emerald Green accent */
    --primary-green-dark: #02120a;    /* Deep Forest Green (main dark container background) */
    --primary-green-light: #16b05c;   /* Vibrant light green for hover states */
    
    --gold: #FFD454;                  /* Main gold for active items, buttons, etc. */
    --gold-dark: #E6B828;             /* Rich dark gold for text and border highlights */
    --gold-light: #FFE896;            /* Light gold for subtext/floating card highlights */
    
    /* Background Colors for Dark Theme */
    --white: #06341d;                 /* Card background (deep forest green) */
    --off-white: #031c10e3;             /* Deepest dark green for main page background */
    --soft-lavender: #052d19;         /* Lighter alternate dark green for section background */
    --light-green-bg: #032414;        /* Medium dark green for alternate section backgrounds */
    
    /* Text Colors for Dark Theme */
    --text-dark: #ECF7F0;             /* Light off-white with green tint for high contrast readability */
    --text-muted: #95B0A1;            /* Muted gray-green for subtext and descriptions */
    
    /* Pure Colors */
    --pure-white: #FFFFFF;
    
    /* Borders and Shadows */
    --border-light: rgba(255, 212, 84, 0.15); /* Luxury semi-transparent gold borders instead of green borders */
    --gold-glow: rgba(255, 212, 84, 0.2);
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.45);
    --shadow-hover: 0 15px 35px rgba(255, 212, 84, 0.08);
}

/* Global Reset & Base */
html, body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--off-white);
    overflow-x: hidden;
    scroll-behavior: smooth;
    line-height: 1.6;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

p {
    font-family: 'Inter', sans-serif;
}

/* Override Bootstrap classes to fit the luxury dark emerald theme */
.text-muted, 
.text-black-50 {
    color: var(--text-muted) !important;
}

.text-dark, 
.text-black {
    color: var(--text-dark) !important;
}

.text-secondary {
    color: var(--text-muted) !important;
}

.bg-light {
    background-color: var(--light-green-bg) !important;
}

.bg-white {
    background-color: var(--white) !important;
}

/* Card paragraph readability boost */
.service-desc, 
.solution-body, 
.choose-text p, 
.stat-label, 
.hero-desc {
    color: #b9d7c7 !important;
}

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

/* Typography Helpers */
.font-serif {
    font-family: 'Playfair Display', serif;
}
.font-sans {
    font-family: 'Inter', sans-serif;
}
.text-gold {
    color: var(--gold) !important;
}

/* Background Patterns & Overlays */
.bg-islamic-pattern {
    background-image: radial-gradient(var(--border-light) 1px, transparent 1px), 
                      radial-gradient(var(--border-light) 1px, transparent 1px);
    background-size: 24px 24px;
    background-position: 0 0, 12px 12px;
}

.bg-green-gradient {
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 100%);
    position: relative;
    overflow: hidden;
}

.bg-green-gradient::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 212, 84, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

/* Sticky Header Customization */
.navbar-custom {
    background-color: rgba(2, 18, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    padding: 12px 0;
    top: 35px !important;
}

.navbar-custom.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-subtle);
}

.navbar-toggler {
    color: var(--gold) !important;
    border-color: var(--border-light) !important;
}

.navbar-toggler-icon {
    filter: invert(82%) sepia(50%) saturate(712%) hue-rotate(345deg) brightness(103%) contrast(101%);
}

/* Top Marquee Bar Styles */
.top-marquee-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 35px;
    background-color: var(--primary-green-dark);
    color: var(--gold);
    z-index: 1050;
    overflow: hidden;
    display: flex;
    align-items: center;
}

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

.marquee-content span {
    padding-right: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--gold);
}

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

/* Sub-Navbar Strip */
.sub-nav-strip {
    display: none; /* Hidden by default (desktop) */
    position: fixed;
    top: 107px !important; /* 35px marquee + 72px navbar */
    left: 0;
    width: 100%;
    background: linear-gradient(to right, var(--off-white), var(--white), var(--off-white));
    border-bottom: 2px solid var(--gold-dark);
    z-index: 1040;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: var(--transition-smooth);
}

.sub-nav-strip.scrolled {
    top: 99px !important; /* 35px marquee + 64px scrolled navbar */
}

.phone-color-change {
    animation: phone-color-glow 3s infinite;
}

@keyframes phone-color-glow {
    0% { color: #FF3B30; } /* Red */
    25% { color: #FF9500; } /* Orange */
    50% { color: #E0A900; } /* Gold */
    75% { color: #FF3B30; } /* Red */
    100% { color: #FF3B30; }
}

.blinking-star {
    animation: star-blink 0.8s infinite alternate;
    display: inline-block;
    font-size: 0.95rem;
}

@keyframes star-blink {
    0% { opacity: 0.3; transform: scale(0.85); }
    100% { opacity: 1; transform: scale(1.15); }
}

@media (max-width: 575px) {
    .sub-nav-strip .phone-color-change {
        font-size: 1.8rem !important;
    }
    .sub-nav-strip .blinking-star {
        font-size: 1.3rem !important;
    }
}

.navbar-brand-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--gold);
    font-size: 1.4rem;
}

.navbar-brand-subtitle {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.nav-link-custom {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--text-dark) !important;
    font-size: 0.95rem;
    margin: 0 10px;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link-custom:hover, 
.nav-link-custom.active {
    color: var(--gold) !important;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition-smooth);
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
    width: 100%;
}

/* Custom Buttons */
.btn-gold {
    background-color: var(--gold);
    color: var(--primary-green-dark);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    border: 1px solid var(--gold-dark);
    padding: 10px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 15px var(--gold-glow);
    transition: var(--transition-smooth);
}

.btn-gold:hover {
    background-color: var(--gold-dark);
    color: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(223, 175, 32, 0.4);
}

.btn-green {
    background-color: var(--primary-green);
    color: var(--pure-white);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    border: 1px solid var(--primary-green-dark);
    padding: 10px 24px;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.btn-green:hover {
    background-color: var(--primary-green-dark);
    color: var(--pure-white);
    transform: translateY(-2px);
}

.btn-outline-green {
    background-color: var(--primary-green);
    color: var(--pure-white);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    border: 2px solid var(--primary-green);
    padding: 8px 24px;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.btn-outline-green:hover {
    background-color: var(--primary-green-dark);
    color: var(--pure-white);
    transform: translateY(-2px);
    border: 2px solid var(--primary-green);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--pure-white) !important;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition-smooth);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background-color: #20ba59;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Hero Section */
.hero-wrapper {
    padding: 220px 0 100px 0;
    background-color: var(--light-green-bg);
    position: relative;
    overflow: hidden;
}

.hero-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--off-white), transparent);
}

.hero-badge {
    background-color: rgba(255, 212, 84, 0.1);
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-block;
    border: 1px solid var(--border-light);
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.hero-image-container {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 4px solid var(--gold);
    height: 500px;
}

.hero-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.hero-image-wrapper img.active {
    opacity: 1;
    z-index: 2;
}

.hero-image-wrapper:hover img.active {
    transform: scale(1.03);
}

.hero-floating-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--white);
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-hover);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    animation: float 4s ease-in-out infinite;
    border-left: 4px solid var(--gold);
}

.hero-floating-card-2 {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-hover);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    animation: float 4.5s ease-in-out infinite alternate;
    border-left: 4px solid var(--primary-green);
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.bg-gold-light {
    background-color: var(--gold-light) !important;
}

.text-gold-dark {
    color: var(--gold-dark) !important;
}

/* Trust Bar / Benefits Strip */
.trust-strip {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.trust-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
    border: 1.5px solid var(--gold);
    height: 100%;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold-dark);
}

.trust-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(255, 212, 84, 0.15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.trust-card h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* General Section Styles */
.section-padding {
    padding: 100px 0;
}

.section-title-area {
    margin-bottom: 60px;
}

.section-eyebrow {
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

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

/* Stats / Counters */
.stat-box {
    padding: 20px;
    text-align: center;
    border-right: 1px solid var(--border-light);
}

.stat-box:last-child {
    border-right: none;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 3.5rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Services Grid & Cards */
.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--border-light);
    height: 100%;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.service-img-wrapper {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: 15px; right: 15px;
    background-color: var(--gold);
    color: var(--primary-green-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 50px;
    box-shadow: var(--shadow-subtle);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-content {
    padding: 24px;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    height: 72px; /* Ensure 3 lines of text alignment */
    overflow: hidden;
}

/* Featured CTA Banner */
.cta-banner {
    border-radius: 24px;
    padding: 60px 40px;
    position: relative;
    z-index: 1;
}

.cta-banner-content h2 {
    color: var(--pure-white);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-banner-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

/* Solutions Section */
.solution-card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border-light);
    padding: 30px 24px;
    height: 100%;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-subtle);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.solution-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 212, 84, 0.15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.solution-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0;
    color: var(--gold);
}

.solution-body {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

/* Why Choose Us Icons list */
.choose-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.choose-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 212, 84, 0.15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.choose-text h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.choose-text p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 0;
}

/* Testimonial Carousel overrides */
.testimonial-carousel-container {
    background-color: var(--soft-lavender);
    padding: 100px 0;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--border-light);
    height: 100%;
}

.testimonial-rating {
    color: var(--gold-dark);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.5;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.testimonial-tag {
    font-size: 0.78rem;
    color: var(--gold-dark) !important;
    background-color: rgba(255, 212, 84, 0.12);
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.testimonial-track > div {
    flex: 0 0 auto !important;
}

.carousel-dots-custom .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 212, 84, 0.2);
    border: none;
    padding: 0;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.carousel-dots-custom .dot.active {
    background-color: var(--gold);
    transform: scale(1.3);
}

.carousel-control-prev-custom,
.carousel-control-next-custom {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--gold);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
}

.carousel-control-prev-custom:hover,
.carousel-control-next-custom:hover {
    background-color: var(--gold);
    color: var(--primary-green-dark);
}

/* FAQ Accordion overrides */
.faq-accordion .accordion-item {
    border: 1px solid var(--border-light) !important;
    border-radius: 12px !important;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
}

.faq-accordion .accordion-button {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--text-dark) !important;
    background-color: var(--white) !important;
    padding: 20px 24px;
    font-size: 1.05rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: var(--light-green-bg) !important;
    color: var(--gold) !important;
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFD454'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: var(--border-light) !important;
}

.faq-accordion .accordion-body {
    padding: 24px;
    color: var(--text-muted);
    font-size: 0.98rem;
    background-color: var(--white);
    border-top: 1px solid var(--border-light);
}

/* Contact / Consultation Form */
.contact-section-wrapper {
    background-color: var(--light-green-bg);
    position: relative;
    overflow: hidden;
}

.contact-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-light);
}

.form-label-custom {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-control-custom {
    background-color: var(--off-white);
    color: var(--text-dark);
    border-radius: 10px;
    border: 1px solid var(--border-light);
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control-custom:focus,
.form-select.form-control-custom:focus {
    background-color: var(--off-white);
    color: var(--text-dark);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
    outline: none;
}

.form-control-custom::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.form-select.form-control-custom {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23FFD454' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.privacy-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 15px;
}

/* Footer Section */
.footer-wrapper {
    background-color: var(--primary-green-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px 0;
    font-size: 0.95rem;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    color: var(--pure-white);
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.footer-section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--pure-white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.whatsapp-icon-btn {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    position: relative;
    transition: var(--transition-smooth);
}

.whatsapp-icon-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25D366;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.7;
    animation: pulse 2s infinite;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-green-dark);
    color: var(--pure-white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-subtle);
}

.whatsapp-icon-btn:hover {
    transform: scale(1.08);
}

.whatsapp-icon-btn:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Floating Call Button */
.floating-call {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
}

.call-icon-btn {
    width: 60px;
    height: 60px;
    background-color: #0078FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(0, 120, 255, 0.25);
    text-decoration: none;
    position: relative;
    transition: var(--transition-smooth);
}

.call-icon-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #0078FF;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.7;
    animation: pulse-blue 2s infinite;
}

.call-tooltip {
    position: absolute;
    left: 75px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-green-dark);
    color: var(--pure-white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-subtle);
}

.call-icon-btn:hover {
    transform: scale(1.08);
    color: var(--pure-white);
    background-color: #005FD1;
}

.call-icon-btn:hover .call-tooltip {
    opacity: 1;
}

@keyframes pulse-blue {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .sub-nav-strip {
        display: block;
        position: relative;
        top: 0 !important;
        margin-top: 107px;
        z-index: 10;
        box-shadow: none;
    }
    .hero-wrapper {
        padding: 20px 0 80px 0 !important;
    }
    .hero-image-wrapper {
        height: 400px;
    }
    .stat-box {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        padding-bottom: 25px;
        margin-bottom: 25px;
    }
    .stat-box:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .hero-floating-card {
        left: 10px;
    }
    .hero-floating-card-2 {
        right: 10px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-image-wrapper {
        height: 300px;
    }
    .trust-strip {
        margin-top: 0;
        padding-top: 40px;
    }
    .navbar-brand-title {
        font-size: 1.1rem;
    }
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-icon-btn {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    .floating-call {
        bottom: 20px;
        left: 20px;
    }
    .call-icon-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    /* Hero Floating Cards mobile sizing */
    .hero-floating-card {
        padding: 8px 12px !important;
        border-radius: 10px !important;
        bottom: 20px !important;
        left: 5px !important;
    }
    .hero-floating-card .trust-icon-box {
        width: 32px !important;
        height: 32px !important;
        font-size: 1rem !important;
        border-radius: 8px !important;
    }
    .hero-floating-card h6 {
        font-size: 0.75rem !important;
    }
    .hero-floating-card p {
        font-size: 0.65rem !important;
    }
    
    .hero-floating-card-2 {
        padding: 6px 12px !important;
        border-radius: 10px !important;
        top: 20px !important;
        right: 5px !important;
    }
    .hero-floating-card-2 i {
        font-size: 0.9rem !important;
    }
    .hero-floating-card-2 h6 {
        font-size: 0.7rem !important;
    }
}

/* Animation Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Reduced Motion Compatibility */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .whatsapp-icon-btn::before, 
    .call-icon-btn::before,
    .hero-floating-card, 
    .hero-floating-card-2 {
        animation: none !important;
    }
    html {
        scroll-behavior: auto !important;
    }
}

/* Override Bootstrap white border to gold for luxury aesthetic */
.border-white {
    border-color: var(--gold) !important;
}
