/* ========================================
   PAGE LOADER
   ======================================== */

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ECEFF1 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-logo {
    margin-bottom: 3rem;
    animation: logoFadeIn 0.8s ease;
}

.loader-logo img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    animation: logoFloat 2s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.loader-animation {
    position: relative;
    width: 300px;
    margin: 0 auto 2rem;
    height: 60px;
}

.car-loader {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    animation: carDrive 2s ease-in-out infinite;
}

.car-loader i {
    font-size: 3rem;
    color: var(--color-primary);
    filter: drop-shadow(0 4px 8px rgba(13, 71, 161, 0.2));
}

.road-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        var(--color-secondary) 0px,
        var(--color-secondary) 30px,
        transparent 30px,
        transparent 50px
    );
    animation: roadMove 1s linear infinite;
}

.loader-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-secondary);
    animation: textPulse 1.5s ease-in-out infinite;
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes carDrive {
    0% {
        left: 0;
        transform: translateY(-50%);
    }
    50% {
        left: calc(100% - 50px);
        transform: translateY(-50%);
    }
    100% {
        left: 0;
        transform: translateY(-50%);
    }
}

@keyframes roadMove {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 50px 0;
    }
}

@keyframes textPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ========================================
   GLOBAL STYLES & RESET
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #0D47A1;        
    --color-primary-light: #1976D2;  
    --color-secondary: #263238;      
    --color-dark: #1A1A1A;           
    --color-light: #ECEFF1;          
    --color-white: #ffffff;
    --color-text: #37474F;           
    --color-text-light: #546E7A;     
    
    --gradient-primary: linear-gradient(135deg, #0D47A1 0%, #1565C0 100%);
    --gradient-dark: linear-gradient(135deg, #263238 0%, #37474F 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(38, 50, 56, 0.95) 0%, rgba(13, 71, 161, 0.85) 100%);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Typography */
    --font-primary: 'Cairo', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--color-secondary);
    background-color: var(--color-white);
    line-height: 1.7;
    direction: rtl;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ========================================
   ANIMATED BACKGROUND GEARS
   ======================================== */

.bg-gears {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
    opacity: 0.03;
}

.gear {
    position: absolute;
    color: var(--color-secondary);
    animation: rotate 20s linear infinite;
}

.gear i {
    font-size: 150px;
}

.gear-1 {
    top: 10%;
    right: 5%;
    animation-duration: 25s;
}
.my-5{
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.gear-2 {
    bottom: 20%;
    left: 10%;
    animation-duration: 30s;
    animation-direction: reverse;
}

.gear-3 {
    top: 60%;
    right: 15%;
    animation-duration: 35s;
}



/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(38, 50, 56, 0.12);
    border-bottom: 1px solid rgba(13, 71, 161, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: var(--transition-normal);
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}

.navbar.scrolled .logo img {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 2px 8px rgba(13, 71, 161, 0.2));
}

.logo-text h3 {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 2px;
    transition: all 0.5s ease;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled .logo-text h3 {
    color: var(--color-secondary);
    text-shadow: none;
}

.logo-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.5s ease;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.navbar.scrolled .logo-text p {
    color: var(--color-primary);
}

.nav-menu {
    display: flex;
    gap: var(--spacing-md);
}

.nav-link {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(0px);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.navbar.scrolled .nav-link {
    color: var(--color-primary);
    text-shadow: none;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease;
    border-radius: 2px 2px 0 0;
}

.navbar.scrolled .nav-link::before {
    background: var(--color-primary);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.navbar.scrolled .nav-link:hover {
    background: rgba(13, 71, 161, 0.05);
    color: var(--color-primary);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}



.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--spacing-xs);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-secondary);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* ========================================
   HERO SECTION - PRODUCT FOCUSED
   ======================================== */

/* ========================================
   HERO SECTION - شركة الإخوة
   تصميم قوي، هادئ، محترف مع animations رومانسية
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #1A1A1A;
    overflow: hidden;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg width="1920" height="1080" xmlns="http://www.w3.org/2000/svg"%3E%3Crect width="1920" height="1080" fill="%23263238"/%3E%3C/svg%3E') center/cover no-repeat;
    opacity: 0.4;
    animation: backgroundPulse 20s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.05); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.85) 0%, rgba(38, 50, 56, 0.95) 100%);
    z-index: 1;
}

/* Car Silhouette - Visual Identity */
.hero-car-silhouette {
    position: absolute;
    bottom: 8%;
    right: 3%;
    width: 45%;
    max-width: 550px;
    opacity: 0.1;
    z-index: 1;
    animation: carFloat 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes carFloat {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.1; }
    50% { transform: translateY(-15px) translateX(8px); opacity: 0.15; }
}

.car-outline {
    animation: carGlow 4s ease-in-out infinite;
}

@keyframes carGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1)); }
    50% { filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.2)); }
}

