/* ============================================
   TRANSFERVAN - ESTILOS PREMIUM (REFRESH)
   ============================================ */

:root {
  --bg-main: #0B0B0B;
  --bg-section: #050505;
  --bg-card: #121212;
  --bg-hover: #1A1A1A;
  --text-main: #FFFFFF;
  --text-secondary: #A1A1AA;
  --text-muted: #6B7280;
  --text-inverse: #000000;
  --gold: #BFA155;
  --gold-hover: #C9B46A;
  --gold-active: #A58A42;
  --btn-primary-bg: #BFA155;
  --btn-primary-text: #000000;
  --btn-primary-hover: #C9B46A;
  --btn-outline-border: #BFA155;
  --btn-outline-text: #BFA155;
  --btn-outline-hover-bg: #BFA155;
  --btn-outline-hover-text: #000000;
  --border-main: #1F1F1F;
  --border-light: #2A2A2A;
  --border-gold: #BFA155;
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.6);
  --shadow-gold: 0 10px 25px rgba(191, 161, 85, 0.22);
  --hover-text: #BFA155;
  --primary: var(--gold);
  --primary-dark: var(--gold-active);
  --dark: var(--bg-main);
  --darker: var(--bg-section);
  --gray-800: var(--bg-card);
  --gray-700: var(--bg-hover);
  --gray-400: var(--text-secondary);
  --text-light: var(--text-main);
  --glass-bg: rgba(18, 18, 18, 0.7);
  --shadow-lg: var(--shadow-soft);
  --border-radius-card: 30px;
  --font-sans: 'Poppins', sans-serif;
  --font-mono: 'Syne Mono', monospace;

  --header-height: 140px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    overflow-x: hidden;
    max-width: 100vw;
    padding-top: var(--header-height);
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-family: var(--font-sans);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: 0.03em;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    text-transform: uppercase;
}

h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.overline {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--gold);
    margin-bottom: 1.2rem;
    font-weight: 500;
}

a, button, .btn-vehicle, .btn-primary,
h1, h2, h3, h4, .card, .vehicle-card,
.main-nav a, .lang-option, .carousel-btn, .close-modal,
input, textarea, select {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ----- HEADER (ALTURA REDUCIDA) ----- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 1000;
    border-bottom: none;
    box-shadow: none;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease,
                border-bottom 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    box-sizing: border-box;
}

header.scrolled {
    background: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-gold);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: calc(var(--header-height) - 44px);
    padding: 0 1.5rem;
    box-sizing: border-box;
}

.logo-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    overflow: hidden;
}

.logo-img {
    max-height: 90px;
    height: auto;
    width: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 4px 10px rgba(0,0,0,0.4));
    transition: max-height 0.3s ease, filter 0.4s ease;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-left: auto;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.main-nav {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0.2rem 0 0.4rem;
    background: transparent;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-nav a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-bottom: 4px;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.main-nav a:hover {
    color: var(--gold);
}

.main-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-main);
    cursor: pointer;
    user-select: none;
}

.lang-option {
    padding: 0.2rem 0.3rem;
    border-radius: 6px;
}

.lang-option.active-lang {
    font-weight: 700;
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
}

.lang-separator {
    opacity: 0.5;
    font-weight: 300;
}

.lang-switcher:hover .lang-option:not(.active-lang) {
    color: var(--gold);
}

/* ----- HERO ----- */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow-x: hidden;
    padding: 4rem 1.5rem 4rem;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.9)),
                url('imagenes/hero/hero-fondo.jpg') center/cover no-repeat;
}

.hero-content {
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 0;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-sizing: border-box;
}

.hero h1 {
    margin-bottom: 1.2rem;
    color: #FFFFFF;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 2.8rem;
    color: #FFFFFF;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
}

.input-icon {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.input-icon svg {
    position: absolute;
    left: 16px;
    color: var(--gold);
    opacity: 0.8;
    pointer-events: none;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.input-icon input,
.form-row input,
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-main);
    border-radius: 0;
    font-size: 1rem;
    color: white;
    outline: none;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
    font-weight: 400;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    word-break: break-word;
    overflow-wrap: break-word;
}

