/* ============================================
   FAHARI DENTAL — MAIN STYLESHEET
   Version: 1.0.0
   "Elevating Your Smile"
   Premium, luxury, calm dental clinic theme.
   Palette + type per Fahari Dental Brand Guidelines v1.0
   ============================================ */

/* CSS Custom Properties — Light theme (default) */
:root {
    /* --- Fahari Brand Palette ---
       Champagne Ivory  #F8F4EE  backgrounds / surfaces
       Champagne Gold   #C9A84C  accents / CTAs
       Gold Deep        #B89234  CTA hover
       Gold Tint        #E8D5A3  highlights / soft fills
       Charcoal         #2C2C2C  headings / body text
       Soft Taupe       #B0A090  subtext / metadata
       Taupe Mist       #D4C9BC  borders / dividers            */

    /* "navy" tokens now map to Charcoal (dark surfaces + strong text) */
    --fdl-navy: #2C2C2C;
    --fdl-navy-dark: #1E1E1E;
    --fdl-navy-deep: #171717;
    /* "blue" tokens now map to Champagne Gold (secondary accent) */
    --fdl-blue: #C9A84C;
    --fdl-blue-light: #E8D5A3;
    --fdl-blue-pale: rgba(201, 168, 76, 0.10);
    /* "yellow" tokens now map to Champagne Gold (primary accent / CTA) */
    --fdl-yellow: #C9A84C;
    --fdl-yellow-light: #E8D5A3;
    --fdl-yellow-pale: rgba(201, 168, 76, 0.10);
    --fdl-gold-deep: #B89234;

    --fdl-white: #FFFFFF;
    --fdl-ivory: #F8F4EE;
    /* surfaces / neutrals mapped to warm ivory + taupe */
    --fdl-gray-light: #F3ECE0;   /* subtle ivory section bg */
    --fdl-gray-lighter: #FBF8F2;
    --fdl-gray: #E7DECF;         /* soft border on ivory */
    --fdl-gray-medium: #D4C9BC;  /* taupe mist border */
    --fdl-gray-dark: #8A7E6E;    /* muted taupe text */
    --fdl-text: #2C2C2C;
    --fdl-text-light: #4A463F;
    --fdl-text-muted: #B0A090;

    /* Typography — Playfair Display headings, Montserrat body/UI */
    --fdl-font-primary: 'Playfair Display', Georgia, serif;
    --fdl-font-secondary: 'Montserrat', sans-serif;
    --fdl-font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --fdl-section-padding: 100px 0;
    --fdl-section-padding-sm: 60px 0;
    --fdl-container-max: 1200px;
    --fdl-container-narrow: 960px;
    --fdl-container-padding: 0 24px;
    
    /* Shadows — soft, warm, luxury */
    --fdl-shadow-xs: 0 1px 3px rgba(44, 44, 44, 0.04);
    --fdl-shadow-sm: 0 6px 18px rgba(44, 34, 20, 0.06);
    --fdl-shadow-md: 0 12px 34px rgba(44, 34, 20, 0.09);
    --fdl-shadow-lg: 0 24px 54px rgba(44, 34, 20, 0.11);
    --fdl-shadow-xl: 0 34px 84px rgba(44, 34, 20, 0.15);
    --fdl-shadow-2xl: 0 44px 104px rgba(44, 34, 20, 0.18);
    
    /* Border Radius */
    --fdl-radius-xs: 4px;
    --fdl-radius-sm: 8px;
    --fdl-radius-md: 12px;
    --fdl-radius-lg: 16px;
    --fdl-radius-xl: 20px;
    --fdl-radius-2xl: 24px;
    --fdl-radius-full: 50%;
    
    /* Transitions */
    --fdl-transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --fdl-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --fdl-transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body.fdl-body { font-family: var(--fdl-font-body); color: var(--fdl-text); line-height: 1.75; overflow-x: hidden; background: var(--fdl-ivory); font-size: 16px; letter-spacing: 0.1px; -webkit-font-smoothing: antialiased; transition: background 0.4s ease, color 0.4s ease; }
h1, h2, h3, h4, h5 { font-family: var(--fdl-font-primary); font-weight: 600; letter-spacing: 0.2px; }
body.fdl-no-scroll { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--fdl-transition); }
ul { list-style: none; }

/* Preloader */
#fdl-preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--fdl-navy); z-index: 99999; display: flex; align-items: center; justify-content: center; transition: opacity 0.5s ease, visibility 0.5s ease; }
#fdl-preloader.fade-out { opacity: 0; visibility: hidden; pointer-events: none; }
.fdl-loader { text-align: center; }
.fdl-loader-circle { width: 56px; height: 56px; border: 3px solid rgba(255,255,255,0.08); border-top-color: var(--fdl-yellow); border-right-color: var(--fdl-blue); border-radius: 50%; animation: fdl-spin 0.8s linear infinite; margin: 0 auto 20px; }
.fdl-loader-text { color: var(--fdl-white); font-family: var(--fdl-font-primary); font-size: 1.25rem; font-weight: 700; letter-spacing: 6px; }
@keyframes fdl-spin { to { transform: rotate(360deg); } }

/* Container */
.fdl-container { max-width: var(--fdl-container-max); margin: 0 auto; padding: var(--fdl-container-padding); }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.fdl-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: var(--fdl-transition); background: transparent; }
.fdl-header.scrolled { background: rgba(248,244,238,0.94); backdrop-filter: blur(18px) saturate(1.1); -webkit-backdrop-filter: blur(18px) saturate(1.1); box-shadow: var(--fdl-shadow-sm); border-bottom: 1px solid var(--fdl-gray); }

.fdl-navbar { padding: 16px 0; transition: var(--fdl-transition); }
.fdl-header.scrolled .fdl-navbar { padding: 10px 0; }

.fdl-nav-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 65px; }
.fdl-header.scrolled .fdl-nav-wrapper { min-height: 50px; }

/* Logo Styles */
.fdl-logo { text-decoration: none; display: flex; align-items: center; flex-shrink: 0; gap: 0; padding: 4px 0; }
.fdl-logo-img { height: 65px; width: auto; max-width: 260px; object-fit: contain; object-position: left center; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: block; }
.fdl-header.scrolled .fdl-logo-img { height: 50px; max-width: 220px; }
.fdl-logo:hover .fdl-logo-img { opacity: 0.9; transform: scale(1.02); }

.fdl-logo-text-fallback { display: flex; flex-direction: column; line-height: 1.15; }
.fdl-logo-main-fallback { font-family: var(--fdl-font-primary); font-size: 1.6rem; font-weight: 800; color: var(--fdl-white); letter-spacing: 3px; transition: var(--fdl-transition); white-space: nowrap; }
.fdl-header.scrolled .fdl-logo-main-fallback { color: var(--fdl-navy); font-size: 1.3rem; }
.fdl-logo-sub-fallback { font-family: var(--fdl-font-primary); font-size: 0.65rem; font-weight: 600; color: var(--fdl-yellow); letter-spacing: 5px; white-space: nowrap; }

.fdl-header:not(.scrolled) .fdl-logo-img { filter: brightness(1.05) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3)); }
.fdl-header.scrolled .fdl-logo-img { filter: none; }

/* Navigation Menu */
.fdl-nav-menu { display: flex; list-style: none; gap: 4px; align-items: center; }
.fdl-nav-link { text-decoration: none; color: rgba(255,255,255,0.92); font-family: var(--fdl-font-secondary); font-size: 0.875rem; font-weight: 500; padding: 8px 18px; border-radius: 25px; transition: var(--fdl-transition); position: relative; white-space: nowrap; display: flex; align-items: center; gap: 6px; }
.fdl-header.scrolled .fdl-nav-link { color: var(--fdl-text); }
.fdl-nav-link:hover { color: var(--fdl-yellow); background: rgba(255,255,255,0.08); }
.fdl-header.scrolled .fdl-nav-link:hover { background: rgba(44, 34, 20,0.05); color: var(--fdl-blue); }
.fdl-nav-link.active { background: rgba(255,255,255,0.12); color: var(--fdl-yellow); font-weight: 600; }
.fdl-header.scrolled .fdl-nav-link.active { background: var(--fdl-navy); color: var(--fdl-yellow); }
.fdl-dropdown-arrow { font-size: 0.6rem; transition: var(--fdl-transition); }

/* Dropdown Menu */
.fdl-dropdown-wrapper { position: relative; }
.fdl-dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px); background: var(--fdl-white); border-radius: var(--fdl-radius-md); box-shadow: var(--fdl-shadow-xl); padding: 8px 0; min-width: 320px; opacity: 0; visibility: hidden; transition: var(--fdl-transition); z-index: 1001; border: 1px solid var(--fdl-gray); }
.fdl-dropdown-wrapper:hover .fdl-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(2px); }
.fdl-dropdown-link { display: flex; align-items: center; gap: 10px; padding: 12px 20px; color: var(--fdl-text); font-family: var(--fdl-font-secondary); font-size: 0.875rem; transition: var(--fdl-transition); white-space: nowrap; }
.fdl-dropdown-link:hover { background: var(--fdl-gray-light); color: var(--fdl-navy); }
.fdl-dropdown-link.active { background: var(--fdl-blue-pale); color: var(--fdl-navy); font-weight: 600; }
.fdl-dropdown-link i { color: var(--fdl-blue); width: 20px; text-align: center; }

/* Buttons */
.fdl-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 30px; border: none; border-radius: 40px; font-family: var(--fdl-font-secondary); font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: var(--fdl-transition); text-decoration: none; white-space: nowrap; letter-spacing: 0.4px; }
.fdl-btn-lg { padding: 15px 35px; font-size: 1rem; }
.fdl-btn-primary { background: var(--fdl-yellow); color: #2C2C2C; box-shadow: 0 6px 18px rgba(201, 168, 76,0.24); position: relative; overflow: hidden; font-weight: 600; }
.fdl-btn-primary::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%); opacity: 0; transition: opacity 0.4s; }
.fdl-btn-primary:hover::after { opacity: 1; }
.fdl-btn-primary:hover { background: var(--fdl-gold-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(201, 168, 76,0.34); }
.fdl-btn-outline { background: transparent; color: var(--fdl-white); border: 2px solid rgba(255,255,255,0.4); }
.fdl-btn-outline:hover { background: var(--fdl-white); color: var(--fdl-navy); border-color: var(--fdl-white); transform: translateY(-2px); }
.fdl-btn-outline-dark { background: transparent; color: var(--fdl-navy); border: 2px solid var(--fdl-navy); }
.fdl-btn-outline-dark:hover { background: var(--fdl-navy); color: var(--fdl-white); transform: translateY(-2px); }
.fdl-btn-accent { background: var(--fdl-navy); color: var(--fdl-white); }
.fdl-btn-accent:hover { background: var(--fdl-navy-dark); transform: translateY(-2px); box-shadow: var(--fdl-shadow-md); }
.fdl-btn-block { width: 100%; }
.fdl-nav-cta { padding: 10px 24px; font-size: 0.85rem; flex-shrink: 0; }

/* Mobile Toggle */
.fdl-mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.fdl-mobile-toggle span { width: 26px; height: 2.5px; background: var(--fdl-white); border-radius: 2px; transition: var(--fdl-transition); }
.fdl-header.scrolled .fdl-mobile-toggle span { background: var(--fdl-navy); }
.fdl-mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.fdl-mobile-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.fdl-mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ============================================
   MOBILE DRAWER NAVIGATION (Enterprise)
   ============================================ */
.fdl-mobile-overlay { position: fixed; inset: 0; background: rgba(23, 20, 16, 0.55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); z-index: 1099; opacity: 0; visibility: hidden; transition: opacity 0.35s ease, visibility 0.35s ease; }
.fdl-mobile-overlay.active { opacity: 1; visibility: visible; }

.fdl-mobile-drawer { position: fixed; top: 0; right: 0; height: 100%; height: 100dvh; width: 320px; max-width: 85vw; background: linear-gradient(165deg, #242424 0%, #1E1E1E 55%, #171717 100%); z-index: 1100; display: flex; flex-direction: column; transform: translateX(105%); transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: -18px 0 50px rgba(0, 0, 0, 0.35); border-left: 1px solid rgba(255, 255, 255, 0.06); overflow: hidden; }
.fdl-mobile-drawer.active { transform: translateX(0); }

.fdl-mobile-drawer-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 20px 18px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.02); }
.fdl-mobile-brand { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.fdl-mobile-logo-img { height: 38px; width: auto; max-width: 170px; object-fit: contain; object-position: left center; }
.fdl-mobile-brand-name { font-family: var(--fdl-font-primary); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.4px; color: rgba(255, 255, 255, 0.75); line-height: 1.3; }
.fdl-mobile-drawer-header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.fdl-mobile-drawer-header-actions .fdl-theme-toggle { width: 40px; height: 40px; font-size: 0.92rem; }
.fdl-mobile-drawer-close { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.14); color: var(--fdl-white); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--fdl-transition); font-size: 1rem; }
.fdl-mobile-drawer-close:hover, .fdl-mobile-drawer-close:active { background: var(--fdl-yellow); color: var(--fdl-navy); border-color: var(--fdl-yellow); }

.fdl-mobile-drawer-nav { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 14px 12px; display: flex; flex-direction: column; gap: 2px; }
.fdl-mobile-link { display: flex; align-items: center; gap: 14px; width: 100%; padding: 14px 16px; border: none; background: transparent; color: rgba(255, 255, 255, 0.88); font-family: var(--fdl-font-secondary); font-size: 0.98rem; font-weight: 500; text-align: left; border-radius: var(--fdl-radius-md); cursor: pointer; transition: var(--fdl-transition-fast); -webkit-tap-highlight-color: transparent; }
.fdl-mobile-link i:first-child { width: 22px; text-align: center; color: var(--fdl-blue-light); font-size: 1rem; transition: var(--fdl-transition-fast); }
.fdl-mobile-link span { flex: 1; }
.fdl-mobile-link:hover, .fdl-mobile-link:active { background: rgba(201, 168, 76, 0.12); color: var(--fdl-white); }
.fdl-mobile-link:active { transform: scale(0.98); }
.fdl-mobile-link.active { background: rgba(201, 168, 76, 0.12); color: var(--fdl-yellow); }
.fdl-mobile-link.active i:first-child { color: var(--fdl-yellow); }