/* Animated Light Beams - رومانسي وجذاب */
.hero-lights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.light-beam {
    position: absolute;
    width: 2px;
    height: 200%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.15) 20%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.15) 80%,
        transparent 100%
    );
    transform-origin: top center;
    opacity: 0;
}

.light-beam-1 {
    left: 20%;
    animation: lightMove 8s ease-in-out infinite;
}

.light-beam-2 {
    left: 50%;
    animation: lightMove 10s ease-in-out 2s infinite;
}

.light-beam-3 {
    left: 75%;
    animation: lightMove 12s ease-in-out 4s infinite;
}

@keyframes lightMove {
    0% {
        opacity: 0;
        transform: translateX(-100px) rotate(-15deg) scaleY(0);
    }
    20% {
        opacity: 0.6;
        transform: translateX(0) rotate(-10deg) scaleY(1);
    }
    80% {
        opacity: 0.6;
        transform: translateX(100px) rotate(-5deg) scaleY(1);
    }
    100% {
        opacity: 0;
        transform: translateX(200px) rotate(0deg) scaleY(0);
    }
}

/* Particles System - خفيف ورومانسي */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    animation: particleFloat 15s ease-in-out var(--delay) infinite;
    opacity: 0;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0);
    }
    10% {
        opacity: 0.8;
        transform: translate(20px, -30px) scale(1);
    }
    90% {
        opacity: 0.8;
        transform: translate(-20px, -150px) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translate(0, -180px) scale(0);
    }
}

/* Car Parts Icons - Visual Identity */
.hero-parts-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.parts-icon {
    position: absolute;
    left: var(--pos-x);
    top: var(--pos-y);
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.06);
    animation: iconPulse 6s ease-in-out var(--delay) infinite;
}

@keyframes iconPulse {
    0%, 100% {
        opacity: 0.06;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.12;
        transform: scale(1.1) rotate(5deg);
    }
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.hero-main {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 8rem 0 4rem;
}

.hero-brand {
    margin-bottom: 4rem;
    animation: fadeInDown 0.8s ease;
}

.brand-mark {
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.brand-mark img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 10px 40px rgba(255, 255, 255, 0.2));
    opacity: 0.95;
    position: relative;
    z-index: 2;
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 10px 40px rgba(255, 255, 255, 0.2));
    }
    50% {
        filter: drop-shadow(0 15px 50px rgba(255, 255, 255, 0.4));
    }
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.6;
    }
}

.brand-info {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: badgeSlideIn 1s ease 0.5s backwards;
}

