/* ============================================================
   CSS: DHASSURE / CourtagePro
   NEW PALETTE: Deep Teal (#0b3d52) + Amber Gold (#f59e0b)
   Design: Premium Modern with Full Animations
   ============================================================ */

/* ---------- Google Fonts Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- NEW COLOR VARIABLES ---------- */
:root {
    /* === NEW TEAL PALETTE === */
    --primary:        #0b3d52;
    --primary-dark:   #062130;
    --primary-light:  #10546f;
    --primary-mid:    #0d4865;
    --primary-xlight: #1a6b88;

    /* === AMBER ACCENT (New) === */
    --accent:         #f59e0b;
    --accent-hover:   #d97706;
    --accent-bright:  #fbbf24;
    --accent-light:   rgba(245, 158, 11, 0.15);
    --accent-glow:    rgba(245, 158, 11, 0.4);

    /* === GRAYS === */
    --gray-50:   #f8fafb;
    --gray-100:  #f1f5f9;
    --gray-200:  #e2e8f0;
    --gray-400:  #94a3b8;
    --gray-600:  #64748b;
    --white:     #ffffff;

    /* === GLASS === */
    --glass-bg:     rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.12);

    /* === SHADOWS === */
    --shadow:    0 4px 24px rgba(11, 61, 82, 0.08);
    --shadow-md: 0 8px 32px rgba(11, 61, 82, 0.12);
    --shadow-lg: 0 20px 60px rgba(11, 61, 82, 0.16);
    --shadow-xl: 0 30px 80px rgba(11, 61, 82, 0.22);

    /* === MISC === */
    --radius:    14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   BASE RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #1e293b;
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.15;
}

/* Page reveal */
@keyframes pageReveal {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
body { animation: pageReveal 0.5s ease forwards; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-light), var(--primary));
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
::selection { background: rgba(245, 158, 11, 0.2); color: var(--primary); }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
    background-size: 200% 100%;
    animation: topBarShimmer 4s linear infinite;
    color: var(--primary-dark);
    border-bottom: 1px solid rgba(11,61,82,0.1);
    position: relative;
}

@keyframes topBarShimmer {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.top-bar a,
.top-bar .text-white-50,
.top-bar .online-status {
    color: var(--primary-dark) !important;
    font-weight: 600;
}

/* ============================================================
   INFO BAR
   ============================================================ */
.info-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
}
.info-bar a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.info-bar a:hover { color: var(--accent-bright); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    background: rgba(255,255,255,0.97) !important;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 2px 24px rgba(11,61,82,0.1), 0 1px 0 rgba(11,61,82,0.06);
    transition: all 0.4s ease;
    padding: 14px 0;
    top: 0; width: 100%; z-index: 1030;
}

.navbar.scrolled {
    padding: 9px 0;
    box-shadow: 0 4px 40px rgba(11,61,82,0.18), 0 1px 0 rgba(11,61,82,0.08);
}

.navbar-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.55rem;
    color: var(--primary) !important;
    letter-spacing: -0.5px;
}

.navbar .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--primary) !important;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 1rem; right: 1rem;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-bright));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { transform: scaleX(1); }
.navbar .nav-link.active { color: var(--primary) !important; }

/* Dropdown */
.dropdown-menu {
    border: none;
    box-shadow: 0 20px 60px rgba(11,61,82,0.18);
    border-radius: var(--radius);
    padding: 10px;
    margin-top: 10px !important;
    background: var(--white);
    animation: dropDown 0.22s ease forwards;
}
@keyframes dropDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.dropdown-item {
    border-radius: 8px;
    font-size: 0.88rem;
    transition: var(--transition);
    padding: 9px 14px;
}
.dropdown-item:hover {
    background: var(--primary);
    color: var(--white) !important;
}
.dropdown-item:hover i { color: var(--accent-bright) !important; }

/* Navbar CTA button */
.navbar .btn-accent {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
}
.navbar .btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245,158,11,0.35);
}

/* Navbar brand / logo sizing */
.navbar-brand img {
    height: 54px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}
.navbar.scrolled .navbar-brand img { height: 44px; }

/* Mobile menu spacing */
@media (max-width: 991px) {
    #navbarMain .nav-link { padding: 0.65rem 0.5rem !important; }
    #navbarMain .btn-accent { margin-top: 0.5rem; width: 100%; text-align: center; }
    .navbar-brand img { height: 46px; }
}