.fdl-mobile-accordion { display: flex; flex-direction: column; }
.fdl-mobile-accordion-arrow { margin-left: auto; font-size: 0.7rem; color: rgba(255, 255, 255, 0.55); transition: transform 0.3s ease; }
.fdl-mobile-accordion-toggle.open .fdl-mobile-accordion-arrow { transform: rotate(180deg); color: var(--fdl-yellow); }
.fdl-mobile-accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1); padding-left: 8px; }
.fdl-mobile-accordion.open .fdl-mobile-accordion-panel { max-height: 360px; }
.fdl-mobile-sublink { display: flex; align-items: center; gap: 12px; padding: 12px 16px; margin: 2px 0; color: rgba(255, 255, 255, 0.7); font-family: var(--fdl-font-body); font-size: 0.88rem; border-radius: var(--fdl-radius-sm); border-left: 2px solid rgba(201, 168, 76, 0.25); transition: var(--fdl-transition-fast); -webkit-tap-highlight-color: transparent; }
.fdl-mobile-sublink i { width: 18px; text-align: center; color: var(--fdl-blue-light); font-size: 0.85rem; }
.fdl-mobile-sublink:hover, .fdl-mobile-sublink:active { background: rgba(255, 255, 255, 0.06); color: var(--fdl-white); border-left-color: var(--fdl-yellow); padding-left: 20px; }

.fdl-mobile-drawer-footer { padding: 16px 16px calc(16px + env(safe-area-inset-bottom)); border-top: 1px solid rgba(255, 255, 255, 0.08); background: rgba(0, 0, 0, 0.15); display: flex; flex-direction: column; gap: 10px; }
.fdl-mobile-drawer-footer .fdl-btn-primary { width: 100%; }
.fdl-mobile-contact-row { display: flex; gap: 10px; }
.fdl-mobile-contact-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 10px; border-radius: var(--fdl-radius-md); background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14); color: var(--fdl-white); font-family: var(--fdl-font-primary); font-size: 0.82rem; font-weight: 600; transition: var(--fdl-transition-fast); -webkit-tap-highlight-color: transparent; }
.fdl-mobile-contact-btn:hover, .fdl-mobile-contact-btn:active { background: rgba(255, 255, 255, 0.12); border-color: var(--fdl-blue); }
.fdl-mobile-wa:hover, .fdl-mobile-wa:active { background: #25D366; border-color: #25D366; color: #fff; }
.fdl-mobile-footer-tagline { text-align: center; font-family: var(--fdl-font-primary); font-size: 0.68rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(201, 168, 76, 0.85); margin-top: 4px; }

/* WhatsApp Float */
.fdl-whatsapp-float { position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px; background: #25D366; color: var(--fdl-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: 0 6px 25px rgba(37,211,102,0.35); z-index: 998; transition: var(--fdl-transition); animation: fdl-whatsapp-pulse 2.5s infinite; }
.fdl-whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 10px 35px rgba(37,211,102,0.5); }
@keyframes fdl-whatsapp-pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); } 70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ============================================
   TEXT-ONLY CAROUSEL HERO (Homepage)
   ============================================ */
.fdl-hero-text-carousel { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; padding: 120px 0 80px; }
.fdl-hero-bg-fixed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.fdl-hero-bg-fixed-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.fdl-hero-overlay-fixed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(160deg, rgba(23, 23, 23, 0.88) 0%, rgba(44, 34, 20, 0.78) 40%, rgba(30, 30, 30, 0.85) 100%); }
.fdl-hero-geometric-static { position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: radial-gradient(circle at 30% 40%, rgba(201, 168, 76,0.1) 0%, transparent 60%), repeating-linear-gradient(90deg, rgba(201, 168, 76,0.03) 0px, rgba(201, 168, 76,0.03) 1px, transparent 1px, transparent 12px); clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%); z-index: 1; pointer-events: none; }
.fdl-hero-particles-static { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; background-image: radial-gradient(circle at 20% 30%, rgba(201, 168, 76,0.08) 1px, transparent 1px); background-size: 28px 28px; }
.fdl-hero-bg-fixed::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: repeating-linear-gradient(45deg, rgba(201, 168, 76,0.03) 0px, rgba(201, 168, 76,0.03) 2px, transparent 2px, transparent 8px); pointer-events: none; }

.fdl-hero-text-carousel-container { position: relative; z-index: 3; width: 100%; max-width: 900px; margin: 0 auto; padding: 0 24px; }
.fdl-hero-text-carousel-wrapper { position: relative; min-height: 380px; display: flex; align-items: center; justify-content: center; }

.fdl-hero-text-slide { position: absolute; top: 0; left: 0; width: 100%; opacity: 0; visibility: hidden; transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out; display: flex; align-items: center; justify-content: center; }
.fdl-hero-text-slide.active { opacity: 1; visibility: visible; position: relative; }

.fdl-hero-text-content { text-align: center; color: var(--fdl-white); max-width: 800px; padding: 20px 0; }
.fdl-hero-text-content .fdl-hero-badge { margin-left: auto; margin-right: auto; }
.fdl-hero-text-content .fdl-hero-title { color: #FFFFFF; text-shadow: 0 4px 25px rgba(0, 0, 0, 0.5); }
.fdl-hero-text-content .fdl-hero-subtitle { color: #FFFFFF; text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4); margin-left: auto; margin-right: auto; }
.fdl-hero-text-content .fdl-hero-buttons { justify-content: center; }

.fdl-hero-text-carousel-dots { display: flex; gap: 12px; justify-content: center; margin-top: 30px; position: relative; z-index: 4; }
.fdl-text-carousel-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.3); border: 2px solid rgba(255,255,255,0.5); cursor: pointer; transition: var(--fdl-transition); padding: 0; }
.fdl-text-carousel-dot.active { background: var(--fdl-yellow); border-color: var(--fdl-yellow); transform: scale(1.3); box-shadow: 0 0 12px rgba(201, 168, 76,0.4); }
.fdl-text-carousel-dot:hover { background: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.8); }

.fdl-text-carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); color: var(--fdl-white); width: 48px; height: 48px; border-radius: 50%; cursor: pointer; z-index: 5; transition: var(--fdl-transition); display: flex; align-items: center; justify-content: center; font-size: 1rem; padding: 0; }
.fdl-text-carousel-arrow:hover { background: rgba(255,255,255,0.18); border-color: var(--fdl-yellow); color: var(--fdl-yellow); }
.fdl-text-carousel-prev { left: 10px; }
.fdl-text-carousel-next { right: 10px; }

/* Hero Common */
.fdl-hero-badge { display: inline-block; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); backdrop-filter: blur(12px); padding: 8px 20px; border-radius: 25px; font-size: 0.85rem; font-weight: 500; margin-bottom: 28px; letter-spacing: 0.5px; }
.fdl-hero-title { font-family: var(--fdl-font-primary); font-size: clamp(2.3rem, 4.2vw, 4rem); font-weight: 600; line-height: 1.08; margin-bottom: 24px; letter-spacing: -0.5px; color: #FFFFFF; text-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.fdl-text-highlight { color: var(--fdl-yellow); position: relative; text-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.fdl-hero-subtitle { font-size: 1.1rem; line-height: 1.7; opacity: 0.9; margin-bottom: 36px; max-width: 520px; color: #FFFFFF; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.fdl-hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.fdl-hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.6); font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; animation: fdl-bounce 2s infinite; z-index: 10; cursor: pointer; transition: all 0.3s ease; }
.fdl-hero-scroll:hover { color: rgba(255,255,255,0.9); }
.fdl-hero-scroll-hidden { opacity: 0 !important; visibility: hidden; pointer-events: none; }
@keyframes fdl-bounce { 0%,20%,50%,80%,100% { transform: translateX(-50%) translateY(0); } 40% { transform: translateX(-50%) translateY(-8px); } 60% { transform: translateX(-50%) translateY(-4px); } }

/* ============================================
   PAGE HERO (Non-Home Pages)
   ============================================ */
.fdl-page-hero { position: relative; min-height: 400px; display: flex; align-items: center; background: var(--fdl-navy-deep); overflow: hidden; padding: 120px 0 80px; }
.fdl-page-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.fdl-page-hero-bg-img { width: 100%; height: 100%; object-fit: cover; }
.fdl-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(160deg, rgba(23, 23, 23,0.88) 0%, rgba(44, 34, 20,0.75) 50%, rgba(30, 30, 30,0.9) 100%); }
.fdl-page-hero-content { position: relative; z-index: 3; color: var(--fdl-white); text-align: center; max-width: 800px; margin: 0 auto; }
.fdl-page-hero-title { font-family: var(--fdl-font-primary); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; margin-bottom: 20px; letter-spacing: -1px; color: #FFFFFF; text-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.fdl-page-hero-subtitle { font-size: 1.2rem; opacity: 0.9; margin-bottom: 20px; line-height: 1.6; color: #FFFFFF; }
.fdl-page-hero-breadcrumb { font-size: 0.9rem; opacity: 0.8; }
.fdl-page-hero-breadcrumb a { color: var(--fdl-yellow); text-decoration: none; }
.fdl-page-hero-breadcrumb a:hover { text-decoration: underline; }
.fdl-page-hero-breadcrumb i { margin: 0 8px; font-size: 0.65rem; }

/* ============================================
   SECTION STYLES
   ============================================ */
.fdl-section { padding: var(--fdl-section-padding); position: relative; }
.fdl-section-header { text-align: center; margin-bottom: 60px; }
.fdl-section-label { display: inline-block; font-family: var(--fdl-font-secondary); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--fdl-blue); margin-bottom: 12px; background: var(--fdl-blue-pale); padding: 6px 16px; border-radius: 20px; }
.fdl-text-cyan { color: var(--fdl-blue-light) !important; background: rgba(201, 168, 76,0.15) !important; }
.fdl-section-title { font-family: var(--fdl-font-primary); font-size: clamp(1.9rem, 3vw, 2.9rem); font-weight: 600; margin-bottom: 16px; line-height: 1.15; letter-spacing: -0.02em; background: linear-gradient(135deg, var(--fdl-navy), var(--fdl-blue)); -webkit-background-clip: text; background-clip: text; color: transparent; display: inline-block; }
.fdl-text-white { color: var(--fdl-white); background: none; -webkit-background-clip: unset; background-clip: unset; }
.fdl-section-subtitle { font-size: 1.05rem; color: var(--fdl-gray-dark); max-width: 650px; margin: 0 auto; line-height: 1.7; }
.fdl-bg-gray { background: var(--fdl-gray-light); }
.fdl-bg-navy { background: linear-gradient(160deg, var(--fdl-navy) 0%, var(--fdl-navy-deep) 100%); color: var(--fdl-white); }

/* ============================================
   COMPANY OVERVIEW
   ============================================ */
.fdl-overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.fdl-overview-img { width: 100%; min-height: 450px; object-fit: cover; border-radius: var(--fdl-radius-xl); box-shadow: var(--fdl-shadow-lg); }
.fdl-overview-experience-badge { position: absolute; bottom: 24px; right: 24px; background: var(--fdl-navy); color: var(--fdl-white); padding: 16px 24px; border-radius: var(--fdl-radius-lg); text-align: center; box-shadow: var(--fdl-shadow-lg); }
.fdl-overview-image { position: relative; }
.fdl-experience-number { display: block; font-family: var(--fdl-font-primary); font-size: 2rem; font-weight: 800; color: var(--fdl-yellow); line-height: 1; }
.fdl-experience-text { font-size: 0.75rem; letter-spacing: 1px; }
.fdl-overview-heading { font-family: var(--fdl-font-primary); font-size: 1.7rem; font-weight: 700; color: var(--fdl-navy); margin-bottom: 22px; }
.fdl-overview-text p { color: var(--fdl-text-light); margin-bottom: 22px; line-height: 1.8; font-size: 1rem; }
.fdl-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; padding-top: 30px; border-top: 1px solid var(--fdl-gray); }
.fdl-stat-card { text-align: center; }
.fdl-stat-number { font-family: var(--fdl-font-primary); font-size: 2.4rem; font-weight: 800; margin-bottom: 6px; background: linear-gradient(135deg, var(--fdl-navy), var(--fdl-blue)); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: none; }
.fdl-stat-label { font-size: 0.85rem; color: var(--fdl-gray-dark); font-weight: 500; }

/* ============================================
   MISSION / VISION / VALUES
   ============================================ */
.fdl-mvv-section { position: relative; }
.fdl-mvv-bg-pattern { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%), radial-gradient(circle at 80% 30%, rgba(201, 168, 76,0.08) 0%, transparent 50%); pointer-events: none; }
.fdl-mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; z-index: 1; }
.fdl-mvv-card { background: rgba(255,255,255,0.04); backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--fdl-radius-lg); padding: 40px 30px; text-align: center; transition: var(--fdl-transition-slow); position: relative; overflow: hidden; }
.fdl-mvv-card-glow { position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at center, rgba(201, 168, 76,0.08) 0%, transparent 70%); opacity: 0; transition: opacity 0.5s ease; pointer-events: none; }
.fdl-mvv-card:hover .fdl-mvv-card-glow { opacity: 1; }
.fdl-mvv-card:hover { transform: translateY(-8px); border-color: rgba(201, 168, 76,0.3); box-shadow: var(--fdl-shadow-xl); }
.fdl-mvv-icon { width: 72px; height: 72px; background: linear-gradient(135deg, rgba(201, 168, 76,0.2), rgba(44, 34, 20,0.4)); border-radius: var(--fdl-radius-full); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 1.8rem; color: var(--fdl-yellow); }
.fdl-mvv-card h3 { font-family: var(--fdl-font-primary); font-size: 1.35rem; font-weight: 700; color: var(--fdl-white); margin-bottom: 18px; }
.fdl-mvv-card p { color: rgba(255,255,255,0.75); line-height: 1.8; font-size: 0.95rem; }
.fdl-values-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 10px; }
.fdl-value-tag { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); padding: 7px 16px; border-radius: 20px; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.5px; transition: var(--fdl-transition); }
.fdl-value-tag:hover { background: var(--fdl-yellow); color: var(--fdl-navy); border-color: var(--fdl-yellow); }

