/* ============================================================
   DARK FORGE THEME — Turuncu Otomotiv Servis
   Renk Paleti: Antrasit + Turuncu Amber
   ============================================================ */

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

:root {
    /* Ana Renkler */
    --primary-color: #F97316;
    /* Turuncu Amber */
    --primary-hover: #EA6C04;
    --primary-glow: rgba(249, 115, 22, 0.35);

    /* Arka Plan Katmanları */
    --bg-darkest: #0A0D12;
    /* En koyu - footer */
    --bg-dark: #ffffff;
    /* Ana arka plan */
    --bg-card: #161B22;
    /* Kart / section bg */
    --bg-card-hover: #1C2333;
    --bg-glass: rgba(22, 27, 34, 0.7);
    --bg-glass-light: rgba(255, 255, 255, 0.05);

    /* Metin */
    --text-white: #F0F6FC;
    --text-light: #8B949E;
    --text-muted: #6E7681;
    --text-dark: #F0F6FC;
    /* dark temada "dark" = açık metin */
    --text-medium: #8B949E;

    /* Eski uyumluluk değişkenleri */
    --secondary-color: #0A0D12;
    --secondary-light: #161B22;
    --white: #FFFFFF;
    --background-light: #161B22;
    --border-color: rgba(240, 246, 252, 0.08);
    --success: #10B981;

    /* Gölgeler */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.6);
    --shadow-orange: 0 0 30px rgba(249, 115, 22, 0.3);

    /* Border radii */
    --radius-sm: 0.375rem;
    --radius-md: 0.625rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 60%, #F97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-desc {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    letter-spacing: 0.03em;
}

.btn-primary {
    background: linear-gradient(135deg, #F97316, #EA6C04);
    color: #fff;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FB8A30, #F97316);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(249, 115, 22, 0.5);
}

.btn-white {
    background-color: var(--text-white);
    color: var(--primary-color);
    font-weight: 700;
}

.btn-white:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #2EE673, #25D366);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    border-radius: var(--radius-full);
}

.pulse-anim {
    animation: pulse 2.5s infinite;
    border-radius: var(--radius-full);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(249, 115, 22, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    z-index: 1000;
    height: 88px;
    display: flex;
    align-items: center;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 2rem;
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background-color: rgba(10, 13, 18, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(249, 115, 22, 0.15);
    top: 10px;
    width: 96%;
    max-width: 1500px;
    border-radius: 50px;
    height: 68px;
    border-bottom: none;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-white);
    text-decoration: none;
}

.logo-img {
    max-height: 120px;
    width: auto;
    object-fit: contain;
    /* Beyaz logo her zaman görünsün */
    filter: brightness(0) invert(1);
}

.logo-icon {
    font-size: 1.8rem;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: rgba(240, 246, 252, 0.82);
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.97rem;
    letter-spacing: 0.02em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), #FBBF24);
    transition: var(--transition);
    border-radius: var(--radius-full);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: rgba(13, 17, 23, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 115, 22, 0.18);
    min-width: 220px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border-radius: var(--radius-lg);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 1000;
}

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

.dropdown-item {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.93rem;
    transition: var(--transition);
    border-left: 2px solid transparent;
}

.dropdown-item:hover {
    background-color: rgba(249, 115, 22, 0.08);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

@media (max-width: 768px) {

    /* 1. Alt menüleri varsayılan olarak GİZLE ve hizalamayı düzelt */
    .dropdown-menu {
        display: none !important;
        /* Sayfa ilk açıldığında kapalı tutar */
        position: static !important;
        /* Diğer menüleri aşağı itmesini sağlar, üst üste binmez */
        width: 100% !important;
        background-color: #161b22 !important;
        border: none !important;
        border-left: 2px solid rgba(249, 115, 22, 0.8) !important;
        box-shadow: none !important;
        transform: none !important;
        padding: 0 !important;
        margin: 0 !important;
        text-align: center !important;
    }

    /* 2. Tıklanınca (active sınıfı eklenince) GÖSTER */
    .dropdown.active>.dropdown-menu {
        display: block !important;
    }

    /* 3. Linklerin iç içe girmemesi ve rahat tıklanması için ayarlar */
    .dropdown-menu li {
        display: block !important;
        width: 100% !important;
    }

    .dropdown-menu li a {
        display: block !important;
        padding: 12px 0 !important;
        /* Telefondan parmakla basması kolay olsun diye boşluk */
    }
}

.dropdown>.nav-link::after {
    display: none;
}


.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.mobile-menu-btn .bar {
    width: 25px;
    height: 2.5px;
    background-color: var(--text-white);
    border-radius: 3px;
    transition: var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    background-color: var(--bg-darkest);
    background-image: url('images/Banner/banne-turuncu1.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: var(--text-white);
    margin-top: 0;
    padding-top: 88px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
            rgba(10, 13, 18, 0.97) 0%,
            rgba(10, 13, 18, 0.88) 45%,
            rgba(10, 13, 18, 0.55) 75%,
            rgba(10, 13, 18, 0.3) 100%);
}

/* Turuncu ışık efekti */
.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    padding: 4rem 0;
}