/* Online dot */
.online-status { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; }
.dot {
    width: 9px; height: 9px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulseGreen 2s infinite;
}
@keyframes pulseGreen {
    0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.7); }
    70%  { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* ============================================================
   HERO SECTION — FULL REDESIGN
   ============================================================ */
.hero-section {
    background: linear-gradient(135deg,
        var(--primary-dark) 0%,
        var(--primary) 45%,
        var(--primary-light) 75%,
        var(--primary-xlight) 100%
    );
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 140px 0 120px;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

/* Animated mesh orbs */
.hero-section::before {
    content: '';
    position: absolute;
    top: -15%; right: -8%;
    width: 650px; height: 650px;
    background: radial-gradient(circle, rgba(245,158,11,0.14) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    animation: orbDrift1 9s ease-in-out infinite;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -15%; left: -5%;
    width: 550px; height: 550px;
    background: radial-gradient(circle, rgba(251,191,36,0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: orbDrift2 12s ease-in-out infinite;
}
@keyframes orbDrift1 {
    0%,100% { transform: translate(0,0) scale(1); }
    33%      { transform: translate(-25px, 20px) scale(1.06); }
    66%      { transform: translate(15px,-20px) scale(0.94); }
}
@keyframes orbDrift2 {
    0%,100% { transform: translate(0,0) scale(1); }
    50%      { transform: translate(30px,-25px) scale(1.12); }
}

/* Canvas particles */
#particles-canvas {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none; z-index: 0;
}

/* Grid overlay */
.hero-grid-overlay {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none; z-index: 0;
}

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

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,158,11,0.14);
    border: 1px solid rgba(245,158,11,0.35);
    color: var(--accent-bright);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
    animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(245,158,11,0.25); }
    50%      { box-shadow: 0 0 0 10px rgba(245,158,11,0); }
}

/* Hero title animations */
.hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.08;
    margin-bottom: 0;
}
.hero-title .line-reveal { display: block; overflow: hidden; }
.hero-title .line-inner {
    display: block;
    animation: slideUpIn 0.85s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}
.hero-title .line-inner:nth-child(1) { animation-delay: 0.1s; }
.hero-title .line-inner:nth-child(2) { animation-delay: 0.28s; }
.hero-title .line-inner:nth-child(3) { animation-delay: 0.46s; }
@keyframes slideUpIn {
    from { opacity: 0; transform: translateY(45px); }
    to   { opacity: 1; transform: translateY(0); }
}

.text-accent { color: var(--accent); }
.text-accent-gradient {
    background: linear-gradient(135deg, var(--accent-bright), #fde68a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Typed cursor */
.typed-text { color: var(--accent-bright); }
.cursor {
    display: inline-block;
    width: 3px; height: 0.95em;
    background: var(--accent-bright);
    margin-left: 2px;
    border-radius: 2px;
    vertical-align: middle;
    animation: cursorBlink 0.85s step-end infinite;
}
@keyframes cursorBlink {
    from,to { opacity: 1; }
    50% { opacity: 0; }
}

/* Hero subtitle */
.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    opacity: 0.85;
    line-height: 1.75;
    font-weight: 400;
    animation: fadeUp 0.8s ease 0.55s both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    animation: fadeUp 0.8s ease 0.7s both;
}

/* Main CTA button */
.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-bright));
    color: var(--primary-dark);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    border: none;
    border-radius: 50px;
    padding: 15px 34px;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.2px;
}
.btn-accent::before {
    content: '';
    position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.55s ease;
}
.btn-accent:hover::before { left: 100%; }
.btn-accent:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(245,158,11,0.45);
}

/* Outline hero button */
.btn-outline-hero {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.32);
    border-radius: 50px;
    padding: 13px 28px;
    font-weight: 600;
    font-size: 0.93rem;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}
.btn-outline-hero:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.65);
    color: var(--white);
    transform: translateY(-2px);
}