/* ============================================
   BUSINESS LINES
   ============================================ */
.fdl-business-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.fdl-business-card { background: rgba(255,255,255,0.98); backdrop-filter: blur(2px); border-radius: var(--fdl-radius-lg); overflow: hidden; box-shadow: var(--fdl-shadow-sm); transition: var(--fdl-transition); border: 1px solid var(--fdl-gray); }
.fdl-business-card:hover { transform: translateY(-10px); box-shadow: var(--fdl-shadow-xl); border-color: var(--fdl-blue); background: #ffffff; }
.fdl-business-card-badge { position: absolute; top: 16px; left: 16px; background: var(--fdl-navy); color: var(--fdl-yellow); padding: 5px 14px; border-radius: 20px; font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; z-index: 2; }
.fdl-business-card-image { height: 180px; overflow: hidden; }
.fdl-business-card-img { width: 100%; height: 100%; object-fit: cover; transition: var(--fdl-transition-slow); }
.fdl-business-card:hover .fdl-business-card-img { transform: scale(1.08); }
.fdl-business-card-icon-fallback { width: 100%; height: 100%; background: linear-gradient(135deg, var(--fdl-navy), var(--fdl-blue)); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--fdl-yellow); }
.fdl-business-card-content { padding: 28px 24px; }
.fdl-business-card-content h3 { font-family: var(--fdl-font-primary); font-size: 1.1rem; font-weight: 700; color: var(--fdl-navy-dark); margin-bottom: 10px; line-height: 1.3; }
.fdl-business-card-content > p { color: var(--fdl-gray-dark); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }
.fdl-business-card-features { list-style: none; margin-bottom: 20px; }
.fdl-business-card-features li { display: flex; align-items: center; gap: 8px; padding: 6px 0; color: var(--fdl-text-light); font-size: 0.85rem; }
.fdl-business-card-features li i { color: var(--fdl-blue); font-size: 0.85rem; }

/* ============================================
   STRATEGIC GOALS
   ============================================ */
.fdl-goals-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.fdl-goals-img { width: 100%; border-radius: var(--fdl-radius-xl); box-shadow: var(--fdl-shadow-lg); min-height: 400px; object-fit: cover; }
.fdl-goal-card { background: var(--fdl-white); border-radius: var(--fdl-radius-md); padding: 24px 28px; margin-bottom: 16px; box-shadow: var(--fdl-shadow-xs); border-left: 4px solid var(--fdl-gray-medium); transition: var(--fdl-transition); cursor: pointer; }
.fdl-goal-card:hover, .fdl-goal-card.active { border-left-color: var(--fdl-blue); box-shadow: var(--fdl-shadow-md); transform: translateX(5px); }
.fdl-goal-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.fdl-goal-card-icon { width: 46px; height: 46px; background: var(--fdl-blue-pale); border-radius: var(--fdl-radius-sm); display: flex; align-items: center; justify-content: center; color: var(--fdl-navy); font-size: 1.1rem; flex-shrink: 0; }
.fdl-goal-card h4 { font-family: var(--fdl-font-primary); font-weight: 700; color: var(--fdl-navy-dark); font-size: 1rem; }
.fdl-goal-list { list-style: none; padding-left: 60px; }
.fdl-goal-list li { position: relative; padding-left: 18px; margin-bottom: 8px; color: var(--fdl-text-light); font-size: 0.9rem; line-height: 1.6; }
.fdl-goal-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; background: var(--fdl-blue); border-radius: 50%; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.fdl-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fdl-why-card { background: var(--fdl-white); border-radius: var(--fdl-radius-lg); padding: 36px 28px; text-align: center; box-shadow: var(--fdl-shadow-sm); transition: var(--fdl-transition); border: 1px solid transparent; }
.fdl-why-card:hover { border-color: var(--fdl-blue); box-shadow: var(--fdl-shadow-lg); transform: translateY(-6px); }
.fdl-why-icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--fdl-navy), var(--fdl-blue)); border-radius: var(--fdl-radius-full); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.5rem; color: var(--fdl-yellow); }
.fdl-why-card h4 { font-family: var(--fdl-font-primary); font-size: 1.05rem; font-weight: 700; color: var(--fdl-navy-dark); margin-bottom: 12px; }
.fdl-why-card p { color: var(--fdl-gray-dark); font-size: 0.9rem; line-height: 1.7; }

/* ============================================
   CTA SECTION
   ============================================ */
.fdl-cta-section { position: relative; padding: 80px 0; text-align: center; overflow: hidden; }
.fdl-cta-bg-pattern { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: radial-gradient(circle at 30% 50%, rgba(201, 168, 76,0.12) 0%, transparent 60%), radial-gradient(circle at 70% 50%, rgba(201, 168, 76,0.06) 0%, transparent 50%); pointer-events: none; }
.fdl-cta-content { position: relative; z-index: 1; }
.fdl-cta-content h2 { font-family: var(--fdl-font-primary); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--fdl-white); margin-bottom: 16px; }
.fdl-cta-content p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 36px; max-width: 550px; margin-left: auto; margin-right: auto; }
.fdl-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.fdl-footer { background: var(--fdl-navy-dark); color: var(--fdl-white); position: relative; }
.fdl-footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(ellipse at 20% 30%, rgba(201, 168, 76,0.06) 0%, transparent 50%), radial-gradient(ellipse at 80% 70%, rgba(201, 168, 76,0.04) 0%, transparent 40%); pointer-events: none; }
.fdl-footer-top { padding: 70px 0 40px; position: relative; z-index: 1; }
.fdl-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; }

/* Footer Logo */
.fdl-footer-logo { margin-bottom: 4px; }
.fdl-footer-logo-img { height: 55px; width: auto; max-width: 230px; object-fit: contain; object-position: left center; margin-bottom: 16px; display: block; }
.fdl-footer-logo-fallback { display: flex; flex-direction: column; }
.fdl-footer-logo-main { font-family: var(--fdl-font-primary); font-size: 1.4rem; font-weight: 800; letter-spacing: 3px; color: var(--fdl-white); }
.fdl-footer-logo-sub { font-family: var(--fdl-font-primary); font-size: 0.6rem; font-weight: 600; letter-spacing: 4px; color: var(--fdl-yellow); }

.fdl-footer-desc { color: rgba(255,255,255,0.65); line-height: 1.8; font-size: 0.9rem; margin-bottom: 20px; }
.fdl-footer-social { display: flex; gap: 12px; }
.fdl-social-icon { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: var(--fdl-white); transition: var(--fdl-transition); font-size: 0.9rem; text-decoration: none; }
.fdl-social-icon:hover { background: var(--fdl-yellow); color: var(--fdl-navy); transform: translateY(-3px); }

.fdl-footer-title { font-family: var(--fdl-font-primary); font-size: 1.05rem; font-weight: 700; margin-bottom: 22px; position: relative; padding-bottom: 12px; color: #FFFFFF; }
.fdl-footer-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 32px; height: 3px; background: var(--fdl-yellow); border-radius: 2px; }
.fdl-footer-links li { margin-bottom: 10px; }
.fdl-footer-links a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: var(--fdl-transition); display: inline-block; }
.fdl-footer-links a:hover { color: var(--fdl-yellow); padding-left: 5px; }
.fdl-footer-contact li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: 0.88rem; }
.fdl-footer-contact li i { color: var(--fdl-yellow); margin-top: 3px; flex-shrink: 0; }
.fdl-footer-contact a { color: rgba(255,255,255,0.65); transition: var(--fdl-transition); }
.fdl-footer-contact a:hover { color: var(--fdl-yellow); }

.fdl-footer-newsletter { border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 36px 0; position: relative; z-index: 1; }
.fdl-newsletter-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.fdl-newsletter-text h4 { font-family: var(--fdl-font-primary); font-size: 1.15rem; margin-bottom: 6px; color: #FFFFFF; }
.fdl-newsletter-text p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.fdl-newsletter-form { display: flex; gap: 12px; min-width: 400px; }
.fdl-newsletter-form input { flex: 1; padding: 12px 18px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--fdl-radius-md); color: var(--fdl-white); font-family: var(--fdl-font-body); font-size: 0.9rem; transition: var(--fdl-transition); }
.fdl-newsletter-form input:focus { outline: none; border-color: var(--fdl-yellow); background: rgba(255,255,255,0.1); }
.fdl-newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.fdl-footer-bottom { padding: 22px 0; position: relative; z-index: 1; }
.fdl-footer-bottom-wrapper { display: flex; align-items: center; justify-content: space-between; font-size: 0.83rem; color: rgba(255,255,255,0.5); }
.fdl-footer-bottom-links { display: flex; gap: 22px; }
.fdl-footer-bottom-links a { color: rgba(255,255,255,0.5); transition: var(--fdl-transition); }
.fdl-footer-bottom-links a:hover { color: var(--fdl-yellow); }

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.fdl-back-to-top { position: fixed; bottom: 100px; right: 28px; width: 46px; height: 46px; background: var(--fdl-navy); color: var(--fdl-white); border: none; border-radius: 50%; cursor: pointer; font-size: 1rem; box-shadow: var(--fdl-shadow-md); z-index: 997; transition: var(--fdl-transition); opacity: 0; visibility: hidden; transform: translateY(20px); display: flex; align-items: center; justify-content: center; }
.fdl-back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.fdl-back-to-top:hover { background: var(--fdl-yellow); color: var(--fdl-navy); transform: translateY(-4px); box-shadow: 0 8px 25px rgba(201, 168, 76,0.3); }

/* ============================================
   SERVICES CATEGORY CARDS
   ============================================ */
.fdl-services-categories-grid { display: flex; flex-direction: column; gap: 40px; }
.fdl-service-category-card { display: grid; grid-template-columns: 1fr 1.5fr; background: var(--fdl-white); border-radius: var(--fdl-radius-xl); overflow: hidden; box-shadow: var(--fdl-shadow-md); transition: var(--fdl-transition); border: 1px solid var(--fdl-gray); }
.fdl-service-category-card:hover { box-shadow: var(--fdl-shadow-xl); transform: translateY(-5px); }
.fdl-service-category-image { overflow: hidden; }
.fdl-service-category-img { width: 100%; height: 100%; object-fit: cover; min-height: 300px; }
.fdl-service-category-content { padding: 40px; display: flex; flex-direction: column; }
.fdl-service-category-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--fdl-navy), var(--fdl-blue)); border-radius: var(--fdl-radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--fdl-yellow); margin-bottom: 20px; }
.fdl-service-category-content h3 { font-family: var(--fdl-font-primary); font-size: 1.4rem; font-weight: 700; color: var(--fdl-navy-dark); margin-bottom: 12px; }
.fdl-service-category-content > p { color: var(--fdl-gray-dark); line-height: 1.7; margin-bottom: 20px; }
.fdl-service-category-features { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 24px; }
.fdl-service-category-features li { display: flex; align-items: center; gap: 8px; color: var(--fdl-text-light); font-size: 0.88rem; }
.fdl-service-category-features li i { color: var(--fdl-blue); }

/* ============================================
   SERVICE CARDS (PDTS, PAFA, AI)
   ============================================ */
.fdl-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.fdl-service-card { background: rgba(255,255,255,0.98); backdrop-filter: blur(2px); border-radius: var(--fdl-radius-lg); padding: 36px 28px; box-shadow: var(--fdl-shadow-sm); transition: var(--fdl-transition); border: 1px solid var(--fdl-gray); position: relative; overflow: hidden; }
.fdl-service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: linear-gradient(180deg, var(--fdl-navy), var(--fdl-blue)); transform: scaleY(0); transition: var(--fdl-transition); }
.fdl-service-card:hover::before { transform: scaleY(1); }
.fdl-service-card:hover { transform: translateY(-8px); box-shadow: var(--fdl-shadow-lg); border-color: var(--fdl-blue); background: #ffffff; }
.fdl-service-card-icon-wrapper { margin-bottom: 20px; }
.fdl-service-card-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--fdl-navy), var(--fdl-blue)); border-radius: var(--fdl-radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--fdl-yellow); }
.fdl-service-card-title { font-family: var(--fdl-font-primary); font-size: 1.15rem; font-weight: 700; color: var(--fdl-navy-dark); margin-bottom: 12px; }
.fdl-service-card-desc { color: var(--fdl-gray-dark); line-height: 1.7; margin-bottom: 16px; font-size: 0.9rem; }
.fdl-service-features { list-style: none; }
.fdl-service-features li { display: flex; align-items: center; gap: 8px; padding: 6px 0; color: var(--fdl-text-light); font-size: 0.85rem; }
.fdl-service-features li i { color: var(--fdl-blue); font-size: 0.8rem; }

/* ============================================
   PAFA SECTION
   ============================================ */