.input-icon input {
    padding-left: 2.8rem;
}

.input-icon input:focus,
.form-row input:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.form-row {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.form-row input {
    flex: 1;
    cursor: pointer;
    min-width: 0;
}

.btn-primary {
    background: transparent;
    border: 2px solid var(--gold);
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--gold);
    cursor: pointer;
    transition: all 0.35s ease;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: var(--font-sans);
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    box-shadow: none;
}

.btn-primary:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
}

.hero-scroll-indicator span {
    display: block;
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 20px;
    position: relative;
}

.hero-scroll-indicator span::after {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 4px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollAnim 1.8s infinite;
}

@keyframes scrollAnim {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 24px; }
}

/* Secciones */
.section {
    padding: 8rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
    overflow-x: hidden;
    box-sizing: border-box;
    scroll-margin-top: var(--header-height);
}

.section:not(.hero) {
    display: none;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

/* Cards servicios */
.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.card {
    background: var(--bg-card);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius-card);
    width: 100%;
    max-width: 340px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    border: 1px solid var(--border-main);
    text-align: center;
    box-sizing: border-box;
}

.card:hover {
    transform: translateY(-12px);
    background: var(--bg-hover);
    border-color: var(--border-gold);
    box-shadow: 0 16px 32px rgba(191, 161, 85, 0.2);
}

.card-icon {
    color: var(--gold);
    margin-bottom: 1.8rem;
}

.card h3 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.card p {
    color: var(--text-secondary);
    font-weight: 400;
}

/* About + carrusel */
.about-section {
    background: var(--bg-section);
    padding: 8rem 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.about-content h2 {
    margin-bottom: 1.8rem;
}

.about-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.features-list {
    list-style: none;
}

.features-list li {
    margin-bottom: 1rem;
    font-size: 1.15rem;
    color: var(--text-main);
}

/* Carrusel */
.carousel-container {
    position: relative;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
    border: 1px solid rgba(212, 175, 55, 0.25);
    aspect-ratio: 1/1;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.7);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.carousel-btn.prev { left: 15px; }
.carousel-btn.next { right: 15px; }

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--gold);
    width: 28px;
    border-radius: 5px;
    box-shadow: 0 0 12px var(--gold);
}

/* Vehículos */
.vehicles-section {
    text-align: center;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.vehicle-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-card);
    border: 1px solid var(--border-main);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    max-width: 100%;
}

.vehicle-card:hover {
    transform: translateY(-8px);
    background: var(--bg-hover);
    box-shadow: 0 16px 32px rgba(191, 161, 85, 0.12), 0 6px 16px rgba(0,0,0,0.6);
    border-color: var(--border-gold);
}

.vehicle-img {
    width: 100%;
    height: 180px;
    margin: 0 auto 1.8rem;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--gold);
}

.vehicle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-card h4 {
    font-size: 1.9rem;
    margin-bottom: 0.7rem;
    color: var(--gold);
    font-weight: 600;
}

.vehicle-specs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.vehicle-ideal {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: 400;
    flex-grow: 1;
}

.btn-vehicle {
    background: transparent;
    border: 2px solid var(--btn-outline-border);
    color: var(--btn-outline-text);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: auto;
    max-width: 100%;
    white-space: normal;
    transition: all 0.35s ease;
}

.btn-vehicle:hover {
    background: var(--btn-outline-hover-bg);
    color: var(--btn-outline-hover-text);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Contacto */
.contact-section {
    background: var(--bg-section);
}

.contact-intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
    font-size: 1.15rem;
    padding: 0 1rem;
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

.contact-form {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 0;
    border: 1px solid var(--border-main);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    max-width: 100%;
    box-sizing: border-box;
}

.form-group {
    margin-bottom: 2rem;
    max-width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--text-main);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.checkbox-group input {
    width: auto;
    margin: 0;
    flex-shrink: 0;
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
    color: var(--text-secondary);
    flex: 1;
    min-width: 0;
    word-break: break-word;
}

.checkbox-group a {
    color: var(--gold);
    text-decoration: underline;
    font-weight: 500;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
    max-width: 100%;
}

.contact-form select {
    max-width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23BFA155' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-card);
    margin: 2rem;
    padding: 3rem;
    border-radius: 24px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-soft);
    position: relative;
    box-sizing: border-box;
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.8rem;
    font-size: 2.2rem;
    color: var(--text-secondary);
    cursor: pointer;
}
.close-modal:hover { color: var(--gold); }

