/* ==========================================================================
   FMC Insurance Bazaar — Premium Custom CSS
   
   This file contains all custom styling for the FMC Insurance Bazaar website.
   Organized by component for easy maintenance.
   
   Compatible with: Elementor Free, XPro Theme Builder, XPro Addons
   No Elementor Pro dependency.
   ========================================================================== */

/* ==========================================================================
   1. STICKY FLOATING BUTTONS — WhatsApp & Call
   ========================================================================== */

/* WhatsApp Floating Button */
.fmc-whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: var(--fmc-z-floating, 1060);
    width: 60px;
    height: 60px;
    background: var(--fmc-whatsapp, #25D366);
    border-radius: var(--fmc-radius-full, 9999px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: transform var(--fmc-transition-base, 250ms ease), 
                box-shadow var(--fmc-transition-base, 250ms ease);
    text-decoration: none;
}

.fmc-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.fmc-whatsapp-float svg,
.fmc-whatsapp-float i {
    color: #FFFFFF;
    font-size: 28px;
}

/* WhatsApp pulse animation */
.fmc-whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--fmc-whatsapp, #25D366);
    animation: fmc-pulse 2s ease-in-out infinite;
    z-index: -1;
}

/* Call Floating Button */
.fmc-call-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: var(--fmc-z-floating, 1060);
    width: 60px;
    height: 60px;
    background: var(--fmc-royal-blue, #1A56DB);
    border-radius: var(--fmc-radius-full, 9999px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(26, 86, 219, 0.4);
    cursor: pointer;
    transition: transform var(--fmc-transition-base, 250ms ease), 
                box-shadow var(--fmc-transition-base, 250ms ease);
    text-decoration: none;
}

.fmc-call-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(26, 86, 219, 0.5);
}

.fmc-call-float svg,
.fmc-call-float i {
    color: #FFFFFF;
    font-size: 24px;
}

.fmc-call-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--fmc-royal-blue, #1A56DB);
    animation: fmc-pulse 2.5s ease-in-out infinite;
    z-index: -1;
}