.fdl-pafa-wrapper { max-width: 1000px; margin: 0 auto; }
.fdl-pafa-intro { text-align: center; margin-bottom: 50px; }
.fdl-pafa-intro-img { width: 100%; max-height: 350px; object-fit: cover; border-radius: var(--fdl-radius-xl); margin-bottom: 30px; box-shadow: var(--fdl-shadow-md); }
.fdl-pafa-intro h3 { font-family: var(--fdl-font-primary); font-size: 1.8rem; font-weight: 700; color: var(--fdl-navy-dark); margin-bottom: 15px; }
.fdl-pafa-intro-text { font-size: 1.1rem; line-height: 1.9; color: var(--fdl-text-light); max-width: 750px; margin: 0 auto; }
.fdl-pafa-stats { display: flex; justify-content: center; gap: 50px; margin-bottom: 70px; flex-wrap: wrap; }
.fdl-pafa-stat { text-align: center; }
.fdl-pafa-stat-number { font-family: var(--fdl-font-primary); font-size: 2.8rem; font-weight: 800; color: var(--fdl-navy); line-height: 1; margin-bottom: 8px; }
.fdl-pafa-stat-label { font-size: 0.9rem; color: var(--fdl-gray-dark); font-weight: 600; }
.fdl-pafa-services { display: flex; flex-direction: column; }
.fdl-pafa-service-row { display: flex; gap: 35px; padding: 35px 0; border-bottom: 1px solid var(--fdl-gray); transition: var(--fdl-transition); }
.fdl-pafa-service-row:hover { background: var(--fdl-white); margin: 0 -20px; padding: 35px 20px; border-radius: var(--fdl-radius-lg); box-shadow: var(--fdl-shadow-md); border-bottom-color: transparent; }
.fdl-pafa-service-number { font-family: var(--fdl-font-primary); font-size: 2.2rem; font-weight: 800; color: var(--fdl-blue); opacity: 0.25; min-width: 70px; line-height: 1; }
.fdl-pafa-service-content h3 { font-family: var(--fdl-font-primary); font-size: 1.3rem; font-weight: 700; color: var(--fdl-navy-dark); margin-bottom: 12px; }
.fdl-pafa-service-content p { color: var(--fdl-text-light); line-height: 1.7; margin-bottom: 12px; }
.fdl-pafa-service-content ul { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.fdl-pafa-service-content ul li { position: relative; padding-left: 22px; color: var(--fdl-gray-dark); font-size: 0.88rem; }
.fdl-pafa-service-content ul li::before { content: '\2192'; position: absolute; left: 0; color: var(--fdl-blue); font-weight: 700; }
.fdl-pafa-trust { margin-top: 50px; text-align: center; }
.fdl-pafa-trust-content { background: var(--fdl-white); border-radius: var(--fdl-radius-lg); padding: 45px; box-shadow: var(--fdl-shadow-md); border: 2px solid var(--fdl-navy); }
.fdl-pafa-trust-content i { font-size: 2.8rem; color: var(--fdl-navy); margin-bottom: 18px; }
.fdl-pafa-trust-content h3 { font-family: var(--fdl-font-primary); font-size: 1.4rem; font-weight: 700; color: var(--fdl-navy-dark); margin-bottom: 12px; }
.fdl-pafa-trust-content p { color: var(--fdl-text-light); line-height: 1.8; max-width: 550px; margin: 0 auto; }

/* ============================================
   AI SERVICES
   ============================================ */
.fdl-ai-intro-section { position: relative; overflow: hidden; }
.fdl-ai-bg-animation { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76,0.06) 0%, transparent 60%), radial-gradient(ellipse at 70% 30%, rgba(201, 168, 76,0.04) 0%, transparent 50%); pointer-events: none; }
.fdl-ai-intro-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; align-items: center; }
.fdl-ai-intro-text h3 { font-family: var(--fdl-font-primary); font-size: 1.8rem; font-weight: 700; color: var(--fdl-navy-dark); margin-bottom: 18px; }
.fdl-ai-intro-text p { color: var(--fdl-text-light); line-height: 1.8; margin-bottom: 16px; }
.fdl-ai-intro-visual-img { width: 100%; border-radius: var(--fdl-radius-xl); box-shadow: var(--fdl-shadow-lg); min-height: 280px; object-fit: cover; }
.fdl-ai-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fdl-ai-service-card { position: relative; background: rgba(255,255,255,0.98); border-radius: var(--fdl-radius-lg); padding: 36px 26px; box-shadow: var(--fdl-shadow-sm); transition: var(--fdl-transition); border: 1px solid var(--fdl-gray); overflow: hidden; }
.fdl-ai-service-glow { position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(201, 168, 76,0.08) 0%, transparent 70%); opacity: 0; transition: opacity 0.5s ease; pointer-events: none; }
.fdl-ai-service-card:hover .fdl-ai-service-glow { opacity: 1; }
.fdl-ai-service-card:hover { transform: translateY(-8px); box-shadow: var(--fdl-shadow-xl); border-color: var(--fdl-blue); background: #ffffff; }
.fdl-ai-service-icon { width: 58px; height: 58px; background: linear-gradient(135deg, #C9A84C 0%, #B89234 100%); border-radius: var(--fdl-radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--fdl-white); margin-bottom: 20px; }
.fdl-ai-service-card h3 { font-family: var(--fdl-font-primary); font-size: 1.1rem; font-weight: 700; color: var(--fdl-navy-dark); margin-bottom: 10px; }
.fdl-ai-service-card p { color: var(--fdl-gray-dark); line-height: 1.7; margin-bottom: 16px; font-size: 0.9rem; }
.fdl-ai-service-card ul { list-style: none; }
.fdl-ai-service-card ul li { display: flex; align-items: center; gap: 8px; padding: 5px 0; color: var(--fdl-text-light); font-size: 0.85rem; }
.fdl-ai-service-card ul li i { font-size: 0.35rem; color: var(--fdl-blue); }
.fdl-ai-cta { text-align: center; padding: 50px; background: linear-gradient(135deg, #C9A84C 0%, #B89234 100%); border-radius: var(--fdl-radius-xl); color: var(--fdl-white); }
.fdl-ai-cta-content h3 { font-family: var(--fdl-font-primary); font-size: 1.8rem; font-weight: 700; margin-bottom: 12px; }
.fdl-ai-cta-content p { margin-bottom: 24px; opacity: 0.9; font-size: 1.05rem; }

.fdl-additional-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fdl-additional-service-item { background: var(--fdl-white); border-radius: var(--fdl-radius-md); padding: 24px 20px; text-align: center; box-shadow: var(--fdl-shadow-sm); transition: var(--fdl-transition); border: 1px solid var(--fdl-gray); }
.fdl-additional-service-item:hover { border-color: var(--fdl-blue); box-shadow: var(--fdl-shadow-md); transform: translateY(-4px); }
.fdl-additional-service-item i { font-size: 1.8rem; color: var(--fdl-blue); margin-bottom: 12px; }
.fdl-additional-service-item h4 { font-family: var(--fdl-font-primary); font-size: 1rem; font-weight: 600; color: var(--fdl-navy-dark); }

/* ============================================
   BLOG STYLES
   ============================================ */
.fdl-blog-featured { margin-bottom: 50px; }
.fdl-blog-featured-card { display: grid; grid-template-columns: 1.2fr 1fr; background: var(--fdl-white); border-radius: var(--fdl-radius-xl); overflow: hidden; box-shadow: var(--fdl-shadow-lg); }
.fdl-blog-featured-image { position: relative; min-height: 400px; overflow: hidden; }
.fdl-blog-featured-img { width: 100%; height: 100%; object-fit: cover; }
.fdl-blog-featured-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--fdl-navy), var(--fdl-blue)); display: flex; align-items: center; justify-content: center; }
.fdl-blog-featured-placeholder i { font-size: 5rem; color: rgba(255,255,255,0.2); }
.fdl-blog-featured-badge { position: absolute; top: 20px; left: 20px; background: var(--fdl-yellow); color: var(--fdl-navy); padding: 8px 20px; border-radius: 25px; font-weight: 700; font-size: 0.85rem; }
.fdl-blog-featured-content { padding: 50px; display: flex; flex-direction: column; justify-content: center; }
.fdl-blog-featured-content h2 { font-family: var(--fdl-font-primary); font-size: 1.8rem; font-weight: 700; color: var(--fdl-navy-dark); margin-bottom: 16px; line-height: 1.3; }
.fdl-blog-featured-content h2 a { color: inherit; text-decoration: none; }
.fdl-blog-featured-content h2 a:hover { color: var(--fdl-blue); }
.fdl-blog-featured-content p { color: var(--fdl-gray-dark); line-height: 1.7; margin-bottom: 20px; }
.fdl-blog-category { display: inline-block; background: var(--fdl-blue-pale); color: var(--fdl-blue); padding: 5px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; margin-bottom: 14px; }
.fdl-blog-category-large { font-size: 0.9rem; padding: 8px 20px; background: rgba(255,255,255,0.15); color: var(--fdl-yellow); }
.fdl-blog-meta { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 18px; color: var(--fdl-gray-dark); font-size: 0.85rem; }
.fdl-blog-meta span { display: flex; align-items: center; gap: 6px; }
.fdl-blog-layout { display: grid; grid-template-columns: 1fr 340px; gap: 45px; align-items: start; }
.fdl-blog-filters { display: flex; justify-content: space-between; align-items: center; margin-bottom: 35px; flex-wrap: wrap; gap: 18px; }
.fdl-blog-categories { display: flex; gap: 8px; flex-wrap: wrap; }
.fdl-blog-category-btn { padding: 8px 18px; background: var(--fdl-white); border: 1px solid var(--fdl-gray); border-radius: 25px; color: var(--fdl-text-light); text-decoration: none; font-size: 0.85rem; font-weight: 500; transition: var(--fdl-transition); }
.fdl-blog-category-btn:hover, .fdl-blog-category-btn.active { background: var(--fdl-navy); color: var(--fdl-white); border-color: var(--fdl-navy); }
.fdl-blog-search { display: flex; align-items: center; background: var(--fdl-white); border: 1px solid var(--fdl-gray); border-radius: var(--fdl-radius-md); overflow: hidden; }
.fdl-blog-search input { border: none; padding: 11px 16px; font-family: var(--fdl-font-body); font-size: 0.9rem; width: 220px; outline: none; }
.fdl-blog-search button { background: var(--fdl-navy); border: none; color: var(--fdl-white); padding: 11px 18px; cursor: pointer; transition: var(--fdl-transition); }
.fdl-blog-search button:hover { background: var(--fdl-blue); }
.fdl-blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 45px; }
.fdl-blog-card { background: var(--fdl-white); border-radius: var(--fdl-radius-lg); overflow: hidden; box-shadow: var(--fdl-shadow-sm); transition: var(--fdl-transition); border: 1px solid var(--fdl-gray); }
.fdl-blog-card:hover { transform: translateY(-6px); box-shadow: var(--fdl-shadow-lg); }
.fdl-blog-card-image { position: relative; height: 190px; overflow: hidden; }
.fdl-blog-card-featured-img { width: 100%; height: 100%; object-fit: cover; }
.fdl-blog-card-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--fdl-navy), var(--fdl-blue)); display: flex; align-items: center; justify-content: center; }
.fdl-blog-card-placeholder i { font-size: 2.5rem; color: rgba(255,255,255,0.2); }
.fdl-blog-card-image .fdl-blog-category { position: absolute; top: 14px; left: 14px; background: var(--fdl-yellow); color: var(--fdl-navy); }
.fdl-blog-card-content { padding: 22px; }
.fdl-blog-card-content h3 { font-family: var(--fdl-font-primary); font-size: 1.05rem; font-weight: 700; color: var(--fdl-navy-dark); margin-bottom: 10px; line-height: 1.4; }
.fdl-blog-card-content h3 a { color: inherit; text-decoration: none; }
.fdl-blog-card-content h3 a:hover { color: var(--fdl-blue); }
.fdl-blog-card-content p { color: var(--fdl-gray-dark); font-size: 0.88rem; line-height: 1.6; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.fdl-blog-read-more { display: inline-flex; align-items: center; gap: 6px; color: var(--fdl-navy); text-decoration: none; font-weight: 600; font-size: 0.88rem; transition: var(--fdl-transition); }
.fdl-blog-read-more:hover { color: var(--fdl-blue); gap: 10px; }
.fdl-pagination { display: flex; justify-content: center; gap: 8px; }
.fdl-pagination-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--fdl-white); border: 1px solid var(--fdl-gray); border-radius: var(--fdl-radius-sm); color: var(--fdl-text-light); text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: var(--fdl-transition); }
.fdl-pagination-btn:hover, .fdl-pagination-btn.active { background: var(--fdl-navy); color: var(--fdl-white); border-color: var(--fdl-navy); }