.terms-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    white-space: pre-line;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Footer */
footer {
    background: #000;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(191, 161, 85, 0.25);
    overflow-x: hidden;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    color: var(--text-secondary);
    max-width: 1300px;
    margin: 0 auto;
}

.footer-info {
    display: none;
}

.footer-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.email-link {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0;
}

.email-link svg {
    width: 22px;
    height: 22px;
}

.email-link:hover { color: var(--gold); }

.social-icons {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-left: 0;
}

.social-icons a {
    color: var(--text-secondary);
    transition: color 0.25s ease;
}
.social-icons a:hover {
    color: var(--gold);
}

/* WHATSAPP */
.whatsapp-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    max-width: calc(100vw - 40px);
}

.whatsapp-float {
    background: #25D366;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    border: 2px solid white;
    cursor: pointer;
    flex-shrink: 0;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-chat {
    display: none;
    width: 320px;
    max-width: 80vw;
    background: var(--bg-card);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.7);
    border: 1px solid var(--border-gold);
    margin-bottom: 18px;
    overflow: hidden;
    flex-direction: column;
}

.whatsapp-chat.active {
    display: flex;
}

.chat-header {
    background: #075E54;
    padding: 1.2rem;
    color: white;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-chat {
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    margin: 0;
}

.chat-body {
    padding: 1.2rem;
}

.chat-body textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    color: white;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    resize: vertical;
    outline: none;
    box-sizing: border-box;
    max-width: 100%;
}

.chat-body textarea:focus {
    border-color: var(--gold);
}

.chat-footer {
    padding: 0.8rem 1.2rem 1.2rem;
}

.send-chat-btn {
    width: 100%;
    background: transparent;
    border: 2px solid var(--gold);
    padding: 0.9rem;
    border-radius: 50px;
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.35s ease;
}

.send-chat-btn:hover {
    background: var(--gold);
    color: #000;
}