/* Trust note */
.hero-trust-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.8rem;
    animation: fadeUp 0.8s ease 0.8s both;
}
.hero-trust-note i { color: #22c55e; }

/* Hero Benefits */
.hero-benefits {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease 0.95s both;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: var(--glass-bg);
    padding: 0.7rem 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    backdrop-filter: blur(12px);
}
.benefit-item:hover {
    background: rgba(245,158,11,0.1);
    border-color: rgba(245,158,11,0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(245,158,11,0.15);
}
.benefit-icon { font-size: 1.35rem; color: var(--accent-bright); min-width: 22px; }
.benefit-text { line-height: 1.3; font-size: 0.83rem; }

/* Hero image */
.hero-img-wrapper { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-img-wrapper::before {
    content: '';
    position: absolute;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowRing 4s ease-in-out infinite;
}
@keyframes glowRing {
    0%,100% { transform: scale(1); opacity: 0.8; }
    50%      { transform: scale(1.18); opacity: 0.35; }
}
.hero-img {
    max-width: 460px; width: 100%;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.3));
    animation: heroLevitate 5.5s ease-in-out infinite;
    position: relative; z-index: 2;
}
@keyframes heroLevitate {
    0%,100% { transform: translateY(0) rotate(-0.5deg); }
    50%      { transform: translateY(-22px) rotate(0.5deg); }
}

/* ============================================================
   TRUST BADGES BAR
   ============================================================ */
.trust-badges-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 0;
}
.trust-badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.87rem;
    color: var(--primary);
    transition: var(--transition);
}
.trust-badge-item:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

/* ============================================================
   SECTIONS SHARED
   ============================================================ */
.section-padding { padding: 90px 0; }

.section-tag {
    display: inline-block;
    background: rgba(245,158,11,0.12);
    color: var(--accent-hover);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(245,158,11,0.3);
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.4rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 1.02rem;
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto;
}

.section-title-underline {
    width: 52px; height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-bright), transparent);
    border-radius: 2px;
    margin: 10px auto 0;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}
.service-card {
    border-radius: var(--radius-lg) !important;
    transition: var(--transition);
    overflow: hidden;
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-200) !important;
}
.service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s ease;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg) !important;
    border-color: rgba(245,158,11,0.25) !important;
}
.service-icon {
    width: 72px; height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--accent-bright);
    font-size: 1.65rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto;
    transition: var(--transition);
    position: relative;
}
.service-icon::after {
    content: '';
    position: absolute; inset: -4px;
    border-radius: 24px;
    border: 2px solid rgba(245,158,11,0.2);
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-bright));
    color: var(--primary-dark);
    transform: scale(1.12) rotate(-6deg);
    box-shadow: 0 10px 30px rgba(245,158,11,0.4);
}
.service-card:hover .service-icon::after {
    border-color: var(--accent);
    inset: -8px;
}
.service-card .btn-outline-primary {
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.82rem;
    padding: 7px 20px;
    border-color: var(--primary);
    color: var(--primary);
    transition: var(--transition);
}
.service-card .btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateX(4px);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--white); }
.why-card {
    border-radius: var(--radius-lg);
    transition: var(--transition);
    background: var(--white);
    border: 1px solid var(--gray-200);
    position: relative; overflow: hidden;
}
.why-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-bright), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.42s ease;
}
.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(245,158,11,0.3);
}
.why-card:hover::after { transform: scaleX(1); }
.why-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(245,158,11,0.12), rgba(251,191,36,0.2));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-hover);
    margin: 0 auto 1rem;
    transition: var(--transition);
}
.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--accent-bright);
    transform: scale(1.1) rotate(-6deg);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}
.testimonial-card {
    border-radius: var(--radius-lg) !important;
    border: 1px solid var(--gray-200) !important;
    background: var(--white);
    transition: var(--transition);
    position: relative; overflow: hidden;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute; top: -15px; right: 18px;
    font-size: 7rem; font-family: Georgia, serif;
    color: rgba(245,158,11,0.08); line-height: 1;
    pointer-events: none;
}
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg) !important;
    border-color: rgba(245,158,11,0.25) !important;
}
.testimonial-stars { color: var(--accent); font-size: 0.82rem; letter-spacing: 2px; }
.testimonial-author { font-weight: 700; color: var(--primary); }
.testimonial-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex; align-items: center; justify-content: center;
    color: var(--accent-bright);
    font-family: 'Outfit', sans-serif;
    font-weight: 800; font-size: 1.1rem;
    flex-shrink: 0;
}

/* ============================================================
   CTA / QUOTE SECTION
   ============================================================ */