/* Blog Sidebar */
.fdl-sidebar-widget { background: var(--fdl-white); border-radius: var(--fdl-radius-lg); padding: 28px; margin-bottom: 24px; box-shadow: var(--fdl-shadow-sm); border: 1px solid var(--fdl-gray); }
.fdl-sidebar-title { font-family: var(--fdl-font-primary); font-size: 1.1rem; font-weight: 700; color: var(--fdl-navy-dark); margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.fdl-sidebar-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 35px; height: 3px; background: var(--fdl-yellow); border-radius: 2px; }
.fdl-sidebar-categories li { margin-bottom: 10px; }
.fdl-sidebar-categories a { display: flex; justify-content: space-between; align-items: center; color: var(--fdl-text-light); text-decoration: none; padding: 8px 0; border-bottom: 1px solid var(--fdl-gray); font-size: 0.9rem; transition: var(--fdl-transition); }
.fdl-sidebar-categories a:hover { color: var(--fdl-navy); padding-left: 8px; }
.fdl-category-count { background: var(--fdl-gray-light); padding: 2px 9px; border-radius: 12px; font-size: 0.8rem; }
.fdl-sidebar-posts { display: flex; flex-direction: column; gap: 16px; }
.fdl-sidebar-post { display: flex; gap: 14px; }
.fdl-sidebar-post-image { width: 70px; height: 70px; border-radius: var(--fdl-radius-sm); overflow: hidden; flex-shrink: 0; }
.fdl-sidebar-post-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--fdl-navy), var(--fdl-blue)); display: flex; align-items: center; justify-content: center; }
.fdl-sidebar-post-placeholder i { font-size: 1.3rem; color: rgba(255,255,255,0.3); }
.fdl-sidebar-post-content h5 { font-family: var(--fdl-font-primary); font-size: 0.85rem; font-weight: 600; line-height: 1.4; margin-bottom: 4px; }
.fdl-sidebar-post-content h5 a { color: var(--fdl-navy-dark); text-decoration: none; }
.fdl-sidebar-post-content h5 a:hover { color: var(--fdl-blue); }
.fdl-sidebar-post-date { font-size: 0.78rem; color: var(--fdl-gray-dark); }
.fdl-sidebar-newsletter { background: linear-gradient(150deg, #2C2C2C 0%, #171717 100%); color: var(--fdl-white); }
.fdl-sidebar-newsletter .fdl-sidebar-title { color: var(--fdl-white); }
.fdl-sidebar-newsletter p { color: rgba(255,255,255,0.75); margin-bottom: 18px; font-size: 0.88rem; }
.fdl-sidebar-newsletter-form { display: flex; flex-direction: column; gap: 12px; }
.fdl-sidebar-newsletter-form input { padding: 11px 14px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--fdl-radius-sm); color: var(--fdl-white); font-family: var(--fdl-font-body); font-size: 0.9rem; }
.fdl-sidebar-newsletter-form input:focus { outline: none; border-color: var(--fdl-yellow); }
.fdl-sidebar-newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.fdl-sidebar-cta { background: linear-gradient(135deg, var(--fdl-blue), var(--fdl-navy)); color: var(--fdl-white); text-align: center; }
.fdl-sidebar-cta h4 { color: var(--fdl-white); margin-bottom: 8px; font-size: 1.2rem; }
.fdl-sidebar-cta p { color: rgba(255,255,255,0.85); margin-bottom: 18px; font-size: 0.88rem; }
.fdl-sidebar-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.fdl-tag { padding: 5px 14px; background: var(--fdl-gray-light); border-radius: 20px; color: var(--fdl-text-light); text-decoration: none; font-size: 0.8rem; transition: var(--fdl-transition); }
.fdl-tag:hover { background: var(--fdl-navy); color: var(--fdl-white); }

/* ============================================
   SINGLE BLOG
   ============================================ */
.fdl-single-blog-title { font-size: clamp(1.8rem, 3vw, 2.4rem); line-height: 1.2; }
.fdl-single-blog-meta { display: flex; justify-content: center; gap: 22px; margin-top: 14px; font-size: 0.9rem; opacity: 0.85; }
.fdl-single-blog-meta span { display: flex; align-items: center; gap: 7px; }
.fdl-single-blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 45px; align-items: start; }
.fdl-single-blog-article { font-size: 1.05rem; line-height: 1.9; color: var(--fdl-text-light); }
.fdl-single-blog-article p { margin-bottom: 20px; }
.fdl-single-blog-article h2 { font-family: var(--fdl-font-primary); font-size: 1.95rem; font-weight: 700; color: var(--fdl-navy-dark); margin: 46px 0 20px; line-height: 1.3; }
.fdl-single-blog-article h3 { font-family: var(--fdl-font-primary); font-size: 1.7rem; font-weight: 700; color: var(--fdl-navy-dark); margin: 40px 0 18px; line-height: 1.3; }
.fdl-single-blog-article strong { color: var(--fdl-navy-dark); }
.fdl-single-blog-article a { color: var(--fdl-gold-deep); text-decoration: underline; }
.fdl-single-blog-article ul, .fdl-single-blog-article ol { margin: 0 0 20px 24px; padding: 0; }
.fdl-single-blog-article li { margin-bottom: 8px; }
.fdl-single-blog-article blockquote { margin: 28px 0; padding: 18px 24px; border-left: 3px solid var(--fdl-yellow); background: var(--fdl-yellow-pale); font-style: italic; color: var(--fdl-navy-dark); border-radius: 0 var(--fdl-radius-md) var(--fdl-radius-md) 0; }
.fdl-single-blog-article img { max-width: 100%; height: auto; border-radius: var(--fdl-radius-md); margin: 24px 0; display: block; }
.fdl-article-image-wrapper { margin: 30px 0; border-radius: var(--fdl-radius-md); overflow: hidden; }
.fdl-article-image { width: 100%; border-radius: var(--fdl-radius-md); }
.fdl-blockquote { margin: 30px 0; padding: 28px 32px; background: var(--fdl-gray-light); border-left: 4px solid var(--fdl-navy); border-radius: 0 var(--fdl-radius-md) var(--fdl-radius-md) 0; font-style: italic; }
.fdl-blockquote p { margin-bottom: 10px; font-size: 1.1rem; color: var(--fdl-navy-dark); }
.fdl-blockquote cite { font-style: normal; color: var(--fdl-gray-dark); font-size: 0.9rem; }
.fdl-single-blog-share { margin-top: 45px; padding: 35px 0; border-top: 1px solid var(--fdl-gray); border-bottom: 1px solid var(--fdl-gray); }
.fdl-single-blog-share h4 { font-family: var(--fdl-font-primary); font-weight: 700; color: var(--fdl-navy-dark); margin-bottom: 16px; }
.fdl-share-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.fdl-share-btn { display: inline-flex; align-items: center; gap: 7px; padding: 10px 18px; border-radius: var(--fdl-radius-sm); color: var(--fdl-white); text-decoration: none; font-size: 0.88rem; font-weight: 600; transition: var(--fdl-transition); }
.fdl-share-btn:hover { transform: translateY(-2px); box-shadow: var(--fdl-shadow-md); }
.fdl-share-facebook { background: #1877f2; }
.fdl-share-twitter { background: #1da1f2; }
.fdl-share-linkedin { background: #0a66c2; }
.fdl-share-whatsapp { background: #25d366; }
.fdl-author-box { margin-top: 45px; padding: 35px; background: var(--fdl-gray-light); border-radius: var(--fdl-radius-lg); display: flex; gap: 22px; align-items: center; }
.fdl-author-avatar { width: 90px; height: 90px; background: linear-gradient(135deg, var(--fdl-navy), var(--fdl-blue)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--fdl-yellow); font-weight: 800; font-family: var(--fdl-font-primary); font-size: 1.6rem; flex-shrink: 0; }
.fdl-author-info h4 { font-family: var(--fdl-font-primary); font-size: 1.2rem; font-weight: 700; color: var(--fdl-navy-dark); margin-bottom: 4px; }
.fdl-author-title { color: var(--fdl-blue); font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; }
.fdl-author-info p { color: var(--fdl-text-light); line-height: 1.7; }
.fdl-related-articles { margin-top: 50px; }
.fdl-related-articles h3 { font-family: var(--fdl-font-primary); font-size: 1.7rem; font-weight: 700; color: var(--fdl-navy-dark); margin-bottom: 25px; }
.fdl-related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.fdl-related-card { background: var(--fdl-white); border-radius: var(--fdl-radius-lg); overflow: hidden; box-shadow: var(--fdl-shadow-sm); transition: var(--fdl-transition); border: 1px solid var(--fdl-gray); }
.fdl-related-card:hover { transform: translateY(-5px); box-shadow: var(--fdl-shadow-lg); }
.fdl-related-card-image { height: 170px; overflow: hidden; }
.fdl-related-image-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--fdl-navy), var(--fdl-blue)); display: flex; align-items: center; justify-content: center; }
.fdl-related-image-placeholder i { font-size: 2.2rem; color: rgba(255,255,255,0.2); }
.fdl-related-card-content { padding: 22px; }
.fdl-related-card-content h4 { font-family: var(--fdl-font-primary); font-size: 1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.fdl-related-card-content h4 a { color: var(--fdl-navy-dark); text-decoration: none; }
.fdl-related-card-content h4 a:hover { color: var(--fdl-blue); }
.fdl-toc-list { list-style: none; }
.fdl-toc-list li { margin-bottom: 8px; }
.fdl-toc-list a { display: flex; align-items: center; color: var(--fdl-text-light); text-decoration: none; padding: 6px 0; transition: var(--fdl-transition); font-size: 0.9rem; }
.fdl-toc-list a::before { content: ''; width: 5px; height: 5px; background: var(--fdl-blue); border-radius: 50%; margin-right: 10px; flex-shrink: 0; }
.fdl-toc-list a:hover { color: var(--fdl-navy); padding-left: 4px; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.fdl-contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 45px; margin-bottom: 55px; }
.fdl-contact-form-wrapper h2 { font-family: var(--fdl-font-primary); font-size: 1.9rem; font-weight: 700; color: var(--fdl-navy-dark); margin-bottom: 8px; }
.fdl-contact-form-desc { color: var(--fdl-gray-dark); margin-bottom: 28px; }
.fdl-contact-form { background: var(--fdl-white); padding: 36px; border-radius: var(--fdl-radius-lg); box-shadow: var(--fdl-shadow-md); border: 1px solid var(--fdl-gray); }
.fdl-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fdl-form-group { margin-bottom: 18px; }
.fdl-form-group label { display: block; font-weight: 600; color: var(--fdl-navy-dark); margin-bottom: 7px; font-size: 0.88rem; }
.fdl-required { color: #e53e3e; }
.fdl-form-group input, .fdl-form-group select, .fdl-form-group textarea { width: 100%; padding: 12px 15px; border: 1px solid var(--fdl-gray); border-radius: var(--fdl-radius-sm); font-family: var(--fdl-font-body); font-size: 0.94rem; transition: var(--fdl-transition); background: var(--fdl-white); }
.fdl-form-group input:focus, .fdl-form-group select:focus, .fdl-form-group textarea:focus { outline: none; border-color: var(--fdl-blue); box-shadow: 0 0 0 3px rgba(201, 168, 76,0.1); }
.fdl-contact-info-card { background: var(--fdl-white); border-radius: var(--fdl-radius-lg); padding: 36px; box-shadow: var(--fdl-shadow-md); border: 1px solid var(--fdl-gray); margin-bottom: 24px; }
.fdl-contact-info-card h3, .fdl-contact-team h3 { font-family: var(--fdl-font-primary); font-size: 1.4rem; font-weight: 700; color: var(--fdl-navy-dark); margin-bottom: 24px; padding-bottom: 16px; border-bottom: 2px solid var(--fdl-gray); }
.fdl-contact-info-item { display: flex; gap: 18px; margin-bottom: 22px; }
.fdl-contact-info-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--fdl-navy), var(--fdl-blue)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--fdl-yellow); font-size: 1.1rem; flex-shrink: 0; }
.fdl-contact-info-content h4 { font-family: var(--fdl-font-primary); font-size: 0.95rem; font-weight: 700; color: var(--fdl-navy-dark); margin-bottom: 4px; }
.fdl-contact-info-content p { color: var(--fdl-gray-dark); margin-bottom: 2px; font-size: 0.9rem; }
.fdl-contact-info-content a { color: var(--fdl-blue); }
.fdl-contact-info-content small { color: var(--fdl-text-muted); font-size: 0.8rem; }
.fdl-contact-team { background: var(--fdl-white); border-radius: var(--fdl-radius-lg); padding: 36px; box-shadow: var(--fdl-shadow-md); border: 1px solid var(--fdl-gray); }
.fdl-contact-team-member { display: flex; gap: 18px; padding: 18px; background: var(--fdl-gray-light); border-radius: var(--fdl-radius-md); margin-bottom: 14px; transition: var(--fdl-transition); align-items: center; }
.fdl-contact-team-member:hover { background: var(--fdl-white); box-shadow: var(--fdl-shadow-sm); }
.fdl-contact-team-avatar { width: 55px; height: 55px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid var(--fdl-blue); }
.fdl-contact-team-avatar-img { width: 100%; height: 100%; object-fit: cover; }
.fdl-contact-team-avatar-fallback { width: 100%; height: 100%; background: linear-gradient(135deg, var(--fdl-navy), var(--fdl-blue)); display: flex; align-items: center; justify-content: center; color: var(--fdl-yellow); font-weight: 800; font-family: var(--fdl-font-primary); font-size: 1.1rem; }
.fdl-contact-team-info h4 { font-family: var(--fdl-font-primary); font-weight: 700; color: var(--fdl-navy-dark); margin-bottom: 3px; font-size: 0.95rem; }
.fdl-contact-team-role { color: var(--fdl-blue); font-size: 0.82rem; font-weight: 600; margin-bottom: 8px; }
.fdl-contact-team-phone, .fdl-contact-team-whatsapp { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; font-size: 0.82rem; margin-right: 12px; transition: var(--fdl-transition); }
.fdl-contact-team-phone { color: var(--fdl-text-light); }
.fdl-contact-team-phone:hover { color: var(--fdl-navy); }
.fdl-contact-team-whatsapp { color: #25D366; font-weight: 600; }
.fdl-contact-team-whatsapp:hover { opacity: 0.8; }
.fdl-contact-map { margin-bottom: 0; }
.fdl-map-placeholder { width: 100%; height: 350px; background: var(--fdl-gray-light); border-radius: var(--fdl-radius-lg); display: flex; align-items: center; justify-content: center; border: 2px dashed var(--fdl-gray-medium); }
.fdl-map-content { text-align: center; color: var(--fdl-gray-dark); }
.fdl-map-content i { font-size: 3rem; color: var(--fdl-blue); margin-bottom: 14px; }
.fdl-map-content h3 { font-family: var(--fdl-font-primary); font-size: 1.2rem; color: var(--fdl-navy-dark); margin-bottom: 8px; }
.fdl-map-note { font-size: 0.85rem; opacity: 0.7; margin-top: 4px; }

/* ============================================
   CONSULTATION MODAL (Enterprise Upgrade)
   ============================================ */
.fdl-consultation-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
}
.fdl-consultation-modal.active {
    display: flex;
}
.fdl-consultation-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(23, 20, 16, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}
.fdl-consultation-modal-dialog {
    position: relative;
    background: linear-gradient(145deg, #ffffff 0%, #FBF8F2 100%);
    width: min(780px, 100%);
    border-radius: 32px;
    padding: 40px;
    max-height: 90vh;
    overflow: auto;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(201, 168, 76, 0.2);
    animation: modalSlideIn 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
.fdl-modal-close {
    position: absolute;
    right: 24px;
    top: 24px;
    border: none;
    background: #F0E9DB;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2C2C2C;
}
.fdl-modal-close:hover {
    background: #2C2C2C;
    color: #C9A84C;
    transform: rotate(90deg);
}
.fdl-modal-header {
    text-align: center;
    margin-bottom: 28px;
}
.fdl-modal-header h2 {
    font-size: 1.8rem;
    color: #2C2C2C;
    margin: 16px 0 8px;
}
.fdl-modal-header p {
    color: #5A544B;
}
.fdl-consultation-form .fdl-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.fdl-checkbox-group {
    margin: 20px 0;
}
.fdl-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #3A362F;
}
.fdl-checkbox-label input {
    width: 20px;
    height: 20px;
}
.fdl-consultation-form-note {
    margin-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #8A7E6E;
}
.fdl-consultation-form-note i {
    color: #C9A84C;
    margin-right: 6px;
}
body.fdl-modal-open {
    overflow: hidden;
}

/* ============================================
   ANIMATIONS & REVEAL
   ============================================ */
.fdl-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.15, 0.85, 0.3, 1.05);
}
.fdl-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1200px) {
    .fdl-nav-menu { display: none; }
    .fdl-nav-cta { margin-left: auto; margin-right: 12px; }
    .fdl-mobile-toggle { display: flex; }
}
@media (max-width: 1024px) {
    .fdl-logo-img { height: 55px; max-width: 220px; }
    .fdl-header.scrolled .fdl-logo-img { height: 42px; max-width: 190px; }
    .fdl-overview-grid, .fdl-goals-grid, .fdl-ai-intro-grid { grid-template-columns: 1fr; }
    .fdl-mvv-grid, .fdl-business-grid, .fdl-why-grid, .fdl-services-grid, .fdl-ai-services-grid { grid-template-columns: repeat(2, 1fr); }
    .fdl-footer-grid { grid-template-columns: repeat(2, 1fr); }
    .fdl-blog-layout, .fdl-single-blog-layout { grid-template-columns: 1fr; }
    .fdl-blog-sidebar, .fdl-single-blog-sidebar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .fdl-contact-grid { grid-template-columns: 1fr; }
    .fdl-service-category-card { grid-template-columns: 1fr; }
    .fdl-newsletter-wrapper { flex-direction: column; text-align: center; }
    .fdl-newsletter-form { min-width: 100%; flex-direction: row; }
    .fdl-text-carousel-arrow { width: 40px; height: 40px; }
}
@media (max-width: 768px) {
    :root { --fdl-section-padding: 60px 0; }
    .fdl-logo-img { height: 50px; max-width: 200px; }
    .fdl-hero-title { font-size: 1.8rem; }
    .fdl-page-hero-title, .fdl-section-title { font-size: 1.6rem; }
    .fdl-hero-buttons { flex-direction: column; }
    .fdl-mvv-grid, .fdl-business-grid, .fdl-why-grid, .fdl-services-grid, .fdl-ai-services-grid { grid-template-columns: 1fr; }
    .fdl-stats-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .fdl-footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .fdl-blog-grid { grid-template-columns: 1fr; }
    .fdl-related-grid { grid-template-columns: 1fr; }
    .fdl-form-row { grid-template-columns: 1fr; }
    .fdl-pafa-service-row { flex-direction: column; gap: 16px; }
    .fdl-newsletter-form { flex-direction: column; }
    .fdl-cta-buttons { flex-direction: column; align-items: center; }
    .fdl-footer-bottom-wrapper { flex-direction: column; gap: 10px; text-align: center; }
    .fdl-blog-featured-card { grid-template-columns: 1fr; }
    .fdl-author-box { flex-direction: column; text-align: center; }
    .fdl-share-buttons { flex-direction: column; }
    .fdl-consultation-modal-dialog { padding: 24px; }
    .fdl-consultation-form .fdl-form-row { grid-template-columns: 1fr; gap: 12px; }
    .fdl-modal-header h2 { font-size: 1.4rem; }
}
@media (max-width: 480px) {
    .fdl-logo-img { height: 42px; max-width: 170px; }
    .fdl-hero-text-carousel-wrapper { min-height: 280px; }
    .fdl-hero-text-content .fdl-hero-title { font-size: 1.4rem; }
    .fdl-text-carousel-arrow { display: none; }
    .fdl-stats-grid { grid-template-columns: 1fr; }
    .fdl-pafa-stats { flex-direction: column; align-items: center; }
    .fdl-contact-form { padding: 20px; }

    /* ---- Mobile header: keep "Book Appointment" fully visible ----
       On phones there isn't enough room for logo + theme toggle + CTA + hamburger
       on one row, which was squeezing the CTA and truncating its label. Free up
       space by tightening the header and moving the theme toggle into the drawer
       (it's re-added there below), leaving the CTA text un-clipped. */
    .fdl-header .fdl-container { padding: 0 14px; }
    .fdl-nav-wrapper { gap: 10px; }
    .fdl-logo-mark { height: 38px; }
    .fdl-header.scrolled .fdl-logo-mark { height: 34px; }
    .fdl-header .fdl-theme-toggle { display: none; }
    .fdl-nav-cta { padding: 10px 16px; font-size: 0.78rem; gap: 6px; }
    .fdl-nav-cta i { font-size: 0.8rem; }
    .fdl-mobile-toggle { padding: 6px; }
}
body.admin-bar .fdl-header { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar .fdl-header { top: 46px; } }
/* ============================================
   v2.5 ENHANCEMENTS
   ============================================ */

