/* Modern Reset & Base Styles */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

:root {
    --primary-color: #ffdf09;
    /* Bolt Yellow */
    --secondary-color: #1a1a1a;
    /* Dark Grey */
    --text-color: #333;
    --light-text: #fff;
    --background-light: #f9f9f9;
    --background-dark: #111;
    --transition-speed: 0.3s;
    --font-primary: 'Outfit', sans-serif;
    /* Modern Font */
    --border-radius-btn: 50px;
    /* Rounded Buttons */
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

ul {
    list-style: none;
}

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

/* Header & Nav */
header {
    background: var(--primary-color);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 0 40px;
}

.logo img {
    height: 32px;
    /* Reduced size */
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-item {
    position: relative;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
}

.nav-item>a {
    padding: 10px 0;
    display: block;
    color: var(--secondary-color);
    position: relative;
}

.nav-item>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-speed);
}

.nav-item:hover>a::after {
    width: 100%;
}

/* Dropdown Arrow */
.nav-item>a .icon-arrow-down {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 6px;
    position: relative;
    top: -1px;
    transition: transform 0.3s ease;
}

.nav-item>a .icon-arrow-down::before {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    left: 1px;
}

.nav-item:hover>a .icon-arrow-down {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #fff;
    min-width: 240px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    padding: 8px;
    z-index: 1001;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Small triangle pointer */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    padding: 11px 18px;
    display: block;
    color: var(--text-color);
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.92rem;
    position: relative;
}

.dropdown-item:hover {
    background: rgba(255, 223, 9, 0.12);
    color: var(--secondary-color);
    padding-left: 24px;
}

/* Nested Submenu */
.has-submenu {
    position: relative;
}

.submenu-arrow {
    float: right;
    font-size: 1.1rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.has-submenu:hover .submenu-arrow {
    transform: translateX(3px);
}

.submenu {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 200px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-8px);
    transition: all 0.25s ease;
    list-style: none;
    z-index: 1002;
}

.has-submenu:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(4px);
}

.dropdown-item:hover::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    border-radius: 2px;
    background: var(--primary-color);
}

/* Rounded Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    /* Reduced radius to match logo style */
    font-weight: 700;
    /* Bold regarding logo */
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-speed);
    cursor: pointer;
    border: 2px solid transparent;
    transform: skewX(-12deg);
    /* Slanted like the logo */
    font-style: italic;
    /* Text skewed/italic as well */
}

.btn-primary {
    background-color: var(--secondary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #333;
    transform: skewX(-12deg) translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--light-text);
    transform: skewX(-12deg) translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Mobile-only elements */
.btn-mobile-only {
    display: none;
}

/* Hero CTA Button — Yellow with progress border */
.btn-hero {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    position: relative;
    font-size: 1rem;
    padding: 16px 40px;
    border: none;
    overflow: visible;
}

.btn-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid var(--secondary-color);
    border-radius: inherit;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.btn-hero:hover::after {
    clip-path: inset(0 0 0 0);
}

.btn-hero:hover {
    transform: skewX(-12deg) translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Mobile Menu Toggle */
.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/bolt-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 80px;
    /* Offset for fixed header */
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Sections General */
section {
    padding: 80px 0;
}

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

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.section-title h3 {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--secondary-color);
    max-width: 700px;
    margin: 5px auto 0;
}

/* About Section */
.about-text {
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    color: #555;
    font-weight: 300;
    font-family: var(--font-primary);
}

.about-text h3 {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* How It Works (Grid) */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.step-card {
    background: #fff;
    padding: 35px 30px 30px 30px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.step-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(255, 223, 9, 0.15);
    transform: translateY(-4px);
}

.step-card:hover::before {
    width: 5px;
}

/* Skewed step number badge */
.step-number {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 1.3rem;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 14px 0;
    transform: skewX(-8deg);
    transform-origin: top left;
    font-style: italic;
    z-index: 2;
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 10px auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    max-height: 100%;
}

.step-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.step-card p {
    font-size: 0.92rem;
    color: #777;
}

/* Services Section — Featured Cards + Small Cards */
.services-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.service-card-featured {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card-featured:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
    border-color: var(--primary-color);
}

.service-card-img {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card-featured:hover .service-card-img img {
    transform: scale(1.05);
}

.service-card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-body h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.service-card-body p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    flex: 1;
}

.service-card-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-card-link:hover {
    color: var(--primary-color);
}

/* Small Service Cards — 3 column */
.services-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card-small {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-small::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.service-card-small:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(255, 223, 9, 0.15);
    transform: translateY(-4px);
}

.service-card-small:hover::before {
    width: 5px;
}

.service-card-small-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-small-icon img {
    max-height: 50px;
}

.service-card-small h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-card-small p {
    font-size: 0.88rem;
    color: #777;
    line-height: 1.5;
}

/* B2B Section */
.b2b-section {
    padding: 80px 0;
    background: #fff;
}

.b2b-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
}

.b2b-images-row {
    display: flex;
    gap: 30px;
    width: 100%;
}

.b2b-img-box {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.b2b-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.b2b-img-box:hover img {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .b2b-images-row {
        flex-direction: column;
    }

    .b2b-img-box {
        height: 250px;
    }
}

.b2b-content {
    max-width: 800px;
    margin: 0 auto;
}

.b2b-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.b2b-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

.b2b-highlight {
    font-weight: 700;
    color: var(--secondary-color) !important;
    font-size: 1.15rem !important;
    position: relative;
    padding-left: 20px;
}

.b2b-highlight::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Spotlight (XL & Askılı) */
.spotlight-section {
    background: linear-gradient(rgba(26, 26, 26, 0.85), rgba(26, 26, 26, 0.85)), url('../img/bolt-xl-agir-tasimacilik.jpeg?v=2.7') no-repeat center center/cover;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.spotlight-content h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 3rem;
}

.spotlight-content p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
}

/* Banner Section (Text Based - Premium Style) */
/* Banner Section (Animated Dark Stripes & Yellow Highlight) */
@keyframes stripeMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 50px 50px;
    }
}