/* Pulse keyframes */
@keyframes fmc-pulse {
    0%   { transform: scale(1); opacity: 0.7; }
    50%  { transform: scale(1.3); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

/* Mobile: Bottom bar layout */
@media (max-width: 768px) {
    .fmc-whatsapp-float,
    .fmc-call-float {
        bottom: 16px;
        width: 52px;
        height: 52px;
    }
    
    .fmc-whatsapp-float {
        right: 16px;
    }
    
    .fmc-call-float {
        left: 16px;
    }

    .fmc-whatsapp-float svg,
    .fmc-whatsapp-float i {
        font-size: 24px;
    }

    .fmc-call-float svg,
    .fmc-call-float i {
        font-size: 20px;
    }
}


/* ==========================================================================
   2. HEADER STYLES — Sticky & Glassmorphism
   ========================================================================== */

/* Top info bar */
.fmc-top-bar {
    background: var(--fmc-navy, #0A1F3F);
    color: #FFFFFF;
    font-size: 13px;
    padding: 6px 0;
    transition: transform var(--fmc-transition-smooth, 350ms cubic-bezier(0.4, 0, 0.2, 1));
}

.fmc-top-bar a {
    color: var(--fmc-gold-light, #E8D5A0);
    text-decoration: none;
}

.fmc-top-bar a:hover {
    color: var(--fmc-gold, #C8A951);
}

/* Main header */
.fmc-main-header {
    background: rgba(255, 255, 255, 0.98);
    transition: all var(--fmc-transition-smooth, 350ms cubic-bezier(0.4, 0, 0.2, 1));
    padding: 12px 0;
}

/* Scrolled state — glassmorphism */
.fmc-header-scrolled .fmc-top-bar {
    transform: translateY(-100%);
    height: 0;
    padding: 0;
    overflow: hidden;
}

.fmc-header-scrolled .fmc-main-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(10, 31, 63, 0.08);
    padding: 6px 0;
}

/* Logo shrink on scroll */
.fmc-main-header .fmc-logo img {
    max-height: 70px;
    transition: max-height var(--fmc-transition-smooth, 350ms cubic-bezier(0.4, 0, 0.2, 1));
}

.fmc-header-scrolled .fmc-main-header .fmc-logo img {
    max-height: 48px;
}

/* Navigation hover effect — underline slide-in */
.fmc-nav-menu a {
    position: relative;
    color: var(--fmc-gray-800, #1E293B);
    font-family: var(--fmc-font-body, 'Inter', sans-serif);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    transition: color var(--fmc-transition-fast, 150ms ease);
}

.fmc-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--fmc-gold, #C8A951);
    transition: width var(--fmc-transition-base, 250ms ease), 
                left var(--fmc-transition-base, 250ms ease);
}

.fmc-nav-menu a:hover::after,
.fmc-nav-menu a.active::after {
    width: 80%;
    left: 10%;
}

.fmc-nav-menu a:hover {
    color: var(--fmc-royal-blue, #1A56DB);
}

/* Active page indicator */
.fmc-nav-menu .current-menu-item > a::after {
    width: 80%;
    left: 10%;
    background: var(--fmc-gold, #C8A951);
}


/* ==========================================================================
   3. BUTTON STYLES — Premium
   ========================================================================== */

/* Primary Button — Royal Blue */
.fmc-btn-primary,
.elementor-widget-button .elementor-button.fmc-btn-primary {
    background: linear-gradient(135deg, var(--fmc-royal-blue, #1A56DB), var(--fmc-blue-light, #3B82F6)) !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: var(--fmc-radius-md, 8px) !important;
    padding: 14px 32px !important;
    font-family: var(--fmc-font-body, 'Inter', sans-serif) !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    letter-spacing: 0.3px;
    transition: all var(--fmc-transition-base, 250ms ease) !important;
    box-shadow: var(--fmc-shadow-button, 0 4px 14px rgba(26, 86, 219, 0.30)) !important;
}

.fmc-btn-primary:hover,
.elementor-widget-button .elementor-button.fmc-btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(26, 86, 219, 0.4) !important;
    background: linear-gradient(135deg, var(--fmc-blue-hover, #1E40AF), var(--fmc-royal-blue, #1A56DB)) !important;
}

/* Gold CTA Button */
.fmc-btn-gold,
.elementor-widget-button .elementor-button.fmc-btn-gold {
    background: linear-gradient(135deg, var(--fmc-gold, #C8A951), var(--fmc-gold-dark, #A68B3E)) !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: var(--fmc-radius-md, 8px) !important;
    padding: 14px 32px !important;
    font-family: var(--fmc-font-body, 'Inter', sans-serif) !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    letter-spacing: 0.3px;
    transition: all var(--fmc-transition-base, 250ms ease) !important;
    box-shadow: var(--fmc-shadow-gold, 0 4px 14px rgba(200, 169, 81, 0.30)) !important;
}

.fmc-btn-gold:hover,
.elementor-widget-button .elementor-button.fmc-btn-gold:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(200, 169, 81, 0.4) !important;
    background: linear-gradient(135deg, var(--fmc-gold-dark, #A68B3E), var(--fmc-gold, #C8A951)) !important;
}

/* Outline Button */
.fmc-btn-outline,
.elementor-widget-button .elementor-button.fmc-btn-outline {
    background: transparent !important;
    color: var(--fmc-royal-blue, #1A56DB) !important;
    border: 2px solid var(--fmc-royal-blue, #1A56DB) !important;
    border-radius: var(--fmc-radius-md, 8px) !important;
    padding: 12px 28px !important;
    font-family: var(--fmc-font-body, 'Inter', sans-serif) !important;
    font-weight: 600 !important;
    transition: all var(--fmc-transition-base, 250ms ease) !important;
}

.fmc-btn-outline:hover,
.elementor-widget-button .elementor-button.fmc-btn-outline:hover {
    background: var(--fmc-royal-blue, #1A56DB) !important;
    color: #FFFFFF !important;
    transform: translateY(-2px);
}

/* WhatsApp Button */
.fmc-btn-whatsapp,
.elementor-widget-button .elementor-button.fmc-btn-whatsapp {
    background: var(--fmc-whatsapp, #25D366) !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: var(--fmc-radius-md, 8px) !important;
    font-weight: 600 !important;
    transition: all var(--fmc-transition-base, 250ms ease) !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.30) !important;
}

.fmc-btn-whatsapp:hover,
.elementor-widget-button .elementor-button.fmc-btn-whatsapp:hover {
    background: var(--fmc-whatsapp-dark, #128C7E) !important;
    transform: translateY(-2px);
}

/* Call Now Button */
.fmc-btn-call,
.elementor-widget-button .elementor-button.fmc-btn-call {
    background: transparent !important;
    color: var(--fmc-navy, #0A1F3F) !important;
    border: 2px solid var(--fmc-navy, #0A1F3F) !important;
    border-radius: var(--fmc-radius-md, 8px) !important;
    font-weight: 600 !important;
    transition: all var(--fmc-transition-base, 250ms ease) !important;
}

.fmc-btn-call:hover,
.elementor-widget-button .elementor-button.fmc-btn-call:hover {
    background: var(--fmc-navy, #0A1F3F) !important;
    color: #FFFFFF !important;
}


/* ==========================================================================
   4. CARD STYLES — Hover Effects
   ========================================================================== */

/* Generic premium card */
.fmc-card {
    background: var(--fmc-white, #FFFFFF);
    border-radius: var(--fmc-radius-lg, 12px);
    padding: var(--fmc-space-8, 2rem);
    box-shadow: var(--fmc-shadow-card, 0 4px 20px rgba(10, 31, 63, 0.08));
    transition: transform var(--fmc-transition-smooth, 350ms cubic-bezier(0.4, 0, 0.2, 1)),
                box-shadow var(--fmc-transition-smooth, 350ms cubic-bezier(0.4, 0, 0.2, 1));
    border: 1px solid var(--fmc-gray-200, #E2E8F0);
}

.fmc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--fmc-shadow-card-hover, 0 12px 32px rgba(10, 31, 63, 0.14));
}

/* Insurance category card */
.fmc-insurance-card {
    background: var(--fmc-white, #FFFFFF);
    border-radius: var(--fmc-radius-lg, 12px);
    padding: var(--fmc-space-8, 2rem) var(--fmc-space-6, 1.5rem);
    text-align: center;
    border: 1px solid var(--fmc-gray-200, #E2E8F0);
    transition: all var(--fmc-transition-smooth, 350ms cubic-bezier(0.4, 0, 0.2, 1));
    position: relative;
    overflow: hidden;
}

.fmc-insurance-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--fmc-gold, #C8A951), var(--fmc-royal-blue, #1A56DB));
    transform: scaleX(0);
    transition: transform var(--fmc-transition-base, 250ms ease);
}

.fmc-insurance-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--fmc-shadow-card-hover, 0 12px 32px rgba(10, 31, 63, 0.14));
    border-color: var(--fmc-blue-pale, #DBEAFE);
}

.fmc-insurance-card:hover::after {
    transform: scaleX(1);
}

/* Brand card (FMC Group) */
.fmc-brand-card {
    background: var(--fmc-white, #FFFFFF);
    border-radius: var(--fmc-radius-xl, 16px);
    padding: var(--fmc-space-10, 2.5rem) var(--fmc-space-8, 2rem);
    text-align: center;
    border: 1px solid var(--fmc-gray-200, #E2E8F0);
    transition: all var(--fmc-transition-smooth, 350ms cubic-bezier(0.4, 0, 0.2, 1));
    position: relative;
}

.fmc-brand-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--fmc-shadow-xl, 0 20px 40px rgba(10, 31, 63, 0.10));
    border-color: var(--fmc-gold-light, #E8D5A0);
}

/* Partner logo card */
.fmc-partner-card {
    background: var(--fmc-white, #FFFFFF);
    border-radius: var(--fmc-radius-lg, 12px);
    padding: var(--fmc-space-6, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    border: 1px solid var(--fmc-gray-200, #E2E8F0);
    transition: all var(--fmc-transition-base, 250ms ease);
}

.fmc-partner-card:hover {
    border-color: var(--fmc-blue-pale, #DBEAFE);
    box-shadow: var(--fmc-shadow-md, 0 4px 6px rgba(10, 31, 63, 0.04));
}

.fmc-partner-card img {
    max-height: 50px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--fmc-transition-base, 250ms ease);
}

.fmc-partner-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}


/* ==========================================================================
   5. SECTION STYLES
   ========================================================================== */

/* Alternating backgrounds */
.fmc-section-white {
    background-color: var(--fmc-white, #FFFFFF);
}

.fmc-section-alt {
    background-color: var(--fmc-off-white, #F8FAFC);
}

.fmc-section-navy {
    background: linear-gradient(135deg, var(--fmc-navy, #0A1F3F), var(--fmc-navy-light, #132D54));
    color: var(--fmc-white, #FFFFFF);
}

.fmc-section-navy h2,
.fmc-section-navy h3,
.fmc-section-navy h4 {
    color: var(--fmc-white, #FFFFFF);
}

.fmc-section-navy p {
    color: var(--fmc-gray-300, #CBD5E1);
}

.fmc-section-gold {
    background: linear-gradient(135deg, var(--fmc-gold, #C8A951), var(--fmc-gold-dark, #A68B3E));
    color: var(--fmc-white, #FFFFFF);
}

.fmc-section-gold h2,
.fmc-section-gold h3,
.fmc-section-gold p {
    color: var(--fmc-white, #FFFFFF);
}

/* Blue gradient CTA section */
.fmc-section-cta {
    background: linear-gradient(135deg, var(--fmc-navy, #0A1F3F), var(--fmc-royal-blue, #1A56DB));
    color: var(--fmc-white, #FFFFFF);
}

/* Hero overlay gradient */
.fmc-hero-overlay {
    position: relative;
}

.fmc-hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 31, 63, 0.85) 0%, 
        rgba(26, 86, 219, 0.65) 50%,
        rgba(10, 31, 63, 0.75) 100%);
    z-index: 1;
}

.fmc-hero-overlay > * {
    position: relative;
    z-index: 2;
}


/* ==========================================================================
   6. ICON BOX STYLES
   ========================================================================== */

/* Icon box hover — scale + color shift */
.fmc-icon-box .elementor-icon {
    transition: all var(--fmc-transition-base, 250ms ease);
}

.fmc-icon-box:hover .elementor-icon {
    transform: scale(1.1);
}

.fmc-icon-box:hover .elementor-icon i {
    color: var(--fmc-gold, #C8A951) !important;
}

/* Step icon — numbered circle */
.fmc-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--fmc-royal-blue, #1A56DB), var(--fmc-blue-light, #3B82F6));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-family: var(--fmc-font-heading, 'Poppins', sans-serif);
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto var(--fmc-space-4, 1rem);
    box-shadow: 0 4px 14px rgba(26, 86, 219, 0.25);
}


/* ==========================================================================
   7. COUNTER / STATS STYLES
   ========================================================================== */

.fmc-counter .elementor-counter-number-wrapper {
    font-family: var(--fmc-font-heading, 'Poppins', sans-serif);
    font-weight: 700;
    font-size: 42px;
    color: var(--fmc-royal-blue, #1A56DB);
}

.fmc-counter .elementor-counter-title {
    font-family: var(--fmc-font-body, 'Inter', sans-serif);
    font-weight: 500;
    font-size: 15px;
    color: var(--fmc-gray-600, #475569);
    margin-top: var(--fmc-space-2, 0.5rem);
}

/* Gold variant for FMC Group stats */
.fmc-counter-gold .elementor-counter-number-wrapper {
    color: var(--fmc-gold, #C8A951);
}

/* White variant for dark backgrounds */
.fmc-counter-white .elementor-counter-number-wrapper {
    color: var(--fmc-white, #FFFFFF);
}

.fmc-counter-white .elementor-counter-title {
    color: var(--fmc-gray-300, #CBD5E1);
}


/* ==========================================================================
   8. TESTIMONIAL STYLES
   ========================================================================== */

.fmc-testimonial {
    background: var(--fmc-white, #FFFFFF);
    border-radius: var(--fmc-radius-lg, 12px);
    padding: var(--fmc-space-8, 2rem);
    border: 1px solid var(--fmc-gray-200, #E2E8F0);
    position: relative;
    transition: all var(--fmc-transition-smooth, 350ms cubic-bezier(0.4, 0, 0.2, 1));
}

/* Decorative quote mark */
.fmc-testimonial::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 80px;
    font-family: var(--fmc-font-heading, 'Poppins', sans-serif);
    color: var(--fmc-blue-pale, #DBEAFE);
    line-height: 1;
    pointer-events: none;
}

.fmc-testimonial:hover {
    box-shadow: var(--fmc-shadow-lg, 0 10px 25px rgba(10, 31, 63, 0.08));
    border-color: var(--fmc-blue-pale, #DBEAFE);
}


/* ==========================================================================
   9. FAQ / ACCORDION STYLES
   ========================================================================== */

.fmc-faq .elementor-accordion-item {
    border: 1px solid var(--fmc-gray-200, #E2E8F0) !important;
    border-radius: var(--fmc-radius-md, 8px) !important;
    margin-bottom: var(--fmc-space-3, 0.75rem) !important;
    overflow: hidden;
    transition: all var(--fmc-transition-fast, 150ms ease);
}

.fmc-faq .elementor-accordion-item:hover {
    border-color: var(--fmc-blue-pale, #DBEAFE) !important;
}

.fmc-faq .elementor-tab-title {
    padding: var(--fmc-space-5, 1.25rem) var(--fmc-space-6, 1.5rem) !important;
    font-family: var(--fmc-font-heading, 'Poppins', sans-serif) !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    color: var(--fmc-navy, #0A1F3F) !important;
    background: var(--fmc-white, #FFFFFF) !important;
}

.fmc-faq .elementor-tab-title.elementor-active {
    background: var(--fmc-off-white, #F8FAFC) !important;
    color: var(--fmc-royal-blue, #1A56DB) !important;
}

.fmc-faq .elementor-tab-content {
    padding: var(--fmc-space-4, 1rem) var(--fmc-space-6, 1.5rem) var(--fmc-space-6, 1.5rem) !important;
    font-size: 15px;
    color: var(--fmc-gray-600, #475569);
    line-height: 1.7;
}


/* ==========================================================================
   10. WPFORMS STYLES
   ========================================================================== */

.fmc-form .wpforms-container {
    background: var(--fmc-white, #FFFFFF);
    border-radius: var(--fmc-radius-lg, 12px);
    padding: var(--fmc-space-8, 2rem);
    box-shadow: var(--fmc-shadow-card, 0 4px 20px rgba(10, 31, 63, 0.08));
    border: 1px solid var(--fmc-gray-200, #E2E8F0);
}

.wpforms-container .wpforms-form .wpforms-field-label {
    font-family: var(--fmc-font-body, 'Inter', sans-serif);
    font-weight: 600;
    color: var(--fmc-navy, #0A1F3F);
    font-size: 14px;
    margin-bottom: 6px;
}

.wpforms-container .wpforms-form input[type="text"],
.wpforms-container .wpforms-form input[type="email"],
.wpforms-container .wpforms-form input[type="tel"],
.wpforms-container .wpforms-form input[type="number"],
.wpforms-container .wpforms-form input[type="url"],
.wpforms-container .wpforms-form select,
.wpforms-container .wpforms-form textarea {
    border: 1px solid var(--fmc-gray-200, #E2E8F0) !important;
    border-radius: var(--fmc-radius-md, 8px) !important;
    padding: 12px 16px !important;
    font-family: var(--fmc-font-body, 'Inter', sans-serif) !important;
    font-size: 15px !important;
    color: var(--fmc-gray-800, #1E293B) !important;
    background: var(--fmc-white, #FFFFFF) !important;
    transition: border-color var(--fmc-transition-fast, 150ms ease),
                box-shadow var(--fmc-transition-fast, 150ms ease) !important;
    box-shadow: var(--fmc-shadow-inset, inset 0 2px 4px rgba(0, 0, 0, 0.06)) !important;
}

.wpforms-container .wpforms-form input:focus,
.wpforms-container .wpforms-form select:focus,
.wpforms-container .wpforms-form textarea:focus {
    border-color: var(--fmc-royal-blue, #1A56DB) !important;
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.12), 
                inset 0 2px 4px rgba(0, 0, 0, 0.04) !important;
    outline: none !important;
}

.wpforms-container .wpforms-form button[type="submit"],
.wpforms-container .wpforms-form .wpforms-submit {
    background: linear-gradient(135deg, var(--fmc-gold, #C8A951), var(--fmc-gold-dark, #A68B3E)) !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: var(--fmc-radius-md, 8px) !important;
    padding: 14px 40px !important;
    font-family: var(--fmc-font-body, 'Inter', sans-serif) !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    cursor: pointer;
    transition: all var(--fmc-transition-base, 250ms ease) !important;
    box-shadow: var(--fmc-shadow-gold, 0 4px 14px rgba(200, 169, 81, 0.30)) !important;
    width: 100%;
}

.wpforms-container .wpforms-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 169, 81, 0.4) !important;
}


/* ==========================================================================
   11. FOOTER STYLES
   ========================================================================== */

.fmc-footer {
    background: linear-gradient(180deg, var(--fmc-navy, #0A1F3F), var(--fmc-navy-dark, #071428));
    color: var(--fmc-gray-300, #CBD5E1);
}

.fmc-footer h4 {
    color: var(--fmc-white, #FFFFFF);
    font-family: var(--fmc-font-heading, 'Poppins', sans-serif);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: var(--fmc-space-5, 1.25rem);
    position: relative;
    padding-bottom: var(--fmc-space-3, 0.75rem);
}

.fmc-footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--fmc-gold, #C8A951);
}

.fmc-footer a {
    color: var(--fmc-gray-300, #CBD5E1);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--fmc-transition-fast, 150ms ease),
                padding-left var(--fmc-transition-fast, 150ms ease);
    display: block;
    padding: 4px 0;
}

.fmc-footer a:hover {
    color: var(--fmc-gold, #C8A951);
    padding-left: 4px;
}

/* Footer bottom bar */
.fmc-footer-bottom {
    background: var(--fmc-navy-dark, #071428);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--fmc-space-4, 1rem) 0;
    font-size: 13px;
    color: var(--fmc-gray-400, #94A3B8);
}

.fmc-footer-bottom a {
    color: var(--fmc-gray-400, #94A3B8);
    font-size: 13px;
}

.fmc-footer-bottom a:hover {
    color: var(--fmc-gold, #C8A951);
    padding-left: 0;
}


/* ==========================================================================
   12. TRUST BADGES / PARTNER LOGOS
   ========================================================================== */

.fmc-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--fmc-space-2, 0.5rem);
    padding: var(--fmc-space-2, 0.5rem) var(--fmc-space-4, 1rem);
    background: var(--fmc-off-white, #F8FAFC);
    border: 1px solid var(--fmc-gray-200, #E2E8F0);
    border-radius: var(--fmc-radius-2xl, 20px);
    font-size: 13px;
    font-weight: 500;
    color: var(--fmc-gray-700, #334155);
}

.fmc-trust-badge i {
    color: var(--fmc-gold, #C8A951);
}


/* ==========================================================================
   13. BREADCRUMB STYLES
   ========================================================================== */

.fmc-breadcrumb {
    font-size: 13px;
    color: var(--fmc-gray-400, #94A3B8);
    padding: var(--fmc-space-3, 0.75rem) 0;
}

.fmc-breadcrumb a {
    color: var(--fmc-gray-300, #CBD5E1);
    text-decoration: none;
}

.fmc-breadcrumb a:hover {
    color: var(--fmc-gold, #C8A951);
}

.fmc-breadcrumb .fmc-breadcrumb-separator {
    margin: 0 var(--fmc-space-2, 0.5rem);
    color: var(--fmc-gray-400, #94A3B8);
}


/* ==========================================================================
   14. RESPONSIVE UTILITIES
   ========================================================================== */

/* Hide on mobile */
@media (max-width: 767px) {
    .fmc-hide-mobile {
        display: none !important;
    }
}

/* Hide on desktop */
@media (min-width: 768px) {
    .fmc-hide-desktop {
        display: none !important;
    }
}

/* Hide on tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .fmc-hide-tablet {
        display: none !important;
    }
}

/* Full width on mobile */
@media (max-width: 767px) {
    .fmc-full-mobile {
        width: 100% !important;
    }
    
    .fmc-text-center-mobile {
        text-align: center !important;
    }
}

/* Touch-friendly tap targets */
@media (max-width: 768px) {
    .fmc-nav-menu a,
    .elementor-widget-button .elementor-button,
    .fmc-footer a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}


/* ==========================================================================
   15. ANIMATIONS — Scroll Reveal (CSS-only)
   ========================================================================== */

/* Fade-in-up animation */
@keyframes fmc-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fmc-animate {
    animation: fmc-fadeInUp 0.6s ease-out forwards;
}

/* Stagger children */
.fmc-stagger > *:nth-child(1) { animation-delay: 0.1s; }
.fmc-stagger > *:nth-child(2) { animation-delay: 0.2s; }
.fmc-stagger > *:nth-child(3) { animation-delay: 0.3s; }
.fmc-stagger > *:nth-child(4) { animation-delay: 0.4s; }
.fmc-stagger > *:nth-child(5) { animation-delay: 0.5s; }
.fmc-stagger > *:nth-child(6) { animation-delay: 0.6s; }

/* Gradient text (for headings) */
.fmc-gradient-text {
    background: linear-gradient(135deg, var(--fmc-navy, #0A1F3F), var(--fmc-royal-blue, #1A56DB));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gold gradient text */
.fmc-gold-text {
    background: linear-gradient(135deg, var(--fmc-gold, #C8A951), var(--fmc-gold-dark, #A68B3E));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ==========================================================================
   16. ELEMENTOR CONTAINER OVERRIDES
   ========================================================================== */

/* Premium section padding */
.fmc-section-padding {
    padding: var(--fmc-space-20, 5rem) var(--fmc-space-6, 1.5rem);
}

@media (max-width: 768px) {
    .fmc-section-padding {
        padding: var(--fmc-space-12, 3rem) var(--fmc-space-4, 1rem);
    }
}

/* Section heading with subtitle */
.fmc-section-heading {
    text-align: center;
    margin-bottom: var(--fmc-space-12, 3rem);
}

.fmc-section-heading h2 {
    margin-bottom: var(--fmc-space-3, 0.75rem);
}

.fmc-section-heading p {
    max-width: 640px;
    margin: 0 auto;
    color: var(--fmc-gray-500, #64748B);
    font-size: var(--fmc-text-lg, 1.125rem);
}

/* Gold underline accent */
.fmc-heading-accent::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--fmc-gold, #C8A951), var(--fmc-gold-dark, #A68B3E));
    margin: var(--fmc-space-4, 1rem) auto 0;
    border-radius: 2px;
}

.fmc-heading-accent-left::after {
    margin: var(--fmc-space-4, 1rem) 0 0 0;
}


/* ==========================================================================
   17. PRINT STYLES
   ========================================================================== */

@media print {
    .fmc-whatsapp-float,
    .fmc-call-float,
    .fmc-top-bar,
    .fmc-main-header,
    .fmc-footer,
    .elementor-widget-button {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #FFF;
    }
}