/* ---- Inline AJAX form messages (replaces alert popups) ---- */
.fdl-form-message { display: none; align-items: center; gap: 10px; margin-top: 18px; padding: 14px 18px; border-radius: var(--fdl-radius-md); font-size: 0.9rem; font-weight: 500; line-height: 1.5; }
.fdl-form-message.visible { display: flex; animation: fdl-fade-up 0.4s ease; }
.fdl-form-message i { font-size: 1.1rem; flex-shrink: 0; }
.fdl-form-message-success { background: rgba(34, 197, 94, 0.12); color: #15803d; border: 1px solid rgba(34, 197, 94, 0.3); }
.fdl-form-message-error { background: rgba(239, 68, 68, 0.1); color: #b91c1c; border: 1px solid rgba(239, 68, 68, 0.3); }
@keyframes fdl-fade-up { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ---- Consultation modal: 3-column qualifying row ---- */
.fdl-consultation-form .fdl-form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }

/* ---- Hero trust indicators ---- */
.fdl-hero-trust { display: flex; flex-wrap: wrap; gap: 22px 30px; justify-content: center; align-items: center; margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.fdl-hero-trust-item { display: flex; align-items: center; gap: 9px; color: rgba(255, 255, 255, 0.82); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.3px; }
.fdl-hero-trust-item i { color: var(--fdl-yellow); font-size: 0.95rem; }

/* ============================================
   BUSINESS OUTCOMES
   ============================================ */
.fdl-outcomes-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.fdl-outcome-card { position: relative; background: var(--fdl-white); border: 1px solid var(--fdl-gray); border-radius: var(--fdl-radius-lg); padding: 32px 22px; text-align: center; box-shadow: var(--fdl-shadow-sm); transition: var(--fdl-transition); overflow: hidden; }
.fdl-outcome-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--fdl-blue), var(--fdl-yellow)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.fdl-outcome-card:hover { transform: translateY(-6px); box-shadow: var(--fdl-shadow-lg); border-color: transparent; }
.fdl-outcome-card:hover::before { transform: scaleX(1); }
.fdl-outcome-icon { width: 60px; height: 60px; margin: 0 auto 18px; border-radius: var(--fdl-radius-full); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--fdl-navy); background: linear-gradient(135deg, var(--fdl-yellow), var(--fdl-yellow-light)); box-shadow: 0 6px 18px rgba(201, 168, 76, 0.25); }
.fdl-outcome-metric { font-family: var(--fdl-font-primary); font-size: 2.1rem; font-weight: 800; line-height: 1; background: linear-gradient(135deg, var(--fdl-navy), var(--fdl-blue)); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 8px; }
.fdl-outcome-title { font-family: var(--fdl-font-primary); font-size: 0.95rem; font-weight: 700; color: var(--fdl-navy-dark); margin-bottom: 6px; }
.fdl-outcome-text { font-size: 0.8rem; color: var(--fdl-gray-dark); line-height: 1.55; }

/* ============================================
   HOW WE WORK (Timeline)
   ============================================ */
.fdl-process-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.fdl-process-timeline::before { content: ''; position: absolute; top: 36px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, var(--fdl-blue), var(--fdl-yellow)); opacity: 0.4; z-index: 0; }
.fdl-process-step { position: relative; z-index: 1; text-align: center; }
.fdl-process-num { width: 72px; height: 72px; margin: 0 auto 22px; border-radius: var(--fdl-radius-full); background: var(--fdl-white); border: 2px solid var(--fdl-blue); color: var(--fdl-navy); display: flex; align-items: center; justify-content: center; font-family: var(--fdl-font-primary); font-size: 1.4rem; font-weight: 800; box-shadow: var(--fdl-shadow-md); transition: var(--fdl-transition); }
.fdl-process-step:hover .fdl-process-num { background: var(--fdl-navy); color: var(--fdl-yellow); border-color: var(--fdl-yellow); transform: translateY(-5px); }
.fdl-process-icon { font-size: 1rem; color: var(--fdl-blue); margin-bottom: 10px; }
.fdl-process-step h4 { font-family: var(--fdl-font-primary); font-size: 1.1rem; font-weight: 700; color: var(--fdl-navy-dark); margin-bottom: 10px; }
.fdl-process-step p { font-size: 0.88rem; color: var(--fdl-gray-dark); line-height: 1.65; max-width: 240px; margin: 0 auto; }

/* ============================================
   INDUSTRIES GRID
   ============================================ */