.cta-quote-section {
    background: linear-gradient(135deg,
        var(--primary-dark) 0%,
        var(--primary) 50%,
        var(--primary-mid) 100%
    );
    position: relative; overflow: hidden;
}
.cta-quote-section::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1556742502-ec7c0e9f34b1?q=80&w=1974&auto=format&fit=crop');
    background-size: cover; background-position: center;
    opacity: 0.05; pointer-events: none;
}
.cta-quote-section::after {
    content: '';
    position: absolute; top: -40%; left: -10%;
    width: 60%; height: 200%;
    background: radial-gradient(ellipse, rgba(245,158,11,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.cta-quote-section .container { position: relative; z-index: 2; }

.quote-form-card {
    border-radius: var(--radius-lg) !important;
    border: none !important;
    box-shadow: var(--shadow-xl);
    overflow: hidden; position: relative;
}
.quote-form-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-bright), var(--accent));
    background-size: 200% 100%;
    animation: gradientFlow 3s ease infinite;
}
@keyframes gradientFlow {
    0%,100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-card {
    border-radius: var(--radius-lg) !important;
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid var(--gray-200) !important;
}
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg) !important;
    border-color: rgba(245,158,11,0.3) !important;
}
.blog-card .card-img-top {
    height: 210px; object-fit: cover;
    transition: transform 0.55s ease;
}
.blog-card:hover .card-img-top { transform: scale(1.07); }
.blog-card .btn-link {
    color: var(--primary); font-weight: 600;
    text-decoration: none; transition: var(--transition);
}
.blog-card .btn-link:hover { color: var(--accent); }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
    background: linear-gradient(135deg,
        var(--primary-dark) 0%,
        var(--primary) 50%,
        var(--primary-light) 100%
    );
    color: var(--white);
    position: relative; overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}
.stat-item {
    padding: 28px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    transition: var(--transition);
    backdrop-filter: blur(8px);
    position: relative; z-index: 1;
}
.stat-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(245,158,11,0.35);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 900; display: block; line-height: 1;
    background: linear-gradient(135deg, var(--accent-bright), #fde68a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    font-size: 0.88rem; opacity: 0.72;
    margin: 6px 0 0; font-weight: 500;
}

/* ============================================================
   PARTNERS
   ============================================================ */
.partner-logo {
    max-width: 110px; max-height: 55px; object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: var(--transition);
}
.partner-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}
.partner-item {
    padding: 14px; border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.partner-item:hover { background: var(--gray-100); }

/* ============================================================
   FORMS
   ============================================================ */
.form-control, .form-select {
    border-radius: 12px;
    border: 1.5px solid var(--gray-200);
    padding: 0.82rem 1.1rem;
    font-size: 0.93rem;
    transition: var(--transition);
    background: #fafbfc;
}
.form-control:focus, .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(245,158,11,0.15);
    background: var(--white);
    outline: none;
}
.form-control::placeholder { color: var(--gray-400); font-size: 0.9rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-info-card, .contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.contact-info-card:hover, .contact-form-card:hover { box-shadow: var(--shadow-lg); }
.contact-info-card ul li a {
    color: var(--primary); text-decoration: none;
    font-weight: 500; transition: var(--transition);
}
.contact-info-card ul li a:hover { color: var(--accent); }
.map-container {
    border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--gray-200);
}
.map-container iframe { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: rgba(255,255,255,0.78);
    padding: 60px 0 24px;
    position: relative; overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245,158,11,0.55), transparent);
}
.site-footer a {
    color: rgba(255,255,255,0.62);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}
.site-footer a:hover { color: var(--accent-bright); padding-left: 5px; }
.social-links a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
    text-decoration: none;
}
.social-links a:hover {
    background: var(--accent);
    color: var(--primary-dark);
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(245,158,11,0.35);
    padding-left: 0 !important;
}
.footer-legal-info {
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.72rem;
    color: rgba(255,255,255,0.38);
    max-width: 820px; margin: 0 auto;
}
.site-footer .border-white-10 { border-color: rgba(255,255,255,0.1) !important; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
    position: fixed;
    width: 62px; height: 62px;
    bottom: 28px; right: 28px;
    background: linear-gradient(135deg, #25d366, #1ebe57);
    color: #fff;
    border-radius: 50%;
    font-size: 28px;
    box-shadow: 0 8px 28px rgba(37,211,102,0.45);
    z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    animation: waPop 0.5s ease 1.2s both;
}
@keyframes waPop {
    from { opacity: 0; transform: scale(0) rotate(-90deg); }
    to   { opacity: 1; transform: scale(1) rotate(0deg); }
}
.whatsapp-float:hover {
    transform: scale(1.12) translateY(-4px);
    color: #fff;
    box-shadow: 0 16px 44px rgba(37,211,102,0.55);
}
.whatsapp-float::before {
    content: 'Contactez-nous!';
    position: absolute; right: 72px;
    white-space: nowrap;
    background: rgba(0,0,0,0.82);
    color: #fff; padding: 7px 14px;
    border-radius: 10px; font-size: 0.78rem; font-weight: 600;
    opacity: 0; transform: translateX(10px);
    transition: var(--transition); pointer-events: none;
}
.whatsapp-float:hover::before { opacity: 1; transform: translateX(0); }

/* ============================================================
   PAGE-SPECIFIC
   ============================================================ */
.service-hero, .page-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
    color: var(--white);
    padding: 120px 0 65px;
    position: relative; overflow: hidden;
}
.page-hero { text-align: center; }
.service-hero::before, .page-hero::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
    background-size: 55px 55px; pointer-events: none;
}
.page-hero h1 {
    font-weight: 900; font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    position: relative; z-index: 1;
}