.hero-text-content {
    max-width: 680px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(249, 115, 22, 0.12);
    color: #FB923C;
    padding: 0.45rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 1.75rem;
    border: 1px solid rgba(249, 115, 22, 0.35);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 6px var(--primary-color);
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.275rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-light);
    font-size: 0.9rem;
}

.check-icon {
    color: var(--primary-color);
    font-weight: 900;
    font-size: 1.1rem;
}

/* ============================================================
   GALLERY / SERVICES
   ============================================================ */
.gallery-section {
    background-color: var(--bg-dark);
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
}

.gallery-card {
    background: #ffffff;
    /*border: 1px solid rgba(240, 246, 252, 0.08);*/
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
}

.gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--shadow-orange);
    border-color: rgba(249, 115, 22, 0.25);
}

.gallery-card:hover::before {
    opacity: 1;
}

.gallery-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: var(--bg-card);
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover .gallery-img-wrapper img {
    transform: scale(1.07);
}

.gallery-caption {
    padding: 1.25rem 1.5rem;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    color: #0a0d12e0;
    background-color: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    letter-spacing: 0.01em;
    transition: var(--transition);
}

.gallery-card:hover .gallery-caption {
    color: var(--primary-color);
}

/* Services */
.services {
    background-color: var(--bg-card);
}

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

.service-card {
    background: var(--bg-glass);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md), var(--shadow-orange);
    border-color: rgba(249, 115, 22, 0.25);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.service-card p {
    color: var(--text-light);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

/* ============================================================
   BRAND BANNER
   ============================================================ */
.brand-banner {
    background-color: #F97316;
    border-top: 1px solid rgba(249, 115, 22, 0.12);
    border-bottom: 1px solid rgba(249, 115, 22, 0.12);
    padding: 2.75rem 0;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.brand-banner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), #FBBF24);
}

.brand-banner::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), #FBBF24);
}

.brand-title {
    color: #ffffff;
    font-size: 1.9rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.01em;
}

/* ============================================================
   PARALLAX SEPARATOR
   ============================================================ */
.parallax-separator {
    background-image: url('images/Parallax/parallax-foto.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 420px;
    position: relative;
    z-index: 1;
}

.parallax-separator::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 13, 18, 0.55);
}

@media (max-width: 768px) {
    .parallax-separator {
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
        min-height: 250px;
    }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-us {
    background-color: var(--bg-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-image-col {
    position: relative;
    padding-left: 30px;
    height: 100%;
}

.about-img-decoration {
    position: absolute;
    left: 0;
    top: 20px;
    bottom: 20px;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), #FBBF24);
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.5);
}

.about-img-wrapper {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(249, 115, 22, 0.1);
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    padding-top: 1rem;
}

.about-eyebrow {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
    position: relative;
}

.about-eyebrow::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    vertical-align: middle;
    margin-right: 8px;
    transform: translateY(-1px);
    box-shadow: 0 0 6px var(--primary-color);
}

.section-title.text-left {
    text-align: left;
    margin-left: 0;
    font-size: 2.5rem;
    color: #181818;
}

.about-text {
    color: black;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 400;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.mv-col {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: var(--transition);
}

.mv-col:hover {
    border-color: rgba(82, 49, 26, 0.25);
    background: rgba(46, 20, 2, 0.04);
}

.mv-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: black;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.mv-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-color), #F97316);
    color: white;
    border-radius: 50%;
    font-style: normal;
    font-size: 0.75rem;
    font-weight: 900;
    flex-shrink: 0;
}

.mv-text {
    font-size: 0.92rem;
    color: black;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-col {
        min-height: 360px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   STATS
   ============================================================ */
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--primary-color);
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), var(--shadow-orange);
    background: #F97316;
    border-color: #F97316;
}

.stat-number {
    display: block;
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transition: var(--transition);
    letter-spacing: -0.02em;
}

.stat-card:hover .stat-number {
    color: white;
}

.stat-label {
    color: black;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.stat-card:hover .stat-label {
    color: var(--text-white);
}

/* Homepage Stats */
.about-stats.home-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 2rem 0;
}

.about-stats.home-stats .stat-card {
    padding: 1.5rem;
}

.about-stats.home-stats .stat-number {
    font-size: 2.25rem;
    margin-bottom: 0.25rem;
}