@keyframes badgeSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.brand-year,
.brand-country {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brand-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-headline {
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.headline-top {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.headline-main {
    display: block;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    letter-spacing: -4px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.headline-sub {
    display: block;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 1px;
    line-height: 1.6;
}

.hero-values {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
}

.value-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.value-text {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.hero-action {
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 3rem;
    background: #ffffff;
    color: var(--color-primary);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(13, 71, 161, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.hero-cta:hover::before {
    width: 300px;
    height: 300px;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    gap: 1.3rem;
}

.hero-cta span,
.hero-cta svg {
    position: relative;
    z-index: 1;
}

.hero-cta svg {
    transition: all 0.3s ease;
}

.hero-cta:hover svg {
    transform: translateX(-3px);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span,
.btn i {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(13, 71, 161, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 71, 161, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-secondary);
    transform: translateY(-3px);
}


/* ========================================
   TRUSTED BRANDS SECTION
   ======================================== */

.brands-section {
    background: #F8F9FA;
    padding: var(--spacing-lg) 0;
    position: relative;
    overflow: hidden;
}

.brands-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(-135deg, rgba(13, 71, 161, 0.04) 0%, transparent 100%);
    transform: skewY(3deg);
    transform-origin: bottom right;
}

.brands-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    margin: var(--spacing-lg) 0;
    position: relative;
    z-index: 1;
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(38, 50, 56, 0.04);
    position: relative;
    overflow: hidden;
}

.brand-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(13, 71, 161, 0.05) 50%, transparent 70%);
    opacity: 0;
    transition: all 0.6s ease;
    transform: rotate(45deg);
}

.brand-item:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.brand-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 50px rgba(13, 71, 161, 0.15);
    border-color: rgba(13, 71, 161, 0.2);
}

.brand-item:hover::before {
    opacity: 1;
}

.brand-logo {
    width: 100px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.brand-logo svg {
    width: 100%;
    height: 100%;
}

.brand-logo i {
    font-size: 3rem;
    color: var(--color-primary);
}

.brand-item:hover .brand-logo {
    transform: scale(1.1);
    color: var(--color-primary);
}

.brand-item span {
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.brand-more {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.04), rgba(13, 71, 161, 0.08));
    border-color: rgba(13, 71, 161, 0.15);
}

.brand-more .brand-logo i {
    color: var(--color-primary);
    animation: pulse 2s ease-in-out infinite;
}

.brand-more span {
    color: var(--color-primary);
    font-weight: 800;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.brands-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--color-secondary), #37474F);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    margin: var(--spacing-lg) auto 0;
    max-width: fit-content;
    box-shadow: 0 8px 30px rgba(38, 50, 56, 0.2);
    position: relative;
    z-index: 1;
}

.brands-badge i {
    font-size: 1.5rem;
    color: #4caf50;
}

.brands-badge span {
    font-weight: 700;
    font-size: 1.05rem;
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: -300px;
    left: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13, 71, 161, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.section::after {
    content: '';
    position: absolute;
    bottom: -300px;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13, 71, 161, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.8;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 71, 161, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 71, 161, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    position: relative;
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
    align-items: start;
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(13, 71, 161, 0.12);
    transition: all 0.4s ease;
}

.about-image:hover {
    transform: rotate(0deg) translateY(-10px);
    box-shadow: 0 30px 80px rgba(13, 71, 161, 0.25);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-decoration {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 2rem;
    box-shadow: var(--shadow-md);
}

.image-badge {
    position: absolute;
    bottom: var(--spacing-md);
    left: var(--spacing-md);
    background: var(--color-white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    box-shadow: var(--shadow-md);
}

.image-badge i {
    color: var(--color-primary);
    font-size: 1.5rem;
}

.image-badge span {
    font-weight: 700;
    color: var(--color-secondary);
}

.about-text h3 {
    font-size: 1.75rem;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
    font-weight: 900;
}

.highlight-text {
    background: linear-gradient(to right, rgba(13, 71, 161, 0.06) 0%, transparent 100%);
    padding: var(--spacing-md);
    border-right: 3px solid var(--color-primary);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
    line-height: 1.8;
    color: var(--color-text);
}

.about-text p {
    margin-bottom: var(--spacing-sm);
    color: #555;
    line-height: 1.9;
}

.about-text strong {
    color: var(--color-secondary);
    font-weight: 700;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: var(--color-white);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.feature-item:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-sm);
}

.feature-item i {
    color: var(--color-primary);
    font-size: 1.25rem;
}

.feature-item span {
    font-weight: 600;
    color: var(--color-secondary);
}

/* Timeline */

.timeline {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.timeline-title {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.75rem;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-lg);
    font-weight: 900;
}

.timeline-title i {
    color: var(--color-primary);
}

.timeline-container {
    position: relative;
    padding-right: var(--spacing-md);
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 20px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-primary), rgba(13, 71, 161, 0.2));
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-lg);
    padding-right: var(--spacing-lg);
}

.timeline-dot {
    position: absolute;
    top: 0;
    right: 11px;
    width: 20px;
    height: 20px;
    background: var(--color-white);
    border: 4px solid var(--color-primary);
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.active .timeline-dot {
    background: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(13, 71, 161, 0.15);
    animation: pulse 2s ease infinite;
}

.timeline-content {
    background: var(--color-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.timeline-content:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-sm);
}

.timeline-year {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.timeline-content h4 {
    font-size: 1.25rem;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-xs);
    font-weight: 700;
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
}

/* Vision & Goals */

.vision-goals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.vision-card,
.goals-card {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.vision-card:hover,
.goals-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-md);
}

.vision-card h3,
.goals-card h3 {
    font-size: 1.75rem;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
    font-weight: 900;
}

.vision-card p {
    color: #555;
    line-height: 1.9;
}

.goals-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.goals-list li {
    display: flex;
    align-items: start;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: var(--color-light);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.goals-list li:hover {
    background: rgba(13, 71, 161, 0.04);
    transform: translateX(-5px);
}

.goals-list i {
    color: var(--color-primary);
    margin-top: 4px;
}

.goals-list span {
    color: var(--color-secondary);
    font-weight: 600;
    line-height: 1.7;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-section {
    background: linear-gradient(to bottom, #ffffff 0%, #F8F9FA 50%, #ffffff 100%);
    position: relative;
}

.services-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(13, 71, 161, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(38, 50, 56, 0.05);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -100%;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(13, 71, 161, 0.08) 0%, rgba(13, 71, 161, 0.02) 100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
    top: 0;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(13, 71, 161, 0.15);
    border-color: rgba(13, 71, 161, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.1) 0%, rgba(13, 71, 161, 0.15) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 20px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    color: var(--color-white);
    transform: scale(1.1);
}

.service-card:hover .icon-bg {
    opacity: 1;
    transform: scale(1);
}

.service-card:hover .service-icon i {
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
    font-weight: 800;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.service-features span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(13, 71, 161, 0.08);
    color: var(--color-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-features i {
    font-size: 0.75rem;
}

.services-cta {
    background: var(--gradient-dark);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.cta-content i {
    font-size: 3rem;
    color: var(--color-primary);
}

.cta-content div h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    font-weight: 800;
}

.cta-content div p {
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   BRANCHES SECTION
   ======================================== */

.branches-section {
    background: linear-gradient(to bottom, #F5F9FC 0%, #ffffff 100%);
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: var(--spacing-xl);
    perspective: 1000px;
}

.branch-card {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(38, 50, 56, 0.06);
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.branch-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--color-primary) 50%, transparent 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.branch-card:hover::after {
    transform: scaleX(1);
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(38, 50, 56, 0.1);
    border-color: rgba(38, 50, 56, 0.12);
}

.branch-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.branch-title-wrapper {
    flex: 1;
}

.branch-title-wrapper h3 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #263238 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    font-weight: 900;
}

.branch-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(236, 239, 241, 0.8), rgba(236, 239, 241, 1));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid rgba(13, 71, 161, 0.1);
    flex-shrink: 0;
}

.branch-card:hover .branch-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(13, 71, 161, 0.15);
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.06), rgba(13, 71, 161, 0.1));
}

.branch-badge {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.08), rgba(13, 71, 161, 0.12));
    color: var(--color-primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(13, 71, 161, 0.15);
}

.branch-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    flex: 1;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1rem;
    background: linear-gradient(135deg, rgba(236, 239, 241, 0.5), rgba(236, 239, 241, 0.8));
    border-radius: 12px;
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(38, 50, 56, 0.04);
}

