:root {
    --primary: #0B2545;
    --primary-blue: #1565C0;
    --primary-light: #e8f0fe;
    --secondary-green: #00C853;
    --green-light: #e8f5e9;
    --accent-gradient: linear-gradient(135deg, #1565C0, #0B2545);
    --green-gradient: linear-gradient(135deg, #00C853, #00E676);
    --text-dark: #1a1a2e;
    --text-medium: #4a4a68;
    --text-light: #6b7280;
    --white: #ffffff;
    --bg-light: #f5f7fa;
    --bg-warm: #fafbfd;
    --shadow-sm: 0 2px 8px rgba(11, 37, 69, 0.06);
    --shadow: 0 4px 20px rgba(11, 37, 69, 0.08);
    --shadow-lg: 0 12px 40px rgba(11, 37, 69, 0.12);
    --shadow-xl: 0 20px 60px rgba(11, 37, 69, 0.15);
    --shadow-blue: 0 8px 30px rgba(21, 101, 192, 0.25);
    --shadow-green: 0 8px 30px rgba(0, 200, 83, 0.25);
    --radius: 12px;
    --radius-lg: 20px;
    --font-main: 'Inter', 'Poppins', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-title {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1.25rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: var(--green-gradient);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-main);
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(21, 101, 192, 0.35);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--green-gradient);
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 200, 83, 0.35);
}

.btn-outline {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
    padding: 0.75rem 2rem;
}

.btn-outline:hover {
    background: var(--accent-gradient);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-blue);
}

.btn-lg {
    padding: 1.1rem 3rem;
    font-size: 1.1rem;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

header .container {
    max-width: 100%;
    padding: 0 0 0 0;
}

header nav {
    justify-content: space-between;
    padding-right: 24px;
}

section {
    padding: 6rem 0;
}

/* ===== HEADER ===== */
header {
    background: #ffffff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(11, 37, 69, 0.06);
}

header.scrolled {
    box-shadow: 0 4px 30px rgba(11, 37, 69, 0.08);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
    position: relative;
}

.logo {
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    margin-right: auto;
    padding: 0;
}

.logo:hover {
    opacity: 0.85;
}

.logo-img {
    height: auto;
    width: 320px;
    max-height: 95px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-links li a {
    font-weight: 500;
    color: var(--text-medium);
    transition: var(--transition-fast);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
}

.nav-links li a:hover {
    color: var(--primary-blue);
    background: var(--primary-light);
}

.nav-links li a.active {
    color: var(--primary-blue);
    font-weight: 600;
}

.nav-links li a.btn {
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
    background: var(--accent-gradient);
    color: var(--white) !important;
    box-shadow: var(--shadow-blue);
}

.nav-links li a.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(21, 101, 192, 0.3);
    background: var(--accent-gradient);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.mobile-toggle:hover {
    background: var(--primary-light);
}

/* ===== DROPDOWN SECTEURS ===== */
.nav-links li.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.dropdown-toggle i {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i,
.dropdown.open .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    width: 320px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(11, 37, 69, 0.18), 0 0 0 1px rgba(11, 37, 69, 0.04);
    padding: 0.75rem;
    padding-top: calc(0.75rem + 10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 1001;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

.dropdown-menu::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-bottom-color: var(--white);
    border-top: 0;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.7rem 0.85rem;
    border-radius: var(--radius);
    transition: var(--transition-fast);
    text-decoration: none;
}

.dropdown-item:hover {
    background: var(--primary-light);
}

.dropdown-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.dropdown-item:hover .dropdown-icon {
    background: var(--accent-gradient);
    color: var(--white);
}

.dropdown-item strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.3;
}

.dropdown-item span {
    display: block;
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.3;
    margin-top: 1px;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(160deg, rgba(11, 37, 69, 0.85) 0%, rgba(21, 101, 192, 0.6) 50%, rgba(0, 200, 83, 0.3) 100%),
                url('../assets/images/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 120px;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg-light), transparent);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.75rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.92;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero .btn {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

.hero .btn i {
    transition: transform 0.3s ease;
}

.hero .btn:hover i {
    transform: translateX(4px);
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
    background-color: var(--bg-light);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(11, 37, 69, 0.04);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-blue);
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent-gradient);
    color: var(--white);
    transform: scale(1.05);
}

.service-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

/* ===== WHY CHOOSE US ===== */
.why-us {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--bg-light);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.6rem;
    margin: 0 auto 1.25rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.1);
}