.about-stats.home-stats .stat-label {
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .about-stats.home-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.animate-from-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fast {
    transition-duration: 0.5s;
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: -0.1s;
}

.animate-from-left.animate-active {
    opacity: 1;
    transform: translateX(0);
    border-radius: var(--radius-lg);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 50%, #C2410C 100%);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(-15deg);
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 400;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background-color: var(--bg-darkest);
    color: var(--text-light);
    padding-top: 5rem;
    padding-bottom: 2rem;
    border-top: 1px solid rgba(249, 115, 22, 0.12);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.footer-col h3 {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.footer-col p {
    font-size: 0.92rem;
    line-height: 1.75;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    color: var(--text-light);
    font-size: 0.92rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.footer-col a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.contact-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(240, 246, 252, 0.06);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================================
   STICKY CONTACT BUTTONS
   ============================================================ */
.sticky-btn {
    position: fixed;
    bottom: 20px;
    width: 58px;
    height: 58px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    color: white;
}

.sticky-btn:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.sticky-phone {
    left: 20px;
    background: linear-gradient(135deg, #F97316, #EA6C04);
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.5);
}

.sticky-phone:hover {
    box-shadow: 0 8px 28px rgba(249, 115, 22, 0.65);
}

.sticky-whatsapp {
    right: 20px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

.sticky-whatsapp:hover {
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

.sticky-btn svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

@media (max-width: 480px) {
    .sticky-btn {
        width: 50px;
        height: 50px;
        bottom: 15px;
    }

    .sticky-phone {
        left: 12px;
    }

    .sticky-whatsapp {
        right: 12px;
    }

    .sticky-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-split-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    background: transparent;
    box-shadow: none;
    margin-top: 35px;
}

.contact-map-side {
    width: 654px !important;
    height: 600px !important;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.contact-info-side {
    flex: 0 0 450px;
    background: #fff;
    backdrop-filter: blur(12px);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.contact-info-label {
    font-size: 1rem;
    font-weight: 700;
    color: black;
    margin-bottom: 0.5rem;
}

.contact-info-text {
    font-size: 1rem;
    color: black;
    line-height: 1.65;
    font-weight: 400;
}

.contact-info-group {
    margin-bottom: 2rem;
    width: 100%;
}

.social-icons-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
}

.social-icon-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.btn-twitter {
    background-color: #38bdf8;
}

.btn-facebook {
    background-color: #3b82f6;
}

.btn-youtube {
    background-color: #ef4444;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

@media (max-width: 900px) {
    .contact-split-container {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-info-side {
        flex: auto;
        min-height: auto;
    }

    .contact-map-side {
        flex: auto;
        width: 100% !important;
        height: 400px !important;
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .about-grid,
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero {
        min-height: 520px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .section {
        padding: 3rem 0;
    }

    /* Header & Nav */
    .header {
        height: 70px;
        padding: 0 1rem;
    }

    .header-container {
        justify-content: space-between;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 13, 18, 0.97);
        backdrop-filter: blur(20px);
        padding: 1rem 1.5rem 2rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
        transform: translateY(-120%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        display: block;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav.active {
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
        padding-top: 1rem;
    }

    .nav-link {
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
        color: var(--text-white);
    }

    .header-actions {
        gap: 0.5rem;
    }

    .header-actions .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        margin-left: auto;
    }

    /* Hero */
    .hero {
        padding-top: 70px;
        min-height: auto;
        padding-bottom: 3rem;
        text-align: center;
    }

    .hero-content {
        justify-content: center;
        text-align: center;
        padding: 3rem 0;
    }

    .hero-text-content {
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.1rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        margin-bottom: 2rem;
        align-items: center;
    }

    .btn {
        width: 100%;
    }

    .trust-indicators {
        justify-content: center;
        gap: 1rem;
    }

    /* Grids */
    .services-grid,
    .gallery-grid,
    .footer-grid,
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-img-wrapper,
    .map-container {
        min-height: 250px;
    }

    .about-grid {
        gap: 2.5rem;
    }

    /* Footer */
    .footer {
        padding-top: 3rem;
        text-align: center;
    }

    .footer-col {
        align-items: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-col ul {
        align-items: center;
    }

    .contact-list li {
        justify-content: center;
    }

    /* Mission Vision */
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

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

/* ============================================================
   ABOUT PAGE — Map vb.
   ============================================================ */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    min-height: 400px;
}

/* Features list */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.features-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon-box {
    background: linear-gradient(135deg, var(--primary-color), #FBBF24);
    color: #fff;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.features-list h4 {
    color: black;
    margin-bottom: 0.25rem;
}

.features-list p {
    font-size: 0.93rem;
    color: #343434;
}