/* Admin */
.admin-login {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    display: flex; align-items: center; justify-content: center;
}
.admin-card { border-radius: var(--radius-lg); border: none; box-shadow: var(--shadow-xl); }
.admin-sidebar {
    background: var(--primary); min-height: 100vh; color: var(--white);
}
.admin-sidebar .nav-link {
    color: rgba(255,255,255,0.7); border-radius: 10px;
    padding: 0.7rem 1rem; transition: var(--transition);
}
.admin-sidebar .nav-link:hover, .admin-sidebar .nav-link.active {
    color: var(--white); background: rgba(255,255,255,0.1);
}
.admin-content { background: var(--gray-100); min-height: 100vh; }

/* Breadcrumb */
.breadcrumb-custom { background: transparent; padding: 0; margin-bottom: 1rem; }
.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* AOS fix */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* Scroll reveal */
.reveal, .reveal-left, .reveal-right {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal { transform: translateY(32px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal.revealed, .reveal-left.revealed, .reveal-right.revealed {
    opacity: 1; transform: none;
}

/* ============================================================
   RESPONSIVE — TABLET & MOBILE
   ============================================================ */
@media (max-width: 1200px) {
    .hero-img { max-width: 380px; }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 110px 0 80px;
        text-align: center;
        min-height: auto;
    }
    .hero-section::before { width: 400px; height: 400px; }
    .hero-section::after { display: none; }
    .hero-img { max-width: 260px; margin-top: 2.5rem; }
    .hero-img-wrapper::before { width: 240px; height: 240px; }
    .hero-benefits { justify-content: center; gap: 0.65rem; }
    .hero-cta-group { justify-content: center; }
    .section-padding { padding: 70px 0; }
    .cta-quote-section { text-align: center; }
    .cta-quote-section .d-flex { justify-content: center; }
}

@media (max-width: 768px) {
    .section-padding { padding: 55px 0; }
    .hero-section { padding: 90px 0 65px; }
    .stat-number { font-size: 2.4rem !important; }
    .section-title { font-size: 1.8rem; }
    .hero-badge { font-size: 0.7rem; padding: 5px 14px; }
    .btn-accent { padding: 13px 26px; font-size: 0.9rem; }
    .btn-outline-hero { padding: 11px 22px; font-size: 0.88rem; }
    .service-card:hover { transform: translateY(-6px); }
    .why-card:hover { transform: translateY(-5px); }
    .testimonial-card:hover { transform: translateY(-5px); }
    .hero-title { letter-spacing: -1px; }
    .benefit-item { padding: 0.6rem 0.85rem; font-size: 0.8rem; }
    .benefit-icon { font-size: 1.1rem; }
}

@media (max-width: 576px) {
    .hero-section { padding: 85px 0 55px; }
    .hero-title { letter-spacing: -0.5px; }
    .hero-benefits { gap: 0.5rem; }
    .hero-cta-group { flex-direction: column; align-items: stretch; }
    .hero-cta-group .btn { text-align: center; }
    .btn-accent { padding: 13px 20px; }
    .btn-outline-hero { padding: 11px 20px; }
    .whatsapp-float { width: 52px; height: 52px; font-size: 22px; bottom: 20px; right: 18px; }
    .whatsapp-float::before { display: none; }
    .trust-badge-item { font-size: 0.8rem; padding: 6px 12px; gap: 6px; }
    .stat-item { padding: 20px 14px; }
    .section-tag { font-size: 0.68rem; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-primary-custom { color: var(--primary) !important; }
.bg-primary-custom { background: var(--primary) !important; }
.text-accent-custom { color: var(--accent) !important; }
.text-accent { color: var(--accent) !important; }
.text-accent-gradient {
    background: linear-gradient(135deg, var(--accent-bright), #fde68a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