/* Google Places */
.pac-container {
    background: #111;
    border-radius: 20px;
    margin-top: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.9);
    border: 1px solid rgba(212, 175, 55, 0.2);
    font-family: var(--font-sans);
    max-width: 90vw;
    left: 0 !important;
}
.pac-item {
    padding: 1rem 1.5rem;
    color: white;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
}
.pac-item:hover { background: #1A1A1A; }
.pac-item-query { color: var(--gold); font-weight: 600; }

/* ----- RESPONSIVE (HEADER AJUSTADO) ----- */
@media (max-width: 1100px) {
    :root {
        --header-height: 120px;
    }
    .logo-img {
        max-height: 75px;
    }
    .header-top {
        height: calc(120px - 44px);
    }
    .main-nav ul {
        gap: 1.8rem;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 100px;
    }
    .logo-img {
        max-height: 60px;
    }
    .header-top {
        height: calc(100px - 44px);
        padding: 0 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: transparent;
        padding: 0;
        transform: translateY(-150%);
        transition: transform 0.35s ease, background 0.3s ease;
        z-index: 999;
    }

    .main-nav.active {
        transform: translateY(0);
        background: rgba(11, 11, 11, 0.98);
        backdrop-filter: blur(15px);
        border-bottom: 1px solid var(--border-gold);
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }

    .main-nav a {
        font-size: 1.3rem;
        padding: 0.75rem 1.5rem;
        display: block;
        width: 100%;
        text-align: center;
        border-radius: 8px;
    }

    .main-nav a:hover {
        background: rgba(191, 161, 85, 0.1);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-image {
        order: -1;
    }
    .hero {
        padding: 3rem 1rem 3rem;
    }
    .hero-content {
        padding: 2.5rem 1.5rem;
        max-width: 95vw;
    }
    .hero h1 {
        font-size: clamp(2.5rem, 9vw, 4rem);
    }
    .contact-form {
        padding: 2.5rem 2rem;
    }
    .modal-content {
        margin: 1.5rem;
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 600px) {
    :root {
        --header-height: 80px;
    }
    .logo-img {
        max-height: 50px;
    }
    .header-top {
        height: calc(80px - 44px);
        padding: 0 0.8rem;
    }
    .main-nav {
        top: 80px;
    }
    .main-nav a {
        font-size: 1.2rem;
        padding: 0.7rem 1.2rem;
    }
    .lang-switcher {
        font-size: 1rem;
    }
    .hero {
        padding: 2.5rem 0.8rem 2.5rem;
    }
    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    .hero-content {
        padding: 2rem 1.2rem;
        max-width: 100%;
        border-left: none;
        border-right: none;
        border-radius: 0;
    }
    .hero p {
        font-size: 1rem;
    }
    .form-row {
        flex-direction: row;
        gap: 0.8rem;
    }
    .form-row input {
        width: auto;
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }
    .input-icon svg {
        left: 12px;
        width: 16px;
        height: 16px;
    }
    .input-icon input {
        padding-left: 2.4rem;
    }
    .section {
        padding: 5rem 1rem;
        max-width: 100%;
    }
    .contact-form {
        padding: 2rem 1rem;
    }
    .contact-container {
        padding: 0 1rem;
    }
    .contact-intro {
        font-size: 1rem;
        padding: 0 0.8rem;
    }
    .vehicles-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    .vehicle-card {
        max-width: 100%;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-contact {
        flex-direction: column;
        gap: 1.5rem;
    }
    .whatsapp-wrapper {
        bottom: 20px;
        right: 15px;
        max-width: calc(100vw - 30px);
    }
    .whatsapp-chat {
        width: 260px;
        max-width: 75vw;
    }
    .whatsapp-float {
        width: 55px;
        height: 55px;
    }
    .carousel-btn {
        width: 38px;
        height: 38px;
    }
    .carousel-container {
        border-radius: 20px;
    }
    .modal-content {
        margin: 1rem;
        padding: 2rem 1.5rem;
        width: 95%;
    }
    .close-modal {
        top: 0.8rem;
        right: 1rem;
    }
    .card h3 {
        font-size: 1.6rem;
    }
    .vehicle-card h4 {
        font-size: 1.6rem;
    }
    .checkbox-group {
        gap: 0.6rem;
    }
    .checkbox-group label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-form .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 380px) {
    :root {
        --header-height: 70px;
    }
    .logo-img {
        max-height: 45px;
    }
    .header-top {
        height: calc(70px - 44px);
    }
    .main-nav {
        top: 70px;
    }
    .hero-content {
        padding: 1.5rem 0.8rem;
    }
    .hero h1 {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
    }
    .hero p {
        font-size: 0.9rem;
    }
    .btn-primary {
        padding: 0.85rem 1.8rem;
        font-size: 1rem;
        letter-spacing: 2px;
    }
    .input-icon input,
    .form-row input {
        font-size: 0.9rem;
        padding: 0.8rem 0.8rem;
    }
    .input-icon input {
        padding-left: 2.2rem;
    }
    .input-icon svg {
        left: 10px;
        width: 15px;
        height: 15px;
    }
    .contact-form {
        padding: 1.5rem 1rem;
    }
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 0.9rem;
        padding: 0.9rem;
    }
    .whatsapp-chat {
        width: 220px;
        max-width: 70vw;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
    }
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
    .modal-content {
        margin: 0.5rem;
        padding: 1.8rem 1.2rem;
        border-radius: 18px;
    }
    .lang-switcher {
        font-size: 0.9rem;
    }
    .overline {
        font-size: 0.7rem;
        letter-spacing: 4px;
    }
    .form-row {
        flex-direction: row;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 6rem 1rem 2rem;
    }
    .hero-content {
        padding: 1.5rem 1rem;
    }
    .hero-scroll-indicator {
        display: none;
    }
}