.feature-item:hover .feature-icon {
    background: var(--accent-gradient);
    color: var(--white);
    box-shadow: var(--shadow-blue);
    transform: translateY(-4px);
}

.feature-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background-color: var(--bg-light);
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid rgba(11, 37, 69, 0.04);
    transition: var(--transition);
}

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

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 5rem;
    color: var(--primary-light);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.client-info h4 {
    margin-bottom: 0.1rem;
    font-size: 1rem;
    font-weight: 600;
}

.client-info span {
    font-size: 0.85rem;
    color: var(--secondary-green);
    font-weight: 500;
}

/* ===== CONTACT EXPRESS ===== */
.contact-express {
    background: var(--accent-gradient);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-express::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--bg-light);
    clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
}

.contact-express h2 {
    color: var(--white);
    font-size: 2.25rem;
}

.contact-express > .container > p {
    opacity: 0.9;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.express-form {
    max-width: 750px;
    margin: 2.5rem auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.express-form input,
.express-form select {
    flex: 1 1 200px;
    padding: 0.9rem 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.express-form select {
    padding-right: 2.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    color: rgba(255, 255, 255, 0.8);
}

.express-form select option {
    color: var(--text-dark);
    background: var(--white);
}

.express-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.express-form input:focus,
.express-form select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.2);
}

.express-form button {
    flex: 0 0 auto;
    width: 100%;
    max-width: 250px;
    margin-top: 0.5rem;
    white-space: nowrap;
    background: var(--white);
    color: var(--primary-blue);
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.express-form button:hover {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(180deg, #0B2545 0%, #091b35 100%);
    color: #c5d0dc;
    padding: 4rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--green-gradient);
    border-radius: 2px;
}

.footer-col p {
    line-height: 1.8;
    color: #8a9bb5;
}

.footer-links li {
    margin-bottom: 0.75rem;
    color: #8a9bb5;
}

.footer-links li i {
    margin-right: 0.5rem;
    color: var(--secondary-green);
}

.footer-links a {
    color: #8a9bb5;
    transition: var(--transition-fast);
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-green);
    transition: width 0.3s ease;
}

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

.footer-links a:hover::after {
    width: 100%;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #5a6f87;
    font-size: 0.9rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.fade-in {
    animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 120px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: var(--shadow-lg);
        text-align: center;
        gap: 0.25rem;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

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

    .nav-links li a {
        padding: 0.75rem 1rem;
        width: 100%;
        display: block;
    }

    .mobile-toggle {
        display: flex;
    }

    .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        box-shadow: none;
        border-radius: var(--radius);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
    }

    .dropdown-menu::before,
    .dropdown-menu::after {
        display: none;
    }

    .dropdown.open .dropdown-menu,
    .dropdown.open:hover .dropdown-menu {
        max-height: 600px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        padding: 0.5rem 0;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        max-height: 0;
        padding: 0;
    }

    .dropdown.open:hover .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        max-height: 600px !important;
        padding: 0.5rem 0 !important;
    }

    .dropdown-item {
        padding: 0.6rem 0.75rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        text-align: left;
        justify-content: flex-start;
    }

    .dropdown-item .dropdown-icon {
        flex-shrink: 0;
        width: 40px;
        min-width: 40px;
        height: 40px;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .dropdown-item > div:last-child {
        flex: 1;
        min-width: 0;
        text-align: left;
    }

    .dropdown-item strong,
    .dropdown-item span {
        display: block;
        text-align: left;
    }

    .dropdown-toggle {
        justify-content: center;
    }

    .nav-links li.dropdown {
        position: static;
    }

    .logo-img {
        width: 200px;
        margin-left: -28px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .express-form {
        flex-direction: column;
        gap: 0.5rem;
    }

    .express-form input,
    .express-form select {
        flex: none;
        width: 100%;
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
        min-width: 0;
    }

    .express-form button {
        max-width: 100%;
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        margin-top: 0.25rem;
    }

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

    section {
        padding: 4rem 0;
    }
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-blue) 100%);
    padding: 190px 0 100px;
    text-align: center;
    color: var(--white);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 200, 83, 0.1), transparent 60%);
}