.fdl-industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.fdl-industry-card { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 30px 18px; background: var(--fdl-white); border: 1px solid var(--fdl-gray); border-radius: var(--fdl-radius-lg); text-align: center; transition: var(--fdl-transition); }
.fdl-industry-card:hover { transform: translateY(-5px); border-color: var(--fdl-blue); box-shadow: var(--fdl-shadow-md); }
.fdl-industry-icon { width: 56px; height: 56px; border-radius: var(--fdl-radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.35rem; color: var(--fdl-blue); background: var(--fdl-blue-pale); transition: var(--fdl-transition); }
.fdl-industry-card:hover .fdl-industry-icon { background: var(--fdl-navy); color: var(--fdl-yellow); }
.fdl-industry-card h4 { font-family: var(--fdl-font-secondary); font-size: 0.92rem; font-weight: 600; color: var(--fdl-navy-dark); }

/* ============================================
   SERVICE PROCESS FLOW (Challenge -> Optimization)
   ============================================ */
.fdl-flow-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.fdl-flow-step { position: relative; background: var(--fdl-white); border: 1px solid var(--fdl-gray); border-radius: var(--fdl-radius-md); padding: 26px 18px; text-align: center; transition: var(--fdl-transition); }
.fdl-flow-step:hover { transform: translateY(-5px); box-shadow: var(--fdl-shadow-md); border-color: var(--fdl-blue); }
.fdl-flow-step:not(:last-child)::after { content: '\f061'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: -13px; top: 50%; transform: translateY(-50%); color: var(--fdl-blue); font-size: 0.85rem; z-index: 2; }
.fdl-flow-icon { width: 52px; height: 52px; margin: 0 auto 14px; border-radius: var(--fdl-radius-full); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--fdl-white); background: linear-gradient(135deg, var(--fdl-navy), var(--fdl-blue)); }
.fdl-flow-step h4 { font-family: var(--fdl-font-primary); font-size: 0.95rem; font-weight: 700; color: var(--fdl-navy-dark); margin-bottom: 8px; }
.fdl-flow-step p { font-size: 0.8rem; color: var(--fdl-gray-dark); line-height: 1.55; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.fdl-faq-wrapper { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.fdl-faq-item { background: var(--fdl-white); border: 1px solid var(--fdl-gray); border-radius: var(--fdl-radius-md); overflow: hidden; transition: var(--fdl-transition); }
.fdl-faq-item.open { border-color: var(--fdl-blue); box-shadow: var(--fdl-shadow-sm); }
.fdl-faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; background: transparent; border: none; cursor: pointer; text-align: left; font-family: var(--fdl-font-primary); font-size: 1rem; font-weight: 600; color: var(--fdl-navy-dark); transition: var(--fdl-transition-fast); }
.fdl-faq-question:hover { color: var(--fdl-blue); }
.fdl-faq-question i { flex-shrink: 0; color: var(--fdl-blue); transition: transform 0.3s ease; font-size: 0.9rem; }
.fdl-faq-item.open .fdl-faq-question i { transform: rotate(45deg); }
.fdl-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.fdl-faq-item.open .fdl-faq-answer { max-height: 400px; }
.fdl-faq-answer p { padding: 0 24px 22px; color: var(--fdl-text-light); line-height: 1.75; font-size: 0.93rem; }

/* ============================================
   RESPONSIVE — v2.5 sections
   ============================================ */
@media (max-width: 1024px) {
    .fdl-outcomes-grid { grid-template-columns: repeat(3, 1fr); }
    .fdl-process-timeline { grid-template-columns: repeat(2, 1fr); }
    .fdl-process-timeline::before { display: none; }
    .fdl-industries-grid { grid-template-columns: repeat(3, 1fr); }
    .fdl-flow-grid { grid-template-columns: repeat(2, 1fr); }
    .fdl-flow-step:not(:last-child)::after { display: none; }
    .fdl-consultation-form .fdl-form-row-3 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .fdl-outcomes-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .fdl-industries-grid { grid-template-columns: repeat(2, 1fr); }
    .fdl-flow-grid { grid-template-columns: 1fr; }
    .fdl-hero-trust { gap: 14px 22px; }

    /* ---- MOBILE INPUT WIDTH MAXIMIZATION (guest + logged-in) ---- */
    .fdl-form-group input,
    .fdl-form-group select,
    .fdl-form-group textarea { width: 100%; max-width: 100%; font-size: 16px; /* prevents iOS zoom */ padding: 14px 16px; }
    .fdl-contact-form,
    .fdl-consultation-modal-dialog,
    .fdl-contact-info-card { padding-left: 16px; padding-right: 16px; }
    .fdl-form-row,
    .fdl-consultation-form .fdl-form-row,
    .fdl-consultation-form .fdl-form-row-3 { grid-template-columns: 1fr; gap: 0; }
    .fdl-newsletter-form input { width: 100%; }
}
@media (max-width: 480px) {
    .fdl-outcomes-grid { grid-template-columns: 1fr; }
    .fdl-industries-grid { grid-template-columns: 1fr; }
    .fdl-process-timeline { grid-template-columns: 1fr; }
    /* Edge-to-edge field width on small phones */
    .fdl-contact-form { padding: 18px 14px; }
    .fdl-consultation-modal { padding: 10px; }
    .fdl-consultation-modal-dialog { padding: 22px 16px; }
    .fdl-form-group input,
    .fdl-form-group select,
    .fdl-form-group textarea { padding: 14px 14px; }
}

/* ---- Outcome metric + suffix alignment ---- */
.fdl-outcome-metric-wrap { display: inline-flex; align-items: baseline; justify-content: center; gap: 2px; margin-bottom: 8px; }
.fdl-outcome-metric-wrap .fdl-outcome-metric { margin-bottom: 0; }
.fdl-outcome-suffix { font-family: var(--fdl-font-primary); font-size: 1.4rem; font-weight: 800; color: var(--fdl-blue); line-height: 1; }

/* ---- Hero subheading: one item per line on mobile only ---- */
.fdl-hero-subtitle-segmented .fdl-hero-line { display: inline; }
@media (max-width: 768px) {
    .fdl-hero-subtitle-segmented .fdl-hero-line { display: block; }
    .fdl-hero-subtitle-segmented .fdl-hero-line + .fdl-hero-line { margin-top: 3px; }
}

/* ============================================================
   FAHARI DENTAL — LUXURY COMPONENTS & THEME  (v1.0 additions)
   ============================================================ */

/* ---- Refined section rhythm & gold ornaments ---- */
.fdl-section-label { background: var(--fdl-blue-pale); color: var(--fdl-gold-deep); letter-spacing: 3.5px; font-weight: 600; }
.fdl-section-title { background: none; -webkit-background-clip: initial; background-clip: initial; color: var(--fdl-text); }
.fdl-section-subtitle { color: var(--fdl-gray-dark); }
.fdl-ornament { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 0 auto 14px; }
.fdl-ornament::before, .fdl-ornament::after { content: ''; width: 44px; height: 1px; background: linear-gradient(90deg, transparent, var(--fdl-blue)); }
.fdl-ornament::after { background: linear-gradient(90deg, var(--fdl-blue), transparent); }
.fdl-ornament i { color: var(--fdl-blue); font-size: 0.8rem; }

/* ---- Preloader (ivory + tooth) ---- */
#fdl-preloader { background: var(--fdl-ivory); }
.fdl-loader-circle { border: 3px solid rgba(201,168,76,0.15); border-top-color: var(--fdl-blue); border-right-color: var(--fdl-gold-deep); }
.fdl-loader-text { color: var(--fdl-text); font-family: var(--fdl-font-primary); font-weight: 600; letter-spacing: 8px; }
.fdl-preloader-mark { width: 60px; height: 60px; margin: 0 auto 18px; }
.fdl-preloader-mark img { width: 100%; height: 100%; object-fit: contain; animation: fdl-float 2.4s ease-in-out infinite; }
@keyframes fdl-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ---- Header logo lockup (tooth + wordmark) ---- */
.fdl-logo { gap: 12px; align-items: center; }
.fdl-logo-mark { height: 52px; width: auto; flex-shrink: 0; transition: var(--fdl-transition); filter: drop-shadow(0 3px 8px rgba(0,0,0,0.18)); }
.fdl-header.scrolled .fdl-logo-mark { height: 44px; filter: none; }
.fdl-logo-word { display: flex; flex-direction: column; line-height: 1; }
.fdl-logo-word .fdl-logo-name { font-family: var(--fdl-font-primary); font-size: 1.5rem; font-weight: 600; letter-spacing: 5px; color: #fff; transition: var(--fdl-transition); }
.fdl-logo-word .fdl-logo-tag { font-family: var(--fdl-font-secondary); font-size: 0.5rem; font-weight: 500; letter-spacing: 3.5px; color: var(--fdl-blue); margin-top: 5px; }
.fdl-header.scrolled .fdl-logo-word .fdl-logo-name { color: var(--fdl-text); }
.fdl-header:not(.scrolled) .fdl-logo-word .fdl-logo-name { text-shadow: 0 2px 12px rgba(0,0,0,0.35); }

/* ---- Theme toggle button ---- */
.fdl-theme-toggle { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.28); background: rgba(255,255,255,0.08); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; transition: var(--fdl-transition); flex-shrink: 0; }
.fdl-theme-toggle:hover { border-color: var(--fdl-blue); color: var(--fdl-blue); }
.fdl-header.scrolled .fdl-theme-toggle { border-color: var(--fdl-gray-medium); background: transparent; color: var(--fdl-text); }
.fdl-header.scrolled .fdl-theme-toggle:hover { color: var(--fdl-gold-deep); border-color: var(--fdl-blue); }
.fdl-theme-toggle .fa-sun { display: none; }
body.fdl-theme-dark .fdl-theme-toggle .fa-moon { display: none; }
body.fdl-theme-dark .fdl-theme-toggle .fa-sun { display: inline; }

/* ============================================================
   HERO — luxury media slideshow
   ============================================================ */
.fdl-hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; padding: 150px 0 90px; background: linear-gradient(160deg, #201d17 0%, #2C2C2C 45%, #1a1712 100%); }
.fdl-hero-media { position: absolute; inset: 0; z-index: 0; }
.fdl-hero-slide-media { position: absolute; inset: 0; opacity: 0; z-index: 1; transition: opacity 1.4s ease-in-out; }
.fdl-hero-slide-media.active { opacity: 1; }
.fdl-hero-slide-media img, .fdl-hero-slide-media video { width: 100%; height: 100%; object-fit: cover; }
.fdl-hero-media-overlay { position: absolute; inset: 0; background: linear-gradient(165deg, rgba(23,20,16,0.78) 0%, rgba(44,40,32,0.62) 45%, rgba(23,20,16,0.82) 100%); z-index: 2; }
.fdl-hero-media-fallback { position: absolute; inset: 0; z-index: 0; background:
   radial-gradient(circle at 78% 30%, rgba(201,168,76,0.16) 0%, transparent 45%),
   radial-gradient(circle at 20% 80%, rgba(232,213,163,0.08) 0%, transparent 50%),
   linear-gradient(160deg, #201d17 0%, #2C2C2C 50%, #1a1712 100%); }
.fdl-hero-inner { position: relative; z-index: 3; max-width: 880px; margin: 0 auto; padding: 0 24px; color: #fff; }
.fdl-hero-tooth { width: 84px; height: 84px; margin: 0 auto 26px; }
.fdl-hero-tooth img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 10px 30px rgba(201,168,76,0.35)); animation: fdl-float 3.2s ease-in-out infinite; }
.fdl-hero .fdl-hero-badge { background: rgba(201,168,76,0.14); border: 1px solid rgba(201,168,76,0.4); color: var(--fdl-blue-light); backdrop-filter: blur(10px); }
.fdl-hero h1 { font-family: var(--fdl-font-primary); font-weight: 600; font-size: clamp(2.4rem, 4.6vw, 4rem); line-height: 1.12; letter-spacing: 0.3px; margin-bottom: 22px; color: #fff; text-shadow: 0 6px 30px rgba(0,0,0,0.4); }
.fdl-hero h1 .fdl-gold { color: var(--fdl-blue); font-style: italic; }
.fdl-hero-sub { font-family: var(--fdl-font-secondary); font-size: 1.12rem; line-height: 1.8; color: rgba(255,255,255,0.86); max-width: 600px; margin: 0 auto 38px; font-weight: 300; }
.fdl-hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.fdl-hero-slideshow-dots { display: flex; gap: 10px; justify-content: center; margin-top: 44px; }
.fdl-hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.28); border: none; cursor: pointer; transition: var(--fdl-transition); padding: 0; }
.fdl-hero-dot.active { background: var(--fdl-blue); width: 30px; border-radius: 6px; }
.fdl-hero-trust-row { display: flex; flex-wrap: wrap; gap: 16px 34px; justify-content: center; margin-top: 40px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.12); }
.fdl-hero-trust-row span { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,0.8); font-size: 0.82rem; font-family: var(--fdl-font-secondary); font-weight: 400; letter-spacing: 0.3px; }
.fdl-hero-trust-row i { color: var(--fdl-blue); }

/* ============================================================
   WELCOME / ABOUT refinements
   ============================================================ */
