/*
 * Vega Oto Servis — Premium Design System V2
 * Fixed overflows, improved proportions, richer aesthetics
 */

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

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    color: #3a4553;
    line-height: 1.7;
    background: #fff;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

:root {
    --primary: #11284B;
    --primary-light: #1a3a66;
    --secondary: #73C900;
    --secondary-dark: #5da300;
    --accent: #f39c12;
    --text: #3a4553;
    --text-light: #6b7a8f;
    --bg-light: #f8fafc;
    --white: #fff;
    --shadow-sm: 0 2px 8px rgba(17, 40, 75, 0.06);
    --shadow-md: 0 8px 24px rgba(17, 40, 75, 0.08);
    --shadow-lg: 0 16px 48px rgba(17, 40, 75, 0.12);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary);
    font-weight: 700;
    line-height: 1.25;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

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

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

ul {
    list-style: none;
}

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

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

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 60px;
    }
}

section {
    padding: 60px 0;
}

@media (min-width: 768px) {
    section {
        padding: 80px 0;
    }
}

@media (min-width: 992px) {
    section {
        padding: 100px 0;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 100px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(115, 201, 0, 0.35);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(115, 201, 0, 0.45);
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
    background: transparent;
}

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

.btn-dark {
    background: var(--primary);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--primary-light);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(17, 40, 75, 0.97);
    padding: 12px 0;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.logo span {
    color: var(--secondary);
}

.logo-img {
    height: 48px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.footer-logo {
    height: 55px;
    max-width: 200px;
}

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

@media (max-width: 991px) {
    .logo-img {
        height: 38px;
        max-width: 150px;
    }
    .header.scrolled .logo-img {
        height: 34px;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 32px;
        max-width: 120px;
    }
    .header.scrolled .logo-img {
        height: 28px;
        max-width: 110px;
    }
    .footer-logo {
        height: 40px;
        max-width: 140px;
    }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    .logo-img {
        height: 32px !important;
        max-width: 120px !important;
    }
    .header.scrolled .logo-img {
        height: 28px !important;
    }
}

.nav-menu {
    display: none;
    gap: 36px;
    align-items: center;
}

@media (min-width: 992px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--white);
}

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

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.has-dropdown>.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.has-dropdown>.nav-link i {
    font-size: 0.7rem;
    transition: var(--transition);
}

.has-dropdown:hover>.nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 12px 0;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

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

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text);
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--secondary);
    padding-left: 24px;
}

.dropdown-divider {
    height: 1px;
    background: #e8ecf2;
    margin: 8px 16px;
}