.info-item i {
    color: var(--color-primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.info-item.info-link {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.06), rgba(13, 71, 161, 0.1));
    cursor: pointer;
    border-color: rgba(13, 71, 161, 0.15);
    color: var(--color-primary);
    font-weight: 700;
}

.info-item.info-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 71, 161, 0.25);
}

.info-item.info-link:hover i {
    color: white;
}

.info-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(45, 45, 45, 0.02);
}

.info-item span {
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    flex: 1;
    min-width: 0;
}

.coverage-map {
    background: var(--gradient-dark);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.coverage-map::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13, 71, 161, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse 3s ease infinite;
}

.map-container {
    position: relative;
    z-index: 1;
}

.map-container i {
    font-size: 5rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.map-container h3 {
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 900;
}

.map-container p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
}

.map-points {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.map-point {
    text-align: center;
}

.pulse {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    margin: 0 auto var(--spacing-sm);
    position: relative;
    animation: pulse 2s ease infinite;
}

.pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes ripple {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.map-point span {
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.125rem;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
    background: linear-gradient(135deg, #F8F9FA 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, rgba(13, 71, 161, 0.03), transparent);
    transform: skewY(-2deg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.info-card {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: 20px;
    border: 2px solid rgba(38, 50, 56, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(13, 71, 161, 0.05), transparent);
    transition: all 0.6s ease;
}

.info-card:hover::after {
    right: 100%;
}

.info-card:hover {
    background: var(--color-white);
    box-shadow: 0 12px 40px rgba(13, 71, 161, 0.12);
    transform: translateX(-12px) scale(1.02);
    border-color: rgba(13, 71, 161, 0.15);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 20px rgba(13, 71, 161, 0.3);
}

.info-card h3 {
    color: var(--color-secondary);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
    font-weight: 800;
}

.info-card p {
    color: #666;
    line-height: 1.7;
}

.contact-social {
    background: var(--gradient-dark);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
}

.contact-social h3 {
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    font-weight: 800;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.25rem;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--color-primary);
    transform: translateY(-5px);
}

.contact-form-container {
    background: var(--color-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group label {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 0.9rem;
}

.form-group label i {
    color: var(--color-primary);
}

.form-group input,
.form-group textarea {
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid transparent;
    background: var(--color-white);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    margin-top: var(--spacing-sm);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--gradient-dark);
    color: var(--color-white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.footer-gears {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-xl);
    opacity: 0.05;
    pointer-events: none;
}

.footer-gears i {
    font-size: 200px;
    animation: rotate 30s linear infinite;
}

.footer-gears i:nth-child(2) {
    animation-direction: reverse;
    animation-duration: 25s;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.footer-section h4 {
    color: var(--color-white);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    font-weight: 800;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.footer-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-logo h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 900;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-links li {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-normal);
}

.footer-links li:hover {
    color: var(--color-primary);
    transform: translateX(-5px);
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.footer-links i {
    color: var(--color-primary);
    font-size: 0.875rem;
}

.footer-stats {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.footer-stats .stat {
    text-align: center;
}

.footer-stats strong {
    display: block;
    font-size: 2rem;
    color: var(--color-primary);
    font-weight: 900;
}

.footer-stats span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-credit {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: rgba(255, 255, 255, 0.7);
}

.footer-credit i {
    color: var(--color-primary);
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */

.back-to-top {
    position: fixed;
    bottom: var(--spacing-md);
    left: var(--spacing-md);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Scroll Animations */

.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 0 2rem;
    }
    
    .hero-content {
        text-align: center;
        padding: 2rem 0;
    }
    
    .hero-badge {
        justify-content: center;
    }
    
    .hero-tagline {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tagline-divider {
        display: none;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .visual-brand {
        padding: 2rem;
    }
    
    .about-main,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .vision-goals {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .brands-slider {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1.5rem;
    }
    
    .brand-item {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-lg: 3rem;
    }
    
    .hero-main {
        padding: 6rem 0 3rem;
        text-align: center;
    }
    
    .hero-content-wrapper {
        padding: 0 1.5rem;
    }
    
    .hero-brand {
        margin-bottom: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .brand-mark {
        display: flex;
        justify-content: center;
    }
    
    .brand-mark img {
        width: 90px;
        height: 90px;
    }
    
    .brand-info {
        gap: 1rem;
        padding: 0.6rem 1.5rem;
        display: inline-flex;
    }
    
    .brand-year,
    .brand-country {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    
    .headline-top {
        margin-bottom: 0.5rem;
        letter-spacing: 2px;
    }
    
    .headline-main {
        margin-bottom: 1rem;
        letter-spacing: -2px;
    }
    
    .headline-sub {
        letter-spacing: 0.5px;
    }
    
    .hero-headline {
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .hero-values {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 3rem;
        align-items: center;
    }
    
    .value-item {
        gap: 1rem;
        justify-content: center;
    }
    
    .hero-action {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .hero-cta {
        width: auto;
        min-width: 250px;
        justify-content: center;
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
    
    .hero-car-silhouette {
        display: none;
    }
    
    .hero-parts-icons {
        opacity: 0.5;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--spacing-md);
        transition: all 0.4s ease;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        border-left: 1px solid rgba(13, 71, 161, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu .nav-link {
        color: var(--color-text);
        padding: 1rem 1.5rem;
        border-radius: 12px;
        transition: all 0.3s ease;
        background: transparent;
    }
    
    .nav-menu .nav-link:hover {
        color: var(--color-primary);
        background: rgba(13, 71, 161, 0.08);
        transform: translateX(-5px);
    }
    
    .nav-menu .nav-link.active {
        color: var(--color-primary);
        background: transparent;
        transform: translateX(-5px);
        font-weight: 700;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .brands-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .branch-info-grid {
        grid-template-columns: 1fr;
    }
    
    .branch-card {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .hero-main {
        padding: 5rem 0 2rem;
    }
    
    .brand-mark img {
        width: 80px;
        height: 80px;
    }
    
    .brand-info {
        gap: 0.8rem;
        padding: 0.5rem 1.2rem;
    }
    
    .brand-year,
    .brand-country {
        font-size: 0.75rem;
    }
    
    .hero-brand {
        margin-bottom: 2.5rem;
    }
    
    .headline-main {
        letter-spacing: -2px;
    }
    
    .hero-headline {
        margin-bottom: 2.5rem;
    }
    
    .hero-values {
        gap: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .value-text {
        font-size: 0.9rem;
    }
    
    .hero-cta {
        padding: 1.1rem 1.8rem;
        font-size: 0.95rem;
    }
    
    .feature-badge {
        padding: 1rem 1.5rem;
        gap: 0.8rem;
    }
    
    .feature-badge i {
        font-size: 1.1rem;
    }
    
    .feature-badge span {
        font-size: 0.85rem;
    }
    
    .timeline {
        padding: var(--spacing-md);
    }
    
    .timeline-container {
        padding-right: 0;
    }
    
    .timeline-container::before {
        right: 10px;
    }
    
    .timeline-item {
        padding-right: 2.5rem;
    }
    
    .timeline-dot {
        right: 1px;
        width: 16px;
        height: 16px;
        border-width: 3px;
    }
    
    .timeline-title {
        font-size: 1.25rem;
        margin-bottom: var(--spacing-md);
    }
    
    .timeline-content {
        padding: var(--spacing-sm);
    }
    
    .timeline-content h4 {
        font-size: 1rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    .map-points {
        flex-direction: column;
    }
    
    .brands-slider {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .brand-item {
        padding: 1.2rem 1rem;
    }
    
    .brand-logo {
        width: 80px;
        height: 50px;
    }
    
    .brands-badge {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .brands-badge span {
        font-size: 0.9rem;
    }
    
    .branch-header {
        flex-direction: row;
        align-items: center;
    }
    
    .branch-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .branch-title-wrapper h3 {
        font-size: 1.2rem;
    }
    
    .info-item {
        font-size: 0.85rem;
        padding: 0.7rem 0.8rem;
    }
}