.fdl-overview-heading { font-weight: 600; color: var(--fdl-text); }
.fdl-overview-experience-badge { background: var(--fdl-text); border: 1px solid var(--fdl-gold-deep); }
.fdl-overview-img { border-radius: var(--fdl-radius-xl); }
.fdl-overview-media-fallback { width: 100%; min-height: 460px; border-radius: var(--fdl-radius-xl); background:
   radial-gradient(circle at 70% 30%, rgba(201,168,76,0.18), transparent 55%),
   linear-gradient(150deg, #F3ECE0, #E8D5A3 120%); display: flex; align-items: center; justify-content: center; box-shadow: var(--fdl-shadow-lg); }
.fdl-overview-media-fallback img { width: 58%; max-width: 300px; opacity: 0.92; filter: drop-shadow(0 14px 34px rgba(44,34,20,0.18)); }

/* ============================================================
   SERVICES — dental grid (reuses .fdl-business-* structure)
   ============================================================ */
.fdl-business-grid { grid-template-columns: repeat(3, 1fr); }
.fdl-business-card { background: #fff; border: 1px solid var(--fdl-gray); border-radius: var(--fdl-radius-xl); box-shadow: var(--fdl-shadow-sm); }
.fdl-business-card:hover { border-color: var(--fdl-blue); box-shadow: var(--fdl-shadow-lg); transform: translateY(-8px); }
.fdl-svc-figure { height: 190px; position: relative; overflow: hidden; background:
   radial-gradient(circle at 65% 35%, rgba(201,168,76,0.16), transparent 60%),
   linear-gradient(150deg, #F3ECE0, #EbE1D0); display: flex; align-items: center; justify-content: center; }
.fdl-svc-figure i { font-size: 2.6rem; color: var(--fdl-gold-deep); opacity: 0.9; }
.fdl-business-card-badge { background: var(--fdl-text); color: var(--fdl-blue-light); letter-spacing: 1.5px; }
.fdl-business-card-content h3 { font-family: var(--fdl-font-primary); font-weight: 600; color: var(--fdl-text); font-size: 1.18rem; }
.fdl-business-card-content > p { color: var(--fdl-gray-dark); font-style: italic; }
.fdl-business-card-features li i { color: var(--fdl-blue); }
.fdl-business-card-features li { color: var(--fdl-text-light); }

/* ============================================================
   WHY CHOOSE — icon circles gold
   ============================================================ */
.fdl-why-icon, .fdl-mvv-icon, .fdl-contact-info-icon, .fdl-service-card-icon, .fdl-service-category-icon { background: linear-gradient(140deg, var(--fdl-blue), var(--fdl-gold-deep)) !important; color: #fff !important; }
.fdl-why-card h4, .fdl-why-card { }
.fdl-why-card:hover { border-color: var(--fdl-blue); }
.fdl-why-card h4 { font-family: var(--fdl-font-primary); font-weight: 600; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.fdl-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.fdl-testimonial-card { background: #fff; border: 1px solid var(--fdl-gray); border-radius: var(--fdl-radius-xl); padding: 34px 30px; box-shadow: var(--fdl-shadow-sm); position: relative; transition: var(--fdl-transition); }
.fdl-testimonial-card:hover { box-shadow: var(--fdl-shadow-lg); transform: translateY(-6px); border-color: var(--fdl-blue); }
.fdl-testimonial-quote { font-size: 2.4rem; color: var(--fdl-blue); font-family: var(--fdl-font-primary); line-height: 0.6; margin-bottom: 14px; opacity: 0.55; }
.fdl-testimonial-stars { color: var(--fdl-blue); font-size: 0.82rem; letter-spacing: 2px; margin-bottom: 14px; }
.fdl-testimonial-text { color: var(--fdl-text-light); line-height: 1.85; font-size: 0.96rem; margin-bottom: 22px; font-style: italic; }
.fdl-testimonial-author { display: flex; align-items: center; gap: 14px; }
.fdl-testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(140deg, var(--fdl-blue), var(--fdl-gold-deep)); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--fdl-font-primary); font-weight: 600; font-size: 1.05rem; flex-shrink: 0; }
.fdl-testimonial-name { font-family: var(--fdl-font-secondary); font-weight: 600; color: var(--fdl-text); font-size: 0.92rem; }
.fdl-testimonial-role { font-size: 0.78rem; color: var(--fdl-gray-dark); }
.fdl-testimonials-note { text-align: center; margin-top: 34px; font-size: 0.85rem; color: var(--fdl-gray-dark); }
.fdl-testimonials-note i { color: #4285F4; margin-right: 6px; }

/* ============================================================
   MEET THE TEAM
   ============================================================ */
.fdl-team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.fdl-team-card { background: #fff; border: 1px solid var(--fdl-gray); border-radius: var(--fdl-radius-xl); overflow: hidden; box-shadow: var(--fdl-shadow-sm); transition: var(--fdl-transition); text-align: center; }
.fdl-team-card:hover { box-shadow: var(--fdl-shadow-lg); transform: translateY(-6px); border-color: var(--fdl-blue); }
.fdl-team-photo { height: 260px; position: relative; overflow: hidden; background:
   radial-gradient(circle at 50% 35%, rgba(201,168,76,0.18), transparent 60%),
   linear-gradient(150deg, #F3ECE0, #E8D5A3); display: flex; align-items: flex-end; justify-content: center; }
.fdl-team-photo img { width: 100%; height: 100%; object-fit: cover; }
.fdl-team-initials { font-family: var(--fdl-font-primary); font-size: 3.4rem; font-weight: 600; color: rgba(184,146,52,0.55); position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.fdl-team-info { padding: 24px 22px 28px; }
.fdl-team-info h4 { font-family: var(--fdl-font-primary); font-weight: 600; color: var(--fdl-text); font-size: 1.15rem; margin-bottom: 4px; }
.fdl-team-role { color: var(--fdl-gold-deep); font-family: var(--fdl-font-secondary); font-size: 0.82rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.fdl-team-bio { color: var(--fdl-gray-dark); font-size: 0.88rem; line-height: 1.7; }

/* ============================================================
   GOOGLE MAP
   ============================================================ */
.fdl-map-section { padding-top: 0; }
.fdl-map-embed { position: relative; border-radius: var(--fdl-radius-xl); overflow: hidden; box-shadow: var(--fdl-shadow-md); border: 1px solid var(--fdl-gray); }
.fdl-map-embed iframe { display: block; width: 100%; height: 440px; border: 0; filter: grayscale(0.2) contrast(0.95); }
.fdl-map-card { position: absolute; top: 24px; left: 24px; background: rgba(248,244,238,0.96); backdrop-filter: blur(6px); border: 1px solid var(--fdl-gray); border-radius: var(--fdl-radius-lg); padding: 22px 24px; max-width: 300px; box-shadow: var(--fdl-shadow-md); }
.fdl-map-card h4 { font-family: var(--fdl-font-primary); font-weight: 600; color: var(--fdl-text); margin-bottom: 10px; }
.fdl-map-card p { font-size: 0.86rem; color: var(--fdl-text-light); margin-bottom: 6px; display: flex; gap: 8px; align-items: flex-start; }
.fdl-map-card p i { color: var(--fdl-blue); margin-top: 3px; }
.fdl-map-card a.fdl-btn { margin-top: 12px; }
@media (max-width: 600px){ .fdl-map-card { position: static; max-width: 100%; margin: 14px 0 0; border-radius: var(--fdl-radius-lg); } }

/* ============================================================
   APPOINTMENT / BOOKING modal accents
   ============================================================ */
.fdl-modal-header h2 { color: var(--fdl-text); font-family: var(--fdl-font-primary); font-weight: 600; }
.fdl-consultation-modal-dialog { background: linear-gradient(150deg, #FFFFFF 0%, #FBF8F2 100%); border-radius: 26px; box-shadow: 0 40px 90px rgba(44,34,20,0.28), 0 0 0 1px rgba(201,168,76,0.18); }
.fdl-modal-close { background: #F0E9DB; color: var(--fdl-text); }
.fdl-modal-close:hover { background: var(--fdl-blue); color: #fff; }
.fdl-hero-badge i, .fdl-modal-header .fdl-hero-badge { color: var(--fdl-blue); }
.fdl-form-group input:focus, .fdl-form-group select:focus, .fdl-form-group textarea:focus { border-color: var(--fdl-blue); box-shadow: 0 0 0 3px rgba(201,168,76,0.14); }
.fdl-required { color: var(--fdl-gold-deep); }

/* ---- Section backgrounds ---- */
.fdl-bg-gray { background: var(--fdl-gray-light); }
.fdl-bg-navy { background: linear-gradient(160deg, #2C2C2C 0%, #1a1712 100%); color: #fff; }
.fdl-bg-cream { background: linear-gradient(180deg, #F8F4EE 0%, #F3ECE0 100%); }

/* ---- CTA section (appointment) ---- */
.fdl-cta-content h2 { font-family: var(--fdl-font-primary); font-weight: 600; }
.fdl-cta-bg-pattern { background-image:
   radial-gradient(circle at 28% 50%, rgba(201,168,76,0.16) 0%, transparent 55%),
   radial-gradient(circle at 74% 40%, rgba(232,213,163,0.08) 0%, transparent 50%); }

/* ---- Footer luxury ---- */
.fdl-footer { background: #1a1712; }
.fdl-footer-logo-img { height: 84px; }
.fdl-footer-title { font-family: var(--fdl-font-primary); font-weight: 600; }
.fdl-footer-title::after, .fdl-social-icon:hover, .fdl-newsletter-form input:focus { }
.fdl-social-icon:hover { background: var(--fdl-blue); color: var(--fdl-text); }

/* ---- WhatsApp float keeps brand green ---- */

/* ============================================================
   BLOG preview cards on home
   ============================================================ */
.fdl-blog-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.fdl-blog-toolbar { display: flex; justify-content: center; margin-bottom: 26px; }
a.fdl-blog-preview-card, a.fdl-blog-featured-card { display: block; text-decoration: none; color: inherit; }
.fdl-blog-preview-card { background: #fff; border: 1px solid var(--fdl-gray); border-radius: var(--fdl-radius-xl); overflow: hidden; box-shadow: var(--fdl-shadow-sm); transition: var(--fdl-transition); }
.fdl-blog-preview-card:hover { box-shadow: var(--fdl-shadow-lg); transform: translateY(-6px); border-color: var(--fdl-blue); }

.fdl-blog-featured-card { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; background: #fff; border: 1px solid var(--fdl-gray); border-radius: var(--fdl-radius-xl); overflow: hidden; box-shadow: var(--fdl-shadow-md, var(--fdl-shadow-sm)); margin-bottom: 50px; transition: var(--fdl-transition); }
.fdl-blog-featured-card:hover { box-shadow: var(--fdl-shadow-lg); }
.fdl-blog-featured-figure { position: relative; min-height: 280px; background: var(--fdl-gray-light); }
.fdl-blog-featured-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fdl-blog-featured-tag { position: absolute; top: 16px; left: 16px; background: var(--fdl-navy); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 6px 14px; border-radius: 20px; letter-spacing: 0.5px; display: flex; align-items: center; gap: 6px; }
.fdl-blog-featured-body { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.fdl-blog-featured-body h2 { font-family: var(--fdl-font-primary); font-size: 1.7rem; margin: 10px 0 14px; color: var(--fdl-navy); line-height: 1.3; }
.fdl-blog-featured-body p { color: var(--fdl-gray-dark); line-height: 1.6; margin-bottom: 16px; }
@media (max-width: 768px) {
    .fdl-blog-featured-card { grid-template-columns: 1fr; }
    .fdl-blog-featured-figure { min-height: 200px; }
    .fdl-blog-featured-body { padding: 24px; }
}
.fdl-blog-preview-figure { height: 180px; background:
   radial-gradient(circle at 60% 35%, rgba(201,168,76,0.16), transparent 60%),
   linear-gradient(150deg, #F3ECE0, #EbE1D0); display: flex; align-items: center; justify-content: center; position: relative; }
.fdl-blog-preview-figure i { font-size: 2rem; color: var(--fdl-gold-deep); opacity: 0.85; }
.fdl-blog-preview-cat { position: absolute; top: 14px; left: 14px; background: var(--fdl-blue); color: #fff; font-size: 0.72rem; font-weight: 600; padding: 5px 13px; border-radius: 20px; letter-spacing: 0.5px; }
.fdl-blog-preview-body { padding: 22px; }
.fdl-blog-preview-meta { font-size: 0.76rem; color: var(--fdl-gray-dark); margin-bottom: 8px; }
.fdl-blog-preview-body h3 { font-family: var(--fdl-font-primary); font-weight: 600; font-size: 1.08rem; line-height: 1.4; margin-bottom: 10px; color: var(--fdl-text); }
.fdl-blog-preview-body p { color: var(--fdl-gray-dark); font-size: 0.87rem; line-height: 1.6; }

/* ============================================================
   RESPONSIVE — new sections
   ============================================================ */
@media (max-width: 1024px){
  .fdl-testimonials-grid, .fdl-team-grid, .fdl-blog-preview-grid, .fdl-business-grid { grid-template-columns: repeat(2, 1fr); }
  .fdl-logo-word .fdl-logo-name { font-size: 1.3rem; letter-spacing: 4px; }
}
@media (max-width: 768px){
  .fdl-hero { min-height: 92vh; padding: 130px 0 70px; }
  .fdl-testimonials-grid, .fdl-team-grid, .fdl-blog-preview-grid, .fdl-business-grid { grid-template-columns: 1fr; }
  .fdl-logo-word { display: none; }
  .fdl-hero-actions { flex-direction: column; }
  .fdl-hero-actions .fdl-btn { width: 100%; }
}

/* ============================================================
   DARK THEME  (toggle adds body.fdl-theme-dark)
   ============================================================ */
body.fdl-theme-dark {
  --fdl-white: #1F1D1A;
  --fdl-ivory: #17150F;
  --fdl-gray-light: #201D18;
  --fdl-gray-lighter: #23201A;
  --fdl-gray: #34302A;
  --fdl-gray-medium: #3D382F;
  --fdl-gray-dark: #B7AC98;
  --fdl-text: #F1EADB;
  --fdl-text-light: #D6CDBB;
  --fdl-text-muted: #9E9484;
  --fdl-navy: #23201A;
  --fdl-navy-dark: #14120E;
  --fdl-navy-deep: #100E0B;
  background: var(--fdl-ivory);
  color: var(--fdl-text);
}
body.fdl-theme-dark .fdl-section-title,
body.fdl-theme-dark .fdl-overview-heading,
body.fdl-theme-dark .fdl-business-card-content h3,
body.fdl-theme-dark .fdl-why-card h4,
body.fdl-theme-dark .fdl-team-info h4,
body.fdl-theme-dark .fdl-testimonial-name,
body.fdl-theme-dark .fdl-map-card h4,
body.fdl-theme-dark .fdl-faq-question,
body.fdl-theme-dark .fdl-contact-info-content h4,
body.fdl-theme-dark .fdl-contact-form-wrapper h2,
body.fdl-theme-dark .fdl-modal-header h2 { color: var(--fdl-text); }
body.fdl-theme-dark .fdl-business-card,
body.fdl-theme-dark .fdl-why-card,
body.fdl-theme-dark .fdl-testimonial-card,
body.fdl-theme-dark .fdl-team-card,
body.fdl-theme-dark .fdl-blog-preview-card,
body.fdl-theme-dark .fdl-contact-info-card,
body.fdl-theme-dark .fdl-contact-team,
body.fdl-theme-dark .fdl-contact-form,
body.fdl-theme-dark .fdl-faq-item,
body.fdl-theme-dark .fdl-industry-card,
body.fdl-theme-dark .fdl-outcome-card,
body.fdl-theme-dark .fdl-process-num { background: var(--fdl-gray-light); border-color: var(--fdl-gray); }
body.fdl-theme-dark .fdl-svc-figure,
body.fdl-theme-dark .fdl-blog-preview-figure,
body.fdl-theme-dark .fdl-team-photo,
body.fdl-theme-dark .fdl-overview-media-fallback { background:
   radial-gradient(circle at 65% 35%, rgba(201,168,76,0.14), transparent 60%),
   linear-gradient(150deg, #23201A, #2b2620); }
body.fdl-theme-dark .fdl-header.scrolled { background: rgba(23,21,15,0.92); border-bottom-color: var(--fdl-gray); }
body.fdl-theme-dark .fdl-header.scrolled .fdl-nav-link,
body.fdl-theme-dark .fdl-header.scrolled .fdl-logo-word .fdl-logo-name { color: var(--fdl-text); }
body.fdl-theme-dark #fdl-preloader { background: var(--fdl-ivory); }
body.fdl-theme-dark .fdl-loader-text { color: var(--fdl-text); }
body.fdl-theme-dark .fdl-map-embed iframe { filter: grayscale(0.3) invert(0.9) contrast(0.85) hue-rotate(180deg); }
body.fdl-theme-dark .fdl-map-card { background: rgba(35,32,26,0.96); }
body.fdl-theme-dark .fdl-consultation-modal-dialog { background: linear-gradient(150deg, #23201A, #1c1915); }
body.fdl-theme-dark .fdl-form-group input,
body.fdl-theme-dark .fdl-form-group select,
body.fdl-theme-dark .fdl-form-group textarea { background: #1c1915; color: var(--fdl-text); border-color: var(--fdl-gray); }
body.fdl-theme-dark .fdl-modal-close { background: #34302A; color: var(--fdl-text); }


/* ============================================================
   PRODUCTION POLISH — v1.1
   ============================================================ */

/* Skip link (keyboard accessibility) */
.fdl-skip-link { position: absolute; left: -9999px; top: 0; z-index: 100000; background: var(--fdl-yellow); color: #2C2C2C; padding: 12px 22px; border-radius: 0 0 12px 0; font-family: var(--fdl-font-secondary); font-weight: 600; font-size: 0.85rem; }
.fdl-skip-link:focus { left: 0; }

/* Visible focus states for keyboard users */
.fdl-btn:focus-visible, .fdl-nav-link:focus-visible, .fdl-faq-question:focus-visible,
.fdl-theme-toggle:focus-visible, .fdl-hero-dot:focus-visible, a:focus-visible {
  outline: 2px solid var(--fdl-gold-deep); outline-offset: 3px; border-radius: 4px;
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .fdl-reveal { opacity: 1 !important; transform: none !important; }
}

/* Print hygiene */
@media print {
  #fdl-preloader, .fdl-whatsapp-float, .fdl-back-to-top, .fdl-theme-toggle,
  .fdl-hero-slideshow-dots, .fdl-hero-scroll, .fdl-mobile-toggle { display: none !important; }
  body.fdl-body { background: #fff; color: #000; }
}

/* Guard: hero video hidden if unsupported / no source */
.fdl-hero-slide-media video:not([src]):not(:has(source)) { display: none; }

/* Selection colour in brand gold tint */
::selection { background: rgba(201,168,76,0.28); color: #2C2C2C; }
