/* ========================================
   GÜNOK YEDEK PARÇA - Ana Stil Dosyası
   Renk Teması: Logo renkleri + antrasit aksan
   ======================================== */

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #1B2A3D;
    --primary-light: #2C3E55;
    --primary-dark: #0F1924;
    --accent: #36393D;
    --accent-hover: #2A2D30;
    --accent-light: #4D5157;
    --white: #FFFFFF;
    --light: #F5F6F8;
    --gray-100: #E8EBF0;
    --gray-200: #D1D5DE;
    --gray-300: #A0A8B8;
    --gray-400: #6B7588;
    --gray-500: #4A5568;
    --text: #1B2A3D;
    --text-light: #6B7588;
    --text-muted: #A0A8B8;
    --shadow-sm: 0 1px 3px rgba(27,42,61,0.08);
    --shadow-md: 0 4px 15px rgba(27,42,61,0.1);
    --shadow-lg: 0 10px 40px rgba(27,42,61,0.15);
    --shadow-xl: 0 20px 60px rgba(27,42,61,0.2);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Montserrat', 'Inter', sans-serif;
    --whatsapp: #25D366;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== SECTION BASE ===== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-header h2 span {
    color: var(--accent);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    font-family: var(--font-primary);
}

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

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(54,57,61,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--gray-200);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

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

.btn-whatsapp:hover {
    background: #1DB954;
    border-color: #1DB954;
    transform: translateY(-2px);
}

/* ========== HEADER ========== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(27,42,61,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
}

#header.scrolled {
    background: rgba(27,42,61,0.98);
    box-shadow: 0 2px 30px rgba(0,0,0,0.2);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

.logo img {
    display: none;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-links a {
    color: rgba(255,255,255,0.8);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary-dark);
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slideshow .slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 42, 61, 0.65);
    z-index: 1;
}

.hero-dots {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.hero-dots .dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.hero-dots .dot:hover {
    background: rgba(255,255,255,0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    text-align: center;
}

.hero-logo {
    width: 450px;
    height: auto;
    margin-bottom: 24px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s ease both;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 span {
    color: rgba(255,255,255,0.7);
    display: block;
    font-size: 0.5em;
    font-weight: 700;
    letter-spacing: 6px;
    margin-top: 5px;
}

.hero-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
    max-width: 550px;
    margin: 0 auto 36px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.6s both;
    justify-content: center;
}

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

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

.hero-stats {
    display: flex;
    gap: 50px;
    animation: fadeInUp 0.8s ease 0.8s both;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
}

.stat-label {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-top: 4px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: rgba(255,255,255,0.5);
    font-size: 1.5rem;
}

.hero-scroll a:hover {
    color: var(--white);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

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

/* ========== BRANDS ========== */
.brands-section {
    background: var(--light);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.brand-card {
    background: var(--white);
    padding: 30px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.brand-logo-img {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 8px;
}

.brand-logo-img img {
    max-height: 75px;
    max-width: 150px;
    object-fit: contain;
    transition: var(--transition);
}

.brand-card:hover .brand-logo-img img {
    transform: scale(1.08);
}

.brand-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.brand-card p {
    color: var(--text-light);
    font-size: 0.85rem;
}

.brands-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.brands-note i {
    color: var(--accent);
    margin-right: 5px;
}

/* ========== VEHICLES ========== */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.vehicle-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.vehicle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transition: var(--transition);
}

.vehicle-card:hover::before {
    background: var(--accent);
}

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

.vehicle-logo-img {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 8px;
}

.vehicle-logo-img img {
    max-height: 75px;
    max-width: 150px;
    object-fit: contain;
    transition: var(--transition);
}

.vehicle-card:hover .vehicle-logo-img img {
    transform: scale(1.08);
}

.vehicle-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.vehicle-models {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
}

.vehicles-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: var(--light);
    border-radius: var(--radius-md);
}

.vehicles-cta p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

/* ========== VIN LOOKUP ========== */
.vin-section {
    background: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.vin-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(54,57,61,0.15), transparent 70%);
    pointer-events: none;
}

.vin-section .section-tag {
    background: rgba(54,57,61,0.3);
    border: 1px solid rgba(54,57,61,0.5);
}

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

.vin-section .section-header p {
    color: rgba(255,255,255,0.7);
}

.vin-lookup-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.vin-form-wrapper {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 36px;
    backdrop-filter: blur(10px);
}

.vin-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.vin-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.vin-input-wrapper i {
    position: absolute;
    left: 16px;
    color: var(--gray-300);
    font-size: 1.1rem;
}

.vin-input-wrapper input {
    width: 100%;
    padding: 16px 80px 16px 48px;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 1.1rem;
    font-family: 'Courier New', monospace;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: var(--transition);
}