.contact-hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-section-modern {
    padding: 0 0 5rem;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.contact-info-card {
    background: var(--accent-gradient);
    color: var(--white);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.contact-info-card h2 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.contact-info-card > div > p {
    opacity: 0.85;
    margin-bottom: 2.5rem;
}

.info-item-modern {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.25rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: var(--transition);
}

.info-item-modern:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
}

.info-item-modern .icon-box {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.info-item-modern:hover .icon-box {
    background: var(--white);
    color: var(--primary-blue);
}

.info-item-modern h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 0.2rem;
}

.info-item-modern p {
    margin-bottom: 0;
    font-weight: 500;
    opacity: 1;
    font-size: 1.05rem;
}

.info-item-modern small {
    opacity: 0.7;
    font-size: 0.85rem;
}


.contact-form-card {
    padding: 3rem;
}

.contact-form-card h2 {
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.modern-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group-modern {
    margin-bottom: 1.25rem;
    position: relative;
}

.form-group-modern label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-medium);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}

.form-group-modern input,
.form-group-modern select,
.form-group-modern textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: var(--transition);
    color: var(--text-dark);
}

.form-group-modern input:focus,
.form-group-modern select:focus,
.form-group-modern textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(21, 101, 192, 0.08);
}

.form-group-modern textarea {
    height: 140px;
    resize: vertical;
}

.btn-block {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-hero {
        padding: 140px 0 80px;
    }

    .contact-section-modern {
        margin-top: -40px;
    }
}

@media (max-width: 600px) {
    .contact-form-card,
    .contact-info-card {
        padding: 2rem;
    }

    .modern-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ===== TOAST NOTIFICATIONS ===== */
#toast-container {
    position: fixed;
    top: 130px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    min-width: 320px;
    padding: 16px 20px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid;
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    border-left-color: var(--secondary-green);
}

.toast.success i {
    color: var(--secondary-green);
}

.toast.error {
    border-left-color: #ef4444;
}

.toast.error i {
    color: #ef4444;
}

.toast-message {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* ===== REALISATIONS PAGE ===== */
.page-hero {
    min-height: 55vh;
    height: auto;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.realisations-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.project-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(11, 37, 69, 0.04);
}

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

.project-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    margin-bottom: 0;
}

.project-desc {
    padding: 1rem 1.5rem 1.5rem;
    color: var(--text-light);
}

/* Before/After Slider */
.ba-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: col-resize;
}

.ba-image-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 66.66%;
}

.ba-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.img-after {
    clip-path: inset(0 50% 0 0);
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--white);
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.4));
}

.ba-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-size: 1rem;
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: 5rem 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(11, 37, 69, 0.04);
}

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

.team-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center top;
}

.team-img-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #e8f0fe, #f0f4f8) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-img-placeholder i {
    color: var(--primary-blue) !important;
    opacity: 0.3;
}

.team-info {
    padding: 1.75rem;
}

.team-info h3 {
    margin-bottom: 0.4rem;
    color: var(--primary);
    font-size: 1.15rem;
}

.team-info span {
    display: block;
    color: var(--secondary-green);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.team-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== SERVICES PAGE – HERO ===== */
.services-hero {
    background: var(--accent-gradient);
    color: var(--white);
    padding: 190px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 200, 83, 0.12), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05), transparent 50%);
}

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

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

.services-hero h1 {
    color: var(--white);
    font-size: 3.25rem;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.services-hero p {
    opacity: 0.9;
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.services-hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.25rem 2.5rem;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.75;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
}

/* ===== SERVICES PAGE – SERVICE BLOCKS ===== */
.service-detail-v2 {
    padding: 6rem 0;
    position: relative;
}

.service-detail-v2.alt-bg {
    background: var(--bg-light);
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.service-block.reverse {
    direction: rtl;
}

.service-block.reverse > * {
    direction: ltr;
}

.service-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.04em;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--green-light);
    color: #15803d;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.service-badge i {
    font-size: 0.75rem;
}

.service-block-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.service-desc {
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.75rem;
}

.service-checklist {
    margin-bottom: 2rem;
}

.service-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
    color: var(--text-dark);
    font-size: 1rem;
}

.service-checklist li i {
    color: var(--secondary-green);
    font-size: 0.85rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-checklist li span {
    flex: 1;
}

.service-bottom {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.price-tag-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-light);
    color: var(--primary-blue);
    padding: 0.65rem 1.3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.price-tag-v2 i {
    font-size: 0.8rem;
}

.service-block-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-wrapper:hover img {
    transform: scale(1.04);
}

.image-float-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--primary);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow);
}

.image-float-badge i {
    color: var(--secondary-green);
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 6rem 0;
    background: var(--white);
}

.process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    flex: 1;
    max-width: 260px;
    position: relative;
}

.step-number {
    position: absolute;
    top: 0.5rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-light);
    line-height: 1;
    opacity: 0.6;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 auto 1.25rem;
    box-shadow: var(--shadow-blue);
    transition: var(--transition);
}

