/* ============================================
   TRANSMED - Modern CSS
   Primary: #0060aa | Accent: #a3001c
   Font: Roboto
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

:root {
    --primary: #0060aa;
    --primary-dark: #004d8a;
    --accent: #a3001c;
    --accent-dark: #7a0015;
    --dark: #0d1117;
    --dark-2: #1a2332;
    --text: #444;
    --text-light: #777;
    --white: #fff;
    --light-bg: #f8fafc;
    --border: rgba(0, 96, 170, 0.15);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.2);
    --radius: 12px;
    --radius-sm: 6px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--dark-2);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-title .subtitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}

.section-title p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 550px;
    margin: 0 auto;
}

.section-title .title-bar {
    width: 60px;
    height: 3px;
    margin: 20px auto 0;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border-radius: 2px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
    padding: 15px 0;
}

.navbar.scrolled {
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

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

.navbar-logo img {
    height: 52px;
    transition: height 0.3s;
}

.navbar.scrolled .navbar-logo img {
    height: 42px;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 5px;
}

.nav-links li a {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    position: relative;
    transition: all 0.3s ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 60%;
}

.nav-links li a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.nav-links li a.active-nav {
    color: var(--white);
    background: rgba(0, 96, 170, 0.25);
}

.nav-links li a.active-nav::after {
    width: 60%;
}

.nav-contact-btn {
    background: var(--primary) !important;
    color: var(--white) !important;
    border-radius: var(--radius-sm) !important;
    padding: 9px 22px !important;
}

.nav-contact-btn:hover {
    background: var(--accent) !important;
}

.nav-contact-btn::after {
    display: none !important;
}

.nav-top-bar {
    background: var(--primary);
    padding: 7px 0;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.85);
}

.nav-top-bar .container {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.nav-top-bar a {
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
}

.nav-top-bar a:hover {
    color: var(--white);
}

.nav-top-bar i {
    font-size: 11px;
    opacity: 0.8;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile nav */
@media (max-width: 991px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(13, 17, 23, 0.97);
        flex-direction: column;
        padding: 20px;
        gap: 5px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        padding: 12px 20px;
    }

    .hamburger {
        display: flex;
    }
}

/* ============================================
   HERO SECTION (Video Background)
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.70) 0%,
            rgba(0, 40, 90, 0.65) 50%,
            rgba(0, 0, 0, 0.60) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: heroFadeIn 1.2s ease both;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 96, 170, 0.25);
    border: 1px solid rgba(0, 96, 170, 0.5);
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.hero-badge i {
    color: var(--primary);
    font-size: 14px;
}

.hero-content h1 {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-content h1 .highlight {
    color: var(--primary);
    position: relative;
}

.hero-content p {
    font-size: clamp(15px, 2vw, 19px);
    color: rgba(255, 255, 255, 0.82);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 36px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 96, 170, 0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 96, 170, 0.5);
    color: var(--white);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 36px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.7);
    color: var(--white);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 50px;
    animation: heroFadeIn 1.5s ease 0.5s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat .number {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.hero-stat .number span {
    color: var(--primary);
}

.hero-stat .label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 4px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.hero-scroll i {
    font-size: 20px;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: var(--dark-2);
    padding: 0;
}

.stats-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 30px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s;
}

.stat-item:hover {
    background: rgba(0, 96, 170, 0.1);
}

.stat-icon {
    width: 52px;
    height: 52px;
    background: rgba(0, 96, 170, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    flex-shrink: 0;
    transition: background 0.3s;
}

.stat-item:hover .stat-icon {
    background: var(--primary);
    color: var(--white);
}

.stat-info .number {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-info .label {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--white);
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 96, 170, 0.4);
    border: 5px solid var(--white);
}

.about-image-badge .years {
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
}

.about-image-badge .text {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    line-height: 1.3;
}

.about-content .subtitle {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-content .subtitle::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.about-content h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--dark-2);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-content h2 .accent {
    color: var(--primary);
}

.about-content p {
    color: #555;
    line-height: 1.85;
    margin-bottom: 15px;
    font-size: 15px;
}

.about-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border-radius: 2px;
    margin: 25px 0;
}

/* Trust points */
.trust-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.trust-item:hover .trust-text {
    color: var(--white);
}

.trust-item:hover .trust-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.trust-icon {
    width: 38px;
    height: 38px;
    background: rgba(0, 96, 170, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.3s;
}

.trust-text {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--dark-2);
    transition: color 0.3s;
}

/* ============================================
   SERVICES SECTION (Ce Que Nous Faisons)
   ============================================ */
.services {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 96, 170, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

.service-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: default;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    height: 420px;
}

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

.service-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card-bg {
    transform: scale(1.08);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.25) 40%,
            rgba(0, 20, 60, 0.88) 100%);
    transition: background 0.4s ease;
}

.service-card:hover .service-card-overlay {
    background: linear-gradient(180deg,
            rgba(0, 40, 90, 0.3) 0%,
            rgba(0, 60, 130, 0.5) 40%,
            rgba(0, 20, 60, 0.95) 100%);
}

.service-card-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
}

.service-icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(0, 96, 170, 0.8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 16px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrap {
    background: var(--primary);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.service-card:hover p {
    max-height: 80px;
    opacity: 1;
}

.service-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 60px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
    transition: color 0.3s;
}

.service-card:hover .service-number {
    color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   CTA STRIP (between About and Footer)
   ============================================ */
.cta-strip {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #003366 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    border-radius: 50%;
}

.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-strip h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
}

.cta-strip p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    margin-top: 5px;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 36px;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background: var(--accent);
    color: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-top {
    padding: 70px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-brand p {
    font-size: 13.5px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.footer-links li a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
    transition: all 0.3s;
}

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

.footer-links li a:hover::before {
    background: var(--accent);
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-list .icon {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    background: rgba(0, 96, 170, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-contact-list .info {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

.footer-contact-list .info a {
    color: rgba(255, 255, 255, 0.55);
    display: block;
}

.footer-contact-list .info a:hover {
    color: var(--primary);
}

.footer-hours {
    margin-top: 18px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-hours p {
    font-size: 12.5px;
    margin-bottom: 6px;
}

.footer-hours .day {
    color: rgba(255, 255, 255, 0.5);
}

.footer-hours .time {
    font-weight: 600;
    color: var(--white);
}

.footer-bottom {
    padding: 22px 0;
    background: rgba(0, 0, 0, 0.25);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom p span {
    color: var(--primary);
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
#scrollTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(0, 96, 170, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

#scrollTop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollTop:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .about-grid {
        gap: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image img {
        height: 360px;
    }

    .stats-bar-inner {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stats {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .cta-strip-inner {
        flex-direction: column;
        text-align: center;
    }

    .stats-bar-inner {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .hero-stat .number {
        font-size: 24px;
    }

    .trust-points {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stats-bar-inner {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        display: none;
    }

    .about-image-badge {
        width: 100px;
        height: 100px;
        bottom: -15px;
        right: -15px;
    }

    .about-image-badge .years {
        font-size: 28px;
    }
}