.banner-section {
    padding: 140px 0;
    /* Sarı Arka Plan */
    background-color: var(--primary-color);
    color: #1a1a1a;
    text-align: center;
    position: relative;
    overflow: hidden;

    /* Hareketli Çizgiler (Beyaz Şeffaf) */
    background-image: linear-gradient(-45deg,
            rgba(255, 255, 255, 0.2) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.2) 75%,
            transparent 75%,
            transparent);
    background-size: 50px 50px;
    animation: stripeMove 2s linear infinite;
    box-shadow: none;
}

.banner-section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #1a1a1a;
    /* Siyah Başlık */
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: none;
    /* Gölge Kaldırıldı */
    position: relative;
    z-index: 2;
}

/* "GÜVENİLİR VE PLANLI" kelimeleri için sarı alt çizgi */
.highlight-text {
    border-bottom: 6px solid #cfa900;
    /* KOYU SARI ÇİZGİ */
    padding-bottom: 5px;
    display: inline-block;
}

@media (max-width: 768px) {
    .banner-section h2 {
        font-size: 2.2rem;
    }
}

.banner-text {
    font-size: 1.3rem;
    color: #333;
    /* Koyu Metin */
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
    backdrop-filter: none;
}

/* Legacy styles cleanup */
.banner-highlight {
    display: none;
}

/* Premium Info Section */
.premium-info {
    background: #000;
    color: #fff;
    text-align: center;
}

.premium-info h2 {
    color: var(--primary-color);
}

/* Contact Page */
.contact-header {
    background: var(--secondary-color);
    color: #fff;
    padding: 150px 0 80px;
    text-align: center;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info-section {
    padding: 80px 0;
    background: var(--background-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition-speed);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 223, 9, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.contact-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.contact-card p,
.contact-card a {
    font-size: 1.1rem;
    color: #555;
    display: block;
    margin-bottom: 5px;
}

.contact-card a:hover {
    color: var(--primary-color);
}

.map-section {
    height: 450px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
footer {
    background: #111;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-links a img {
    width: 40px;
    transition: transform 0.3s;
}

.social-links a:hover img {
    transform: scale(1.1);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-links a {
    color: #ccc;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.copyright {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    border-top: 1px solid #222;
    padding-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* Header - smaller logo */
    .logo img {
        height: 28px;
    }

    header {
        padding: 0.4rem 0;
    }

    .container {
        padding: 0 16px;
    }

    /* Mobile nav */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        text-align: center;
        z-index: 999;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

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

    .nav-item {
        width: 100%;
        padding: 10px 0;
    }

    .nav-item>a::after {
        display: none;
    }

    .dropdown-menu {
        position: static !important;
        width: 100% !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none;
        background: #f5f5f5;
        display: none;
        min-width: 100%;
        border: none;
        padding: 8px 0;
        border-radius: 8px;
        margin-top: 5px;
        left: auto;
    }

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

    .nav-item:hover .dropdown-menu {
        display: block;
        transform: none !important;
    }

    .dropdown-item {
        text-align: center;
        padding: 12px 16px;
        font-size: 0.9rem;
        border-radius: 0;
    }

    .dropdown-item:hover {
        padding-left: 16px;
        background: rgba(255, 223, 9, 0.15);
    }

    .dropdown-item:hover::before {
        display: none;
    }

    /* Mobile submenu */
    .submenu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        border: none;
        background: #eee;
        min-width: 100%;
        padding: 4px 0;
        border-radius: 6px;
        margin-top: 4px;
        display: none;
    }

    .has-submenu:hover>.submenu {
        display: block;
        transform: none !important;
    }

    .submenu-arrow {
        display: inline-block;
        transform: rotate(90deg);
    }

    .header-action {
        display: none;
    }

    .hamburger {
        display: block;
    }

    /* Hero */
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 20px 60px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 12px 18px;
        font-size: 0.82rem;
    }

    .hero-buttons .btn-hero {
        padding: 12px 18px;
        font-size: 0.82rem;
    }

    .btn-mobile-only {
        display: inline-block;
    }

    /* Sections */
    section {
        padding: 50px 0;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    /* How It Works */
    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* B2B Section */
    .b2b-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .b2b-content h2 {
        font-size: 1.6rem;
    }

    /* Services - responsive */
    .services-featured {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card-img {
        height: 200px;
    }

    .services-grid-3 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Spotlight */
    .spotlight-content {
        flex-direction: column;
    }

    /* Info grid */
    .info-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}