.vin-input-wrapper input::placeholder {
    color: rgba(255,255,255,0.3);
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.vin-input-wrapper input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255,255,255,0.12);
}

.vin-counter {
    position: absolute;
    right: 16px;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    font-family: var(--font-primary);
    letter-spacing: 0;
}

.vin-hint {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    margin-top: 8px;
}

/* VIN Categories */
.vin-category-group {
    margin-top: 24px;
}

.vin-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.vin-category-btn {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
    padding: 12px 8px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.vin-category-btn i {
    font-size: 1.2rem;
}

.vin-category-btn:hover,
.vin-category-btn.active {
    background: rgba(54,57,61,0.3);
    border-color: var(--accent);
    color: var(--white);
}

.vin-form .btn-lg {
    width: 100%;
    justify-content: center;
    margin-top: 24px;
}

/* VIN Result */
.vin-result {
    margin-top: 24px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    padding: 24px;
    animation: fadeInUp 0.5s ease;
}

.vin-result-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.vin-result-header i {
    font-size: 1.5rem;
    color: var(--accent-light);
}

.vin-result-header h3 {
    font-size: 1.1rem;
}

.vin-result-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.vin-detail-item {
    padding: 10px 14px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
}

.vin-detail-item .label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vin-detail-item .value {
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 2px;
}

.vin-result-action {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.vin-result-action p {
    margin-bottom: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.vin-contact-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.vin-contact-buttons .btn {
    font-size: 0.85rem;
    padding: 10px 18px;
}

/* VIN Info Panel */
.vin-info {
    position: relative;
}

.vin-info h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.vin-info h3 i {
    color: var(--accent-light);
    margin-right: 8px;
}

.vin-info > p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    line-height: 1.7;
}

.vin-info-where {
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 30px;
}

.vin-info-where h4 {
    font-size: 1rem;
    margin-bottom: 14px;
    color: var(--accent-light);
}

.vin-info-where ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vin-info-where li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.vin-info-where li i {
    color: var(--accent-light);
    width: 20px;
    text-align: center;
}

/* VIN Diagram */
.vin-breakdown {
    display: flex;
    gap: 3px;
}

.vin-part {
    flex: 1;
    text-align: center;
    padding: 16px 8px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.1);
}

.vin-part .chars {
    display: block;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-light);
    margin-bottom: 6px;
}

.vin-part .label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== CAMPAIGNS ========== */
.campaigns-section {
    background: var(--light);
}

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

.campaign-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.campaign-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

.campaign-badge {
    position: absolute;
    top: 16px;
    right: -30px;
    background: var(--accent);
    color: var(--white);
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.campaign-icon {
    width: 70px;
    height: 70px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--accent);
    transition: var(--transition);
}

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

.campaign-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.campaign-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.campaign-discount {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* ========== ABOUT ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-experience {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--accent);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.exp-text {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.3;
}

.about-content .section-tag {
    margin-bottom: 12px;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-lead {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-content > p {
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
}

.about-feature i {
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ========== CONTACT ========== */
.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--light);
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.contact-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-card-icon.whatsapp {
    background: var(--whatsapp);
}

.contact-card-info {
    flex: 1;
}

.contact-card-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2px;
}

.contact-card-info a,
.contact-card-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

/* Contact Form */
.contact-form-wrapper {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--gray-100);
}

.contact-form-wrapper h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.contact-form-wrapper h3 i {
    color: var(--accent);
    margin-right: 8px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(54,57,61,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

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

.footer-logo {
    height: 40px;
    margin-bottom: 16px;
    filter: invert(1);
    mix-blend-mode: screen;
}

.footer-about p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

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

.footer-social a:hover {
    background: var(--accent);
    color: var(--white);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--accent-light);
    width: 18px;
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}

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

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--white);
    color: var(--text);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes pulse {
    0% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 10px rgba(37,211,102,0.1); }
    100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
}

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

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

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .section { padding: 80px 0; }
    .brands-grid { grid-template-columns: repeat(3, 1fr); }
    .vehicles-grid { grid-template-columns: repeat(3, 1fr); }
    .vin-lookup-container { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image img { height: 350px; }
    .contact-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 4px;
        transition: right 0.3s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        padding: 14px 16px;
        font-size: 1rem;
    }

    .hamburger {
        display: flex;
    }

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

    .hero h1 span {
        letter-spacing: 3px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

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

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

    .about-content h2 {
        font-size: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vin-categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .vin-contact-buttons {
        flex-direction: column;
    }

    .vin-breakdown {
        flex-wrap: wrap;
    }

    .vin-part {
        flex: 1 1 45%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .brands-grid,
    .vehicles-grid {
        grid-template-columns: 1fr;
    }

    .vin-form-wrapper {
        padding: 24px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }
}
