
/* ================================
   AUTOMASTERS PANAMA — STYLES
   Premium Automotive Studio
================================ */

:root {
    --bg-primary: #080B12;
    --bg-secondary: #0D1120;
    --bg-card: #111827;
    --bg-card-hover: #151E2E;
    --accent: #DE070E;
    --accent-light: #0a1ef9;
    --accent-dim: #c9a84c26;
    --text-primary: #F5F5F0;
    --text-secondary: #9CA3AF;
    --text-muted: #4B5563;
    --border: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(201, 168, 76, 0.3);
    --font-sans: 'Montserrat', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;
    --nav-height: 80px;
    --section-pad: 120px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ---- Typography ---- */
.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-sans);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: white;
    margin-bottom: 24px;
}

.section-title span {
    font-family: var(--font-sans);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: black;
    margin-bottom: 24px;
}

.section-title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    color: var(--accent);
}

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

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ---- Buttons ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--accent);
    color: var(--bg-primary);
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-light);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(76, 80, 201, 0.4); }
.btn-primary span, .btn-primary { position: relative; z-index: 1; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-primary.full-width { width: 100%; justify-content: center; }

/* ================================
   NAVBAR
================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    background-color:white;
    align-items: center;
    transition: var(--transition);
}

.navbar.scrolled {
    background: white(8, 11, 18, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 2px;
}

.logo {
    height: 80px;
    width: auto;
    display: block;
}

.logo-sub {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.4em;
    color: var(--accent);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 48px;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 260px;
  list-style: none;
  padding: 12px 0;
  margin: 0;
  display: none;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  z-index: 999;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: #003D90;
  text-decoration: none;
  font-weight: 500;
}

.dropdown-menu li a:hover {
  background: #DE070E;
  color: white;
}

.dropdown:hover .dropdown-menu {
  display: block;
}
.nav-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #003D90;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
    padding: 10px 24px;
    background: var(--accent);
    color: var(--bg-primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-cta:hover { background: var(--accent-light); transform: translateY(-1px); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text-primary);
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

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

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 57%;
    transform: scale(1.05);
    animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(8, 11, 18, 0.85) 0%,
        rgba(8, 11, 18, 0.5) 50%,
        rgba(8, 11, 18, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 40px;
    text-align: center;
}

.hero-title {
    display: flex;
    flex-direction: column;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    color: white;
}

.hero-title-line { display: block; }
.hero-title-line.italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    color: var(--accent);
}

.hero-sub {
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    margin-bottom: 48px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1s 2s forwards;
}

.hero-scroll span {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--text-muted), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.1); }
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.service-card {
    background: #003D90;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: default;
    opacity: 0;
    transform: translateY(20px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.service-icon {
    width: 40px;
    height: 40px;
    color: var(--accent);
    margin-bottom: 24px;
}

.service-icon svg { width: 100%; height: 100%; }

.service-icon i {
    width: 100%;
    height: 100%;
    font-size: 2rem;

    display: flex;
    align-items: center;
    justify-content: center;
}

.service-name {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
}

.service-num {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    user-select: none;
    transition: color 0.4s;
}

.service-card:hover .service-num { color: rgba(201, 168, 76, 0.08); }

/* ================================
   ABOUT
================================ */
.about {
    padding: var(--section-pad) 0;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 60px;
    padding-right: 60px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-main {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.about-img-main img {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-img-main:hover img { transform: scale(1.04); }

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 240px;
    height: 180px;
    overflow: hidden;
    border: 4px solid var(--bg-primary);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.about-badge {
    position: absolute;
    top: 40px;
    left: -24px;
    background: var(--accent);
    color: var(--bg-primary);
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.3);
}

.badge-num {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.badge-text {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    margin-top: 4px;
    line-height: 1.4;
}

.about-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 20px;
    font-weight: 300;
}

.about-features {
    margin: 36px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.feature-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: contents;
}

/* ================================
   GALLERY
================================ */
.gallery {
    padding: var(--section-pad) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 4px;
    margin-top: 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.gallery-item.tall {
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,11,18,0.85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.gallery-overlay span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
}

.medium-tall {
    aspect-ratio: 8/9;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ================================
   TESTIMONIALS
================================ */
.testimonials {
    padding: 100px 0;
    background: var(--bg-secondary);
    text-align: center;
}

.testimonials .section-container { max-width: 800px; }

.testimonials-track { position: relative; min-height: 200px; }

.testimonial-slide {
    display: none;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 0.6s ease forwards;
}

.testimonial-slide.active { display: flex; }

.testimonial-stars {
    color: var(--accent);
    font-size: 1.2rem;
    letter-spacing: 4px;
    margin-bottom: 28px;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-style: italic;
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 700px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.author-name {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-primary);
}

.author-car {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: 0.1em;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
    transition: var(--transition);
    cursor: pointer;
}

.dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 3px;
}

/* ================================
   CONTACT
================================ */
.contact {
    padding: var(--section-pad) 0 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px;
    margin-bottom: 80px;
    align-items: start;
}

.contact-sub {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

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

.contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-value {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-link svg { width: 18px; height: 18px; }
.social-link:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }

/* Form */
.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 48px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 400;
    outline: none;
    transition: border-color 0.3s;
    width: 100%;
    -webkit-appearance: none;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239CA3AF' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option { background: var(--bg-card); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

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

.form-success {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--border-accent);
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
}

.form-success.show { display: flex; }
.form-success svg { width: 18px; height: 18px; }

/* Map */
.map-container {
    height: 400px;
    overflow: hidden;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) invert(92%) contrast(83%);
    opacity: 0.7;
    transition: opacity 0.4s;
}

.map-container:hover iframe { opacity: 1; }

/* ================================
   FOOTER
================================ */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    padding: 60px 40px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.footer-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 300;
}

.footer-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.3s;
}

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

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* ================================
   WHATSAPP FLOAT
================================ */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float svg { width: 28px; height: 28px; }

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 48px rgba(37, 211, 102, 0.5);
}