/* Scrolled header dropdown adjustment */
.header.scrolled .dropdown-menu {
    background: var(--white);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-phone {
    display: none;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 600;
}

@media (min-width: 768px) {
    .nav-phone {
        display: flex;
    }
}

.nav-phone i {
    color: var(--secondary);
}

.nav-btn {
    display: none;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

@media (min-width: 992px) {
    .nav-btn {
        display: inline-flex;
    }
}

.header.scrolled .nav-btn {
    background: var(--secondary);
    border-color: var(--secondary);
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

@media (min-width: 992px) {
    .mobile-toggle {
        display: none;
    }
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--primary);
    z-index: 1001;
    padding: 80px 32px 32px;
    transition: right 0.4s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-link {
    display: block;
    padding: 16px 0;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-menu-close i {
    color: var(--white);
    font-size: 1.2rem;
}

/* Mobile Dropdown */
.mobile-nav-group {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.mobile-dropdown-toggle i {
    transition: var(--transition);
}

.mobile-nav-group.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 16px;
}

.mobile-nav-group.active .mobile-dropdown {
    max-height: 500px;
}

.mobile-dropdown a {
    display: block;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-dropdown a:hover {
    color: var(--secondary);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

.hero-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.78vh;
    /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 40, 75, 0.95) 0%, rgba(17, 40, 75, 0.7) 50%, rgba(17, 40, 75, 0.4) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 680px;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(115, 201, 0, 0.15);
    border: 1px solid rgba(115, 201, 0, 0.3);
    border-radius: 100px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero-badge i {
    font-size: 0.9rem;
}

.hero-title {
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-title span {
    color: var(--secondary);
}

.hero-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 560px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat-item h3 {
    color: var(--secondary);
    font-size: 2.5rem;
    font-weight: 800;
}

.hero-stat-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ===== FEATURES BAR ===== */
.features-bar {
    position: relative;
    margin-top: -60px;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

@media (min-width: 576px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    padding: 28px 20px;
    background: var(--white);
    transition: var(--transition);
}

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

.feature-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.feature-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-content h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

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

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

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.about-img-float {
    position: absolute;
    bottom: -32px;
    right: -24px;
    width: 200px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    border: 4px solid var(--white);
}

@media (max-width: 991px) {
    .about-img-float {
        display: none;
    }
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(115, 201, 0, 0.1);
    border-radius: 100px;
    color: var(--secondary-dark);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-text {
    margin-bottom: 32px;
}

.about-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.about-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-list-item i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.about-list-item span {
    font-weight: 500;
    color: var(--text);
}

/* ===== SERVICES ===== */
.services {
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(115, 201, 0, 0.1);
    border-radius: 100px;
    color: var(--secondary-dark);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 576px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    position: relative;
    background: var(--white);
    border: 1px solid #e8ecf2;
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: var(--transition);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

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

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-icon i {
    font-size: 1.6rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
}

.service-card:hover .service-icon i {
    color: var(--secondary);
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
}

.service-link:hover {
    color: var(--secondary);
    gap: 10px;
}

/* ===== VIDEO SECTION ===== */
.video-section {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(115, 201, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

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

@media (min-width: 992px) {
    .video-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.video-content {
    color: var(--white);
}

.video-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(115, 201, 0, 0.15);
    border: 1px solid rgba(115, 201, 0, 0.3);
    border-radius: 100px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.video-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.video-content>p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.video-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.video-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.video-feature-item i {
    width: 28px;
    height: 28px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--white);
}

.video-feature-item span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.video-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16/10;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    animation: pulse 2s infinite;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-btn i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-left: 4px;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

/* ===== STATS SECTION ===== */
.stats {
    background: var(--secondary);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item h3 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: #ffc107;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
}

.testimonial-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.testimonial-info p {
    font-size: 0.8rem;
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    text-align: center;
    padding: 80px 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
    background: #0a1628;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 576px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    }
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary);
}

.footer-social a i {
    color: var(--white);
    font-size: 1rem;
}

.footer-heading {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 24px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

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

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact i {
    color: var(--secondary);
    margin-top: 4px;
}

.footer-contact span {
    font-size: 0.9rem;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
}

.footer-legal-links {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

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

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== 360° SERVICE SECTION ===== */
.service-360 {
    background: var(--bg-light);
    padding: 100px 0;
}

.service-360-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 992px) {
    .service-360-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.service-360-content h2 {
    margin-bottom: 20px;
}

.service-360-content>p {
    margin-bottom: 32px;
}

.service-360-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.s360-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.s360-feature i {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.s360-feature span {
    font-weight: 600;
    color: var(--text);
}

.service-360-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.s360-circle {
    position: relative;
    width: 320px;
    height: 320px;
}

.s360-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.s360-center span {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.s360-center small {
    font-size: 0.85rem;
    opacity: 0.8;
}

.s360-orbit-item {
    position: absolute;
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    animation: orbit-float 3s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.5s);
}

.s360-orbit-item:nth-child(2) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.s360-orbit-item:nth-child(3) {
    top: 15%;
    right: 5%;
}

.s360-orbit-item:nth-child(4) {
    bottom: 15%;
    right: 5%;
}

.s360-orbit-item:nth-child(5) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.s360-orbit-item:nth-child(6) {
    bottom: 15%;
    left: 5%;
}

.s360-orbit-item:nth-child(7) {
    top: 15%;
    left: 5%;
}

.s360-orbit-item i {
    font-size: 1.2rem;
    color: var(--primary);
}

@keyframes orbit-float {

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

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

/* ===== SERVICE CARDS V2 (With Images) ===== */
.services-grid-v2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 576px) {
    .services-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .services-grid-v2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card-v2 {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.sc-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.sc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-v2:hover .sc-image img {
    transform: scale(1.1);
}

.sc-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(17, 40, 75, 0.8) 100%);
}

.sc-content {
    padding: 24px;
    position: relative;
}

.sc-icon {
    position: absolute;
    top: -28px;
    left: 24px;
    width: 56px;
    height: 56px;
    background: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.sc-icon i {
    font-size: 1.4rem;
    color: var(--white);
}

.sc-content h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.sc-content p {
    font-size: 0.9rem;
    margin-bottom: 16px;
    color: var(--text-light);
}

.sc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary-dark);
}

.sc-link:hover {
    color: var(--secondary);
    gap: 12px;
}

/* ===== PARTNERS SECTION ===== */
.partners {
    background: var(--white);
    padding: 100px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-items: center;
}

@media (min-width: 576px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.partner-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.partner-item img {
    max-height: 48px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.partner-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.partner-placeholder {
    flex-direction: column;
    gap: 12px;
    min-height: 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
}

.partner-placeholder i {
    font-size: 1.5rem;
    color: #adb5bd;
}

.partner-placeholder span {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
}

/* ===== STATS SECTION (Rakamlarla Vega) ===== */
.stats-section {
    background: var(--primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-header {
    text-align: center;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .stats-header {
        margin-bottom: 32px;
    }

    .stats-header h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
}

.stats-header h2 {
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.stat-card {
    text-align: center;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

@media (min-width: 768px) {
    .stat-card {
        padding: 32px 24px;
    }
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

@media (min-width: 768px) {
    .stat-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }
}

.stat-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

@media (min-width: 768px) {
    .stat-icon i {
        font-size: 1.5rem;
    }
}

.stat-card h3 {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 4px;
}

@media (min-width: 768px) {
    .stat-card h3 {
        font-size: 2.5rem;
    }
}

.stat-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

@media (min-width: 768px) {
    .stat-card p {
        font-size: 0.95rem;
    }
}

/* ===== ABOUT EXPERIENCE BADGE ===== */
.about-experience-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 120px;
    height: 120px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.about-experience-badge .exp-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.about-experience-badge .exp-text {
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.2;
}

@media (max-width: 991px) {
    .about-experience-badge {
        width: 100px;
        height: 100px;
        bottom: 16px;
        right: 16px;
    }

    .about-experience-badge .exp-number {
        font-size: 2rem;
    }
}

/* ===== NEWS SECTION ===== */
.news {
    background: var(--bg-light);
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.news-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--secondary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
    text-transform: uppercase;
}

.news-content {
    padding: 24px;
}

.news-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.news-meta i {
    color: var(--secondary);
}

.news-content h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-content p {
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary-dark);
}

.news-link:hover {
    color: var(--secondary);
    gap: 12px;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--primary);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
}

.page-header-green {
    background: linear-gradient(135deg, var(--primary), var(--secondary-dark));
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(115, 201, 0, 0.15);
    border: 1px solid rgba(115, 201, 0, 0.3);
    border-radius: 100px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--secondary);
}

/* ===== ABOUT INTRO ===== */
.about-intro {
    padding: 100px 0;
}

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

@media (min-width: 992px) {
    .about-intro-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.about-intro-content h2 {
    margin-bottom: 20px;
}

.about-intro-content p {
    margin-bottom: 16px;
}

.about-intro-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #e8ecf2;
}

.intro-stat h3 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 4px;
}

.intro-stat p {
    font-size: 0.9rem;
}

.about-intro-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

/* ===== VISION MISSION ===== */
.vision-mission {
    background: var(--bg-light);
    padding: 100px 0;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .vm-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.vm-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.vm-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.vm-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.vm-card h3 {
    margin-bottom: 16px;
}

/* ===== TIMELINE ===== */
.timeline-section {
    padding: 100px 0;
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, var(--secondary), var(--primary));
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-dot {
    position: absolute;
    left: -40px;
    top: 0;
    width: 18px;
    height: 18px;
    background: var(--secondary);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.timeline-content {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-sm);
}

.timeline-year {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.timeline-content h4 {
    margin-bottom: 8px;
}

/* ===== CERTIFICATES ===== */
.certificates {
    background: var(--bg-light);
    padding: 100px 0;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (min-width: 768px) {
    .cert-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cert-item {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.cert-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 16px;
}

.cert-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.cert-item p {
    font-size: 0.85rem;
}

/* ===== WHY VEGA PAGE ===== */
.why-intro {
    padding: 80px 0 40px;
}

.reasons-section {
    padding: 40px 0 100px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 576px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .reasons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .reasons-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.reason-card {
    background: var(--white);
    border: 1px solid #e8ecf2;
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.reason-number {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(17, 40, 75, 0.08);
}

.reason-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.reason-icon i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.reason-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.reason-card p {
    font-size: 0.9rem;
}

/* ===== COMPARISON TABLE ===== */
.comparison-section {
    background: var(--bg-light);
    padding: 100px 0;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
    padding: 20px 24px;
    text-align: left;
    border-bottom: 1px solid #e8ecf2;
}

.comparison-table th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.comparison-table th.highlight {
    background: var(--secondary);
}

.comparison-table td.highlight {
    background: rgba(115, 201, 0, 0.08);
}

.text-green {
    color: var(--secondary);
}

.text-red {
    color: #e74c3c;
}

.text-orange {
    color: #f39c12;
}

/* ===== CONTACT PAGE ===== */
.contact-info {
    padding: 100px 0 60px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (min-width: 992px) {
    .contact-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

.contact-card {
    background: var(--white);
    border: 1px solid #e8ecf2;
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

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

.contact-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.contact-link {
    font-weight: 600;
    color: var(--primary);
}

/* ===== BRANCHES ===== */
.branches {
    padding: 60px 0 100px;
}

.branches-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 992px) {
    .branches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.branch-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.branch-image {
    position: relative;
    height: 200px;
}

.branch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.branch-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
}

.branch-badge-new {
    background: var(--secondary);
}

.branch-content {
    padding: 24px;
}

.branch-content h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.branch-content h3 i {
    color: var(--secondary);
}

.branch-details {
    display: grid;
    gap: 16px;
}

.branch-detail {
    display: flex;
    gap: 12px;
}

.branch-detail i {
    width: 20px;
    color: var(--secondary);
    margin-top: 3px;
}

.branch-detail strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 2px;
}

.branch-detail p {
    font-size: 0.9rem;
    margin: 0;
}

.branch-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.branch-map {
    padding: 0 24px 24px;
}

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

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

/* ===== CONTACT FORM ===== */
.contact-form-section {
    background: var(--bg-light);
    padding: 100px 0;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 992px) {
    .contact-form-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 80px;
    }
}

.contact-form-content h2 {
    margin-bottom: 16px;
}

.contact-features {
    margin-top: 32px;
}

.cf-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cf-item i {
    color: var(--secondary);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

/* ===== FORMS ===== */
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (min-width: 576px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e8ecf2;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(115, 201, 0, 0.15);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    width: auto;
    margin-top: 4px;
}

.form-checkbox label {
    font-weight: 400;
    font-size: 0.9rem;
}

.form-checkbox a {
    color: var(--secondary-dark);
    text-decoration: underline;
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.file-upload {
    border: 2px dashed #e8ecf2;
    border-radius: var(--radius-sm);
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.file-upload:hover {
    border-color: var(--secondary);
}

.file-upload i {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.file-upload span {
    display: block;
    color: var(--text-light);
}

.file-upload input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* ===== CAREER PAGE ===== */
.career-intro {
    padding: 100px 0;
}

.career-intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 992px) {
    .career-intro-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.career-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

.benefit-item i {
    font-size: 1.2rem;
    color: var(--secondary);
}

.career-intro-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.job-listings {
    background: var(--bg-light);
    padding: 100px 0;
}

.jobs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .jobs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.job-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px;
    border-bottom: 1px solid #e8ecf2;
}

.job-title h3 {
    margin-bottom: 8px;
}

.job-type {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(115, 201, 0, 0.1);
    color: var(--secondary-dark);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
}

.job-location {
    color: var(--text-light);
    font-size: 0.9rem;
}

.job-location i {
    color: var(--secondary);
    margin-right: 6px;
}

.job-body {
    padding: 24px;
}

.job-body p {
    margin-bottom: 16px;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.job-tags span {
    padding: 4px 10px;
    background: var(--bg-light);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.job-footer {
    padding: 16px 24px;
    background: var(--bg-light);
}

.application-form {
    padding: 100px 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

/* ===== LEGAL PAGE ===== */
.legal-content {
    padding: 80px 0 100px;
}

.legal-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 992px) {
    .legal-wrapper {
        grid-template-columns: 250px 1fr;
    }
}

.legal-toc {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.legal-toc h4 {
    margin-bottom: 16px;
}

.legal-toc ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-toc a {
    color: var(--text-light);
    font-size: 0.9rem;
}

.legal-toc a:hover {
    color: var(--secondary);
}

.legal-body {
    line-height: 1.8;
}

.legal-intro {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e8ecf2;
}

.legal-body h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-body ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-body li {
    margin-bottom: 8px;
}

.legal-info-box {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-sm);
    margin: 20px 0;
}

.legal-info-box p {
    margin-bottom: 8px;
}

.legal-info-box p:last-child {
    margin-bottom: 0;
}

.legal-date {
    margin-top: 40px;
    color: var(--text-light);
}

/* ===== SERVICE PAGES ===== */
.services-intro {
    padding: 80px 0 40px;
}

.services-page-grid {
    padding: 40px 0 100px;
}

.sp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 576px) {
    .sp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .sp-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .sp-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sp-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.sp-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.sp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sp-card:hover .sp-image img {
    transform: scale(1.1);
}

.sp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(17, 40, 75, 0.8) 100%);
}

.sp-content {
    padding: 24px;
    position: relative;
}

.sp-icon {
    position: absolute;
    top: -28px;
    left: 24px;
    width: 56px;
    height: 56px;
    background: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.sp-icon i {
    font-size: 1.4rem;
    color: var(--white);
}

.sp-content h3 {
    margin-top: 20px;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.sp-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.sp-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.services-why {
    background: var(--bg-light);
    padding: 100px 0;
}

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

@media (min-width: 992px) {
    .sw-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.sw-list {
    margin-top: 24px;
    margin-bottom: 32px;
}

.sw-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.sw-list i {
    color: var(--secondary);
}

.sw-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

/* ===== SERVICE DETAIL PAGE ===== */
.service-hero {
    position: relative;
    padding: 180px 0 100px;
    background-size: cover;
    background-position: center;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 40, 75, 0.95) 0%, rgba(17, 40, 75, 0.7) 100%);
}

.service-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.service-hero-content .breadcrumb {
    margin-bottom: 24px;
}

.service-hero-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.service-hero-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-hero h1 {
    color: var(--white);
    margin-bottom: 12px;
}

.service-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.service-detail {
    padding: 80px 0;
}

.sd-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 992px) {
    .sd-grid {
        grid-template-columns: 1fr 320px;
    }
}

.sd-intro h2 {
    margin-bottom: 16px;
}

.sd-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.sd-features {
    margin-top: 48px;
}

.sd-features h3 {
    margin-bottom: 24px;
}

.sd-feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 576px) {
    .sd-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sd-feature {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

.sd-feature i {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-top: 2px;
}

.sd-feature h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.sd-feature p {
    font-size: 0.9rem;
    margin: 0;
}

.sd-process {
    margin-top: 48px;
}

.sd-process h3 {
    margin-bottom: 24px;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step {
    text-align: center;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 16px;
}

.step-content h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 0.85rem;
    margin: 0;
}

.sd-gallery {
    margin-top: 48px;
}

.sd-gallery h3 {
    margin-bottom: 24px;
}

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

.gallery-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

/* Service Detail Sidebar */
.sd-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sd-cta {
    background: var(--primary);
    padding: 32px;
    border-radius: var(--radius);
    text-align: center;
}

.sd-cta h4 {
    color: var(--white);
    margin-bottom: 12px;
}

.sd-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.sd-cta .btn {
    margin-bottom: 12px;
}

.sd-cta .btn:last-child {
    margin-bottom: 0;
}

.sidebar-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-benefits i {
    color: var(--secondary);
}

.sidebar-services {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-services a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.sidebar-services a:hover {
    background: var(--secondary);
    color: var(--white);
}

.sidebar-services i {
    color: var(--secondary);
    transition: var(--transition);
}

.sidebar-services a:hover i {
    color: var(--white);
}

/* ===== PRICING TABLE ===== */
.price-table {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 24px;
}

@media (min-width: 768px) {
    .price-table {
        grid-template-columns: repeat(3, 1fr);
    }
}

.price-card {
    background: var(--white);
    border: 1px solid #e8ecf2;
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.price-card:hover {
    box-shadow: var(--shadow-lg);
}

.price-card.featured {
    border-color: var(--secondary);
    position: relative;
}

.price-card.featured::before {
    content: 'Popüler';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--secondary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
}

.price-card h4 {
    margin-bottom: 16px;
}

.price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 20px;
}

.price-card ul {
    text-align: left;
    margin-bottom: 24px;
}

.price-card li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.price-card li:last-child {
    border-bottom: none;
}

/* ===== E-CAR SPECIFIC ===== */
.brand-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.brand-tag {
    padding: 8px 16px;
    background: var(--bg-light);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
}

.cert-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: rgba(115, 201, 0, 0.1);
    border-radius: var(--radius);
    margin-top: 32px;
}

.cert-banner i {
    font-size: 2rem;
    color: var(--secondary);
}

.cert-banner h4 {
    margin-bottom: 4px;
}

/* ===== EMERGENCY BOX ===== */
.emergency-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px;
    background: var(--primary);
    border-radius: var(--radius);
    margin-top: 32px;
}

.emergency-box i {
    font-size: 2.5rem;
    color: var(--secondary);
}

.emergency-box h3 {
    color: var(--white);
    margin-bottom: 4px;
}

.emergency-box p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.emergency-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
}

/* ===== CTA GREEN ===== */
.cta-green {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}

.cta-green h2 {
    color: var(--white);
}

/* ===== WHEN LIST ===== */
.when-list {
    margin: 20px 0;
}

.when-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e8ecf2;
}

.when-list i {
    color: var(--secondary);
}

.when-note {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: rgba(243, 156, 18, 0.1);
    border-radius: var(--radius-sm);
    margin-top: 20px;
}

.when-note i {
    color: #f39c12;
}

/* ===== HOW LIST ===== */
.how-list {
    margin: 24px 0;
    padding-left: 24px;
}

.how-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e8ecf2;
}

/* ===== BENEFITS ===== */
.sd-benefits {
    margin-top: 32px;
}

.sd-benefits ul {
    margin: 16px 0;
}

.sd-benefits li {
    padding: 12px 0;
    border-bottom: 1px solid #e8ecf2;
}

/* ===== MOBILE TOPBAR (CTA BANNER) ===== */
.mobile-cta-topbar {
    display: none;
    background: linear-gradient(90deg, var(--secondary), var(--secondary-dark));
    padding: 10px 16px;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    animation: pulse-topbar 2s infinite;
}

@keyframes pulse-topbar {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.01);
        box-shadow: 0 0 20px rgba(115, 201, 0, 0.5);
    }
}

.mobile-cta-topbar a {
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-cta-topbar i {
    animation: vibrate 0.5s infinite;
}

@keyframes vibrate {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(-10deg);
    }
}

@media (max-width: 991px) {
    .mobile-cta-topbar {
        display: block;
    }

    .header {
        top: 42px;
    }

    body {
        padding-top: 42px;
    }
}

/* ===== STICKY CONTACT WIDGET ===== */
.sticky-contact-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.sticky-contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(115, 201, 0, 0.4);
    cursor: pointer;
    animation: pulse-contact 2s infinite;
    transition: var(--transition);
}

.sticky-contact-btn i {
    color: var(--white);
    font-size: 1.5rem;
}

.sticky-contact-btn:hover {
    transform: scale(1.1);
}

@keyframes pulse-contact {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(115, 201, 0, 0.4);
    }

    50% {
        box-shadow: 0 8px 48px rgba(115, 201, 0, 0.7);
    }
}

.sticky-contact-options {
    display: none;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
}

.sticky-contact-widget.active .sticky-contact-options {
    display: flex;
}

.sticky-option {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    white-space: nowrap;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.sticky-option i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.sticky-option.whatsapp i {
    background: #25D366;
    color: var(--white);
}

.sticky-option.phone i {
    background: var(--primary);
    color: var(--white);
}

.sticky-option:hover {
    transform: translateX(-8px);
    box-shadow: var(--shadow-lg);
}

/* ===== CALL MODAL ===== */
.call-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 40, 75, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.call-modal-overlay.active {
    display: flex;
}

.call-modal {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    animation: modal-bounce 0.4s ease;
}

@keyframes modal-bounce {
    0% {
        transform: scale(0.8) translateY(20px);
        opacity: 0;
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.call-modal h3 {
    margin-bottom: 8px;
}

.call-modal p {
    margin-bottom: 24px;
}

.call-modal-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.call-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 2px solid #e8ecf2;
    border-radius: var(--radius);
    transition: var(--transition);
    text-align: left;
}

.call-option:hover {
    border-color: var(--secondary);
    background: rgba(115, 201, 0, 0.05);
}

.call-option-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-option-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.call-option-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.call-option-info p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.call-modal-close {
    margin-top: 24px;
    color: var(--text-light);
    font-size: 0.9rem;
    cursor: pointer;
}

.call-modal-close:hover {
    color: var(--primary);
}

/* ===== WHATSAPP MODAL ===== */
.whatsapp-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 40, 75, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.whatsapp-modal-overlay.active {
    display: flex;
}

.whatsapp-modal-close {
    margin-top: 24px;
    color: var(--text-light);
    font-size: 0.9rem;
    cursor: pointer;
}

.whatsapp-modal-close:hover {
    color: var(--primary);
}

.call-option.whatsapp .call-option-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

/* ===== DROPDOWN MENU ICONS ===== */
.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-menu li a i {
    width: 20px;
    color: var(--secondary);
    text-align: center;
}

.mobile-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-dropdown a i {
    width: 20px;
    color: var(--secondary);
    text-align: center;
}

/* ===== ENHANCED CTA SECTIONS ===== */
.floating-cta {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 24px 32px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 48px 0;
    overflow: hidden;
}

.floating-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0.1;
}

.floating-cta-content {
    flex: 1;
}

.floating-cta h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.floating-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.floating-cta .btn {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .floating-cta {
        flex-direction: column;
        text-align: center;
    }
}

/* Hide mobile randevu button in nav-actions */
@media (max-width: 991px) {
    .nav-actions .btn {
        display: none;
    }
}

/* ===== MOBILE RESPONSIVE UPDATES ===== */
@media (max-width: 768px) {

    /* Full Width Buttons */
    .hero-btns,
    .cta-btns {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .hero-btns .btn,
    .cta-btns .btn,
    .service-360-content .btn,
    .sw-content .btn,
    .cta-content .btn {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 0;
    }

    /* Hero Stats Fix */
    .hero-stats {
        margin-top: 32px !important;
        gap: 16px;
        grid-template-columns: repeat(3, 1fr) !important;
        justify-items: center;
    }

    .hero-stat-item h3 {
        font-size: 1.8rem !important;
    }

    .hero-stat-item p {
        font-size: 0.8rem;
    }

    /* Testimonials Fix */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        overflow: hidden;
        /* Prevent overflow */
        padding: 4px;
        /* Space for shadow */
    }

    .testimonial-card {
        width: 100%;
        box-sizing: border-box;
        /* Ensure padding doesn't overflow width */
    }

    /* 360 Video Wrapper Mobile */
    .video-wrapper {
        margin-top: 30px;
    }

    /* Partners Grid Mobile */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Stats Grid Mobile Fix */
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
        padding: 0 16px;
    }
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary);
}

.form-control,
.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e8ecf2;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(115, 201, 0, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Custom Tabs */
.custom-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e8ecf2;
}

.tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--secondary);
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Contact Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
    }
}

.contact-info-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.info-item i {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.info-item p {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

.row-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

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

.col-full {
    grid-column: 1 / -1;
}

.alert {
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-weight: 500;
}

.alert-success {
    background: rgba(115, 201, 0, 0.1);
    color: var(--secondary-dark);
    border: 1px solid rgba(115, 201, 0, 0.2);
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* ===== CAREER PAGE ===== */
.career-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    overflow: hidden;
}

.career-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/img/vegaservis1.png') center/cover no-repeat;
    opacity: 0.15;
    mix-blend-mode: overlay;
}

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

.career-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.career-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.career-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.career-values {
    padding: 80px 0;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(230, 57, 70, 0.1);
    color: var(--secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.positions-section {
    padding: 80px 0;
}

.position-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.position-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid #eef2f6;
    transition: var(--transition);
    flex-wrap: wrap;
    gap: 20px;
}

.position-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-sm);
}

.position-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.position-meta {
    display: flex;
    gap: 16px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.position-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.position-tags {
    display: flex;
    gap: 8px;
}

.position-tag {
    padding: 6px 12px;
    background: var(--bg-light);
    color: var(--text);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

.application-section {
    padding: 80px 0;
    background: var(--primary);
    color: var(--white);
}

.app-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.app-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.app-info p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 30px;
}

.app-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.app-steps li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.step-number {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--secondary);
    flex-shrink: 0;
}

.career-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    color: var(--text);
}

.file-upload-box {
    border: 2px dashed #e0e0e0;
    padding: 30px;
    text-align: center;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.file-upload-box:hover {
    border-color: var(--secondary);
    background: var(--bg-light);
}

@media (max-width: 991px) {
    .career-hero h1 {
        font-size: 2.5rem;
    }

    .app-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .position-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .position-meta {
        flex-direction: column;
        gap: 8px;
    }

    .position-card .btn {
        width: 100%;
        margin-top: 10px;
    }
}

/* ===== HİZMET SAYFALARI ORTAK STİLLERİ ===== */

/* Breadcrumb */
.sv-breadcrumb {
    padding: 16px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.sv-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.sv-breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.sv-breadcrumb a:hover {
    color: var(--secondary);
}

.sv-breadcrumb span {
    color: #ccc;
}

.sv-breadcrumb .current {
    color: var(--primary);
    font-weight: 600;
}

/* Hero */
.sv-hero {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.sv-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sv-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(115, 201, 0, 0.1);
    border-radius: 50px;
    color: #5a9900;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.sv-hero-content h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.sv-lead {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.8;
}

.sv-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

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

.sv-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.sv-stat-label {
    font-size: 0.85rem;
    color: #666;
}

.sv-cta-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.sv-hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* Services Grid */
.sv-services {
    padding: 80px 0;
    background: white;
}

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

.sv-service-card {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.sv-service-card:hover {
    background: white;
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.sv-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.sv-service-icon i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.sv-service-card h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.sv-service-card > p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.sv-list {
    list-style: none;
}

.sv-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.sv-list li i {
    color: var(--secondary);
    font-size: 0.75rem;
}

/* Why Section */
.sv-why {
    padding: 80px 0;
    background: #f8f9fa;
}

.sv-why-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.sv-why-content h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.sv-why-content > p {
    color: #666;
    margin-bottom: 32px;
}

.sv-why-list {
    display: grid;
    gap: 20px;
}

.sv-why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.sv-why-icon {
    width: 48px;
    height: 48px;
    background: rgba(115, 201, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sv-why-icon i {
    font-size: 1.2rem;
    color: #5a9900;
}

.sv-why-text h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 4px;
}

.sv-why-text p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.sv-why-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* Insurance */
.sv-insurance {
    padding: 80px 0;
    background: var(--primary);
}

.sv-insurance .section-header h2,
.sv-insurance .section-header p {
    color: white;
}

.sv-insurance .section-badge.light {
    background: rgba(115, 201, 0, 0.2);
    color: var(--secondary);
}

.sv-ins-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.sv-ins-feature {
    text-align: center;
    padding: 32px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.sv-ins-icon {
    width: 64px;
    height: 64px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.sv-ins-icon i {
    font-size: 1.5rem;
    color: white;
}

.sv-ins-feature h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.sv-ins-feature p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.sv-ins-brands {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 32px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
}

.sv-ins-brands span {
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    color: white;
    font-size: 0.9rem;
}

/* Process */
.sv-process {
    padding: 80px 0;
    background: white;
}

.sv-process-timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.sv-process-step {
    text-align: center;
    padding: 24px 16px;
    background: #f8f9fa;
    border-radius: 12px;
}

.sv-step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 16px;
}

.sv-step-content h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 8px;
}

.sv-step-content p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* FAQ */
.sv-faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.sv-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.sv-faq-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
}

.sv-faq-item h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sv-faq-item h4 i {
    color: var(--secondary);
    font-size: 0.8rem;
}

.sv-faq-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Other Services */
.sv-other {
    padding: 80px 0;
    background: white;
}

.sv-other-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.sv-other-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 20px;
    background: #f8f9fa;
    border-radius: 16px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.sv-other-card:hover {
    border-color: var(--secondary);
    background: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.sv-other-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.sv-other-icon i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.sv-other-card h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 8px;
}

.sv-other-card p {
    color: #666;
    font-size: 0.85rem;
}

/* CTA */
.sv-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #0d1f33 100%);
}

.sv-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.sv-cta-content h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 16px;
}

.sv-cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.sv-cta-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.sv-cta .sv-cta-btns {
    justify-content: center;
}

.btn-whatsapp {
    background: #25D366 !important;
    color: white !important;
    border: none !important;
}

.btn-whatsapp:hover {
    background: #1fb855 !important;
}

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

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

.btn-lg {
    padding: 16px 32px !important;
    font-size: 1rem !important;
}

/* Responsive */
@media (max-width: 1200px) {
    .sv-other-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .sv-process-timeline {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .sv-hero-grid,
    .sv-why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sv-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sv-ins-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sv-other-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sv-hero,
    .sv-services,
    .sv-why,
    .sv-insurance,
    .sv-process,
    .sv-faq,
    .sv-other,
    .sv-cta {
        padding: 50px 0;
    }
    
    .sv-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .sv-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .sv-stat-number {
        font-size: 1.4rem;
    }
    
    .sv-services-grid,
    .sv-faq-grid,
    .sv-ins-features,
    .sv-other-grid {
        grid-template-columns: 1fr;
    }
    
    .sv-process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sv-cta-btns {
        flex-direction: column;
    }
    
    .sv-cta-btns .btn {
        width: 100%;
    }
    
    .sv-cta-content h2 {
        font-size: 1.5rem;
    }

    /* Hero butonları mobilde tam genişlik */
    .sv-hero .sv-cta-btns {
        flex-direction: column;
        gap: 12px;
    }

    .sv-hero .sv-cta-btns .btn {
        width: 100%;
        justify-content: center;
    }

    /* Breadcrumb mobil uyum */
    .sv-breadcrumb {
        padding: 12px 0;
    }

    .sv-breadcrumb .container {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }
}

/* ===== GELIŞTIRILMIŞ BREADCRUMB STİLLERİ ===== */
.sv-breadcrumb {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 16px 0;
}

.sv-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.sv-breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.sv-breadcrumb a:hover {
    color: var(--secondary);
}

.sv-breadcrumb a i {
    font-size: 0.95rem;
}

.sv-breadcrumb span {
    color: #ccc;
}

.sv-breadcrumb .current {
    color: var(--primary);
    font-weight: 600;
}