.process-step:hover .step-icon {
    transform: translateY(-4px) rotate(-5deg);
    box-shadow: 0 12px 35px rgba(21, 101, 192, 0.3);
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.process-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.2rem;
    padding-top: 3.5rem;
    flex-shrink: 0;
}

/* ===== CTA SERVICES ===== */
.cta-services {
    padding: 5rem 0 6rem;
    background: var(--bg-light);
}

.cta-card {
    background: var(--accent-gradient);
    border-radius: var(--radius-lg);
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(0, 200, 83, 0.1);
    pointer-events: none;
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

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

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.cta-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* ===== SERVICES PAGE RESPONSIVE ===== */
@media (max-width: 960px) {
    .service-block {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-block.reverse {
        direction: ltr;
    }

    .services-hero h1 {
        font-size: 2.5rem;
    }

    .process-grid {
        flex-direction: column;
        align-items: center;
    }

    .process-connector {
        transform: rotate(90deg);
        padding-top: 0;
        padding: 0.5rem 0;
    }

    .process-step {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .services-hero {
        padding: 130px 0 60px;
    }

    .services-hero h1 {
        font-size: 2rem;
    }

    .services-hero-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 2rem;
        border-radius: var(--radius-lg);
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .service-number {
        font-size: 3.5rem;
    }

    .service-block-text h2 {
        font-size: 1.75rem;
    }

    .service-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-card {
        padding: 2.5rem 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }
}

/* ===== BLOG ===== */
.blog-hero {
    background: var(--accent-gradient);
    color: var(--white);
    padding: 190px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 75%, rgba(0, 200, 83, 0.1), transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.04), transparent 50%);
}

.blog-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--bg-light), transparent);
    pointer-events: none;
}

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

.blog-hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.blog-hero p {
    opacity: 0.9;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.blog-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(11, 37, 69, 0.04);
    display: flex;
    flex-direction: column;
}

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

.blog-card-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.blog-card:hover .blog-card-icon {
    background: var(--accent-gradient);
    color: var(--white);
}

.blog-card-category {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--green-light);
    color: #15803d;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    width: fit-content;
}

.blog-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.blog-card h3 a {
    color: var(--primary);
    transition: var(--transition-fast);
}

.blog-card h3 a:hover {
    color: var(--primary-blue);
}

.blog-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.blog-card .read-more:hover {
    gap: 0.7rem;
}

.blog-card .read-more i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.blog-card:hover .read-more i {
    transform: translateX(3px);
}

/* Article pages */
.article-hero {
    background: var(--accent-gradient);
    color: var(--white);
    padding: 130px 0 25px;
    text-align: center;
    position: relative;
}

.article-hero .hero-badge,
.article-hero h1 {
    opacity: 1;
    transform: none;
}

.article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(0, 200, 83, 0.08), transparent 50%);
}

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

.article-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    max-width: 750px;
    margin: 0 auto 1rem;
    line-height: 1.2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    opacity: 0.6;
}

.article-section {
    padding: 4rem 0 5rem;
    background: var(--white);
}

.article-content {
    max-width: 750px;
    margin: 0 auto;
}

.article-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-light);
}

.article-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.article-content p {
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.article-content ul,
.article-content ol {
    margin: 1.25rem 0;
    padding-left: 1.5rem;
}

.article-content li {
    color: var(--text-medium);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.article-content strong {
    color: var(--text-dark);
}

.article-content .article-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
    box-shadow: var(--shadow);
}

.article-content .article-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin: 2rem 0;
}

.article-content .article-img-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.article-content .article-img-grid img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .article-content .article-img {
        height: 220px;
    }

    .article-content .article-img-grid {
        grid-template-columns: 1fr;
    }

    .article-content .article-img-grid img {
        height: 200px;
    }
}

.article-content .highlight-box {
    background: var(--primary-light);
    border-left: 4px solid var(--primary-blue);
    padding: 1.25rem 1.5rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 2rem 0;
}

.article-content .highlight-box p {
    color: var(--primary);
    margin-bottom: 0;
    font-weight: 500;
}

.article-cta {
    background: var(--bg-light);
    padding: 4rem 0;
}

.article-cta .cta-card {
    max-width: 750px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-hero h1 {
        font-size: 2.25rem;
    }

    .article-hero h1 {
        font-size: 1.85rem;
    }

    .blog-hero,
    .article-hero {
        padding: 120px 0 25px;
    }
}