.whatsapp-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.7); opacity: 0; }
}

/* ================================
   ANIMATIONS
================================ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-up {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.fade-up:nth-child(1) { animation-delay: 0.3s; }
.fade-up:nth-child(2) { animation-delay: 0.6s; }
.fade-up:nth-child(3) { animation-delay: 0.8s; }
.fade-up:nth-child(4) { animation-delay: 1.0s; }

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
    :root { --section-pad: 80px; }

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

    .about {
        grid-template-columns: 1fr;
        padding-left: 40px;
        padding-right: 40px;
        gap: 60px;
    }

    .about-img-secondary { right: -20px; bottom: -20px; width: 180px; height: 130px; }

    .contact-grid {
        grid-template-columns: 1fr;
        padding: 0 40px;
        gap: 48px;
    }

    .hero-stats { right: 30px; gap: 20px; }
}

@media (max-width: 768px) {
    :root { --section-pad: 60px; }

    .nav-links, .nav-cta { display: none; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(8, 11, 18, 0.98);
        backdrop-filter: blur(20px);
        align-items: center;
        justify-content: center;
        gap: 40px;
        z-index: 999;
    }

    .nav-links.open .nav-link {
        font-size: 1.2rem;
        letter-spacing: 0.15em;
    }

    .nav-toggle { display: flex; }

    .nav-container { padding: 0 24px; }

    .section-container { padding: 0 24px; }

    .hero-content { padding: 0 24px; }
    .hero-stats { display: none; }
    .hero-actions { flex-direction: column; align-items: center; }

    .services-grid { grid-template-columns: 1fr; gap: 0; }
    .service-card { padding: 36px 24px; }

    .about { padding: 60px 24px; gap: 48px; }
    .about-badge { left: -12px; }
    .about-img-secondary { display: none; }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item.large {
        grid-column: span 2;
    }

    .gallery-item.tall {
        grid-row: span 1;
    }

    .contact-grid { padding: 0 24px; }
    .contact-form-wrap { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }

    .map-container { height: 280px; }

    .footer { padding: 48px 24px; }
    .footer-links { gap: 24px; }

    .whatsapp-float { bottom: 24px; right: 24px; width: 54px; height: 54px; }
    .whatsapp-float svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.large { grid-column: span 1; }

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

    .section-title { font-size: 1.8rem; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent); }
::-webkit-scrollbar-thumb:hover { background: var(--accent-light); }

/* Selection */
::selection { background: var(--accent); color: var(--bg-primary); }
