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

:root {
    --primary: #dc2626;
    --primary-dark: #b91c1c;
    --secondary: #000000;
    --accent: #dc2626;
    --bg-dark: #0a0a0a;
    --bg-darker: #000000;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --border: rgba(220, 38, 38, 0.3);
    --card-bg: rgba(0, 0, 0, 0.4);
    --gradient-1: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    --gradient-2: linear-gradient(135deg, #dc2626 0%, #000000 100%);
    --gradient-3: linear-gradient(135deg, #000000 0%, #dc2626 100%);
    --gradient-4: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-darker);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ============================================
   SPECIAL OFFER BANNER
   ============================================ */
.offer-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1003;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 0.75rem 0;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
    animation: slideDown 0.5s ease-out;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    overflow: hidden;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.offer-carousel {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.offer-text-carousel {
    display: flex;
    gap: 4rem;
    animation: scroll-offer 20s linear infinite;
    white-space: nowrap;
}

.offer-text-item {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    display: inline-block;
}

@keyframes scroll-offer {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

.offer-btn {
    background: white;
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.875rem;
}

.offer-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 1002;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 30px rgba(220, 38, 38, 0.3);
    border-bottom-color: var(--primary);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--card-bg);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.logo:hover .logo-circle {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.5);
    transform: scale(1.05);
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    white-space: nowrap;
    transition: color 0.3s ease;
}

.logo:hover .logo-text {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

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

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

.header-whatsapp {
    display: flex;
    align-items: center;
}

.whatsapp-btn-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn-header svg {
    width: 18px;
    height: 18px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

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

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    animation: heroZoom 20s ease-in-out infinite;
    z-index: 1;
}

.hero-slide:not(.active) {
    z-index: 0;
}

@keyframes heroZoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(220, 38, 38, 0.1) 150%, rgba(0, 0, 0, 0.98) 100%);
    z-index: 2;
}

.hero-image-grid {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1rem;
    padding: 2rem;
    opacity: 0.4;
    pointer-events: none;
}

.hero-img-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(220, 38, 38, 0.3);
    animation: hero-img-float 8s ease-in-out infinite;
}

.hero-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-img-item:hover img {
    transform: scale(1.1);
}

.hero-img-large {
    grid-column: span 2;
    grid-row: span 2;
}

.hero-img-wide {
    grid-column: span 2;
}

.hero-img-item:nth-child(1) { animation-delay: 0s; }
.hero-img-item:nth-child(2) { animation-delay: 1s; }
.hero-img-item:nth-child(3) { animation-delay: 2s; }
.hero-img-item:nth-child(4) { animation-delay: 1.5s; }

@keyframes hero-img-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
}

.floating-images {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.floating-img {
    position: absolute;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid rgba(220, 38, 38, 0.3);
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.2);
    opacity: 0.6;
}

.floating-img-1 {
    top: 10%;
    right: 10%;
    animation: float-1 15s ease-in-out infinite;
}

.floating-img-2 {
    bottom: 20%;
    left: 5%;
    animation: float-2 18s ease-in-out infinite;
}

.floating-img-3 {
    top: 50%;
    right: 5%;
    animation: float-3 20s ease-in-out infinite;
}

.floating-img-4 {
    bottom: 10%;
    right: 20%;
    animation: float-4 16s ease-in-out infinite;
}

@keyframes float-1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

@keyframes float-2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-40px, -40px) rotate(-10deg); }
}

@keyframes float-3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, 30px) rotate(8deg); }
    75% { transform: translate(-30px, -20px) rotate(-8deg); }
}

@keyframes float-4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(25px, -25px) rotate(12deg); }
}

.spotlight {
    position: absolute;
    top: -40%;
    left: 0;
    width: 100%;
    height: 169%;
    background: radial-gradient(ellipse at center, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
    animation: spotlight-move 20s ease-in-out infinite;
    z-index: 5;
}

@keyframes spotlight-move {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(20px) translateY(20px); }
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(220, 38, 38, 0.1) 0%, transparent 50%);
    z-index: 4;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 70px 20px 0;
}

.hero-main {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(220, 38, 38, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-title-main {
    white-space: nowrap;
    display: inline-block;
}

.hero-title-accent {
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, #ff4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.6em;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 650px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}


.btn {
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: lowercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #ff3333);
    color: #000;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-primary i {
    font-size: 1.25rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.6);
    background: linear-gradient(135deg, #ff3333, var(--primary));
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}


/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    text-transform: lowercase;
    font-weight: 500;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: capitalize;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin: 0 auto;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: linear-gradient(180deg, var(--bg-darker) 0%, rgba(10, 10, 10, 0.5) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.service-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    transition: all 0.6s ease;
    z-index: 0;
}

.service-card:hover .service-image {
    opacity: 0.6;
    transform: scale(1.1);
}

.service-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.service-icon svg {
    width: 30px;
    height: 30px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-features span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: linear-gradient(180deg, var(--bg-darker) 0%, rgba(10, 10, 10, 0.5) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    animation: fadeInUp 0.8s ease-out;
}

.about-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: var(--primary);
    transition: height 0.4s ease;
    z-index: 0;
}

.stat-item:hover::before {
    height: 100%;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.stat-item:hover .stat-number {
    -webkit-text-fill-color: #000;
    background: none;
}

.stat-item:hover .stat-label {
    color: #000;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
    border: 2px solid var(--border);
    height: 500px;
}

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

.about-image:hover img {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-stats-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-overlay-item {
    padding: 1rem;
    background: rgba(220, 38, 38, 0.2);
    border-left: 3px solid var(--primary);
    border-radius: 8px;
}

.stat-overlay-item h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose {
    background: var(--bg-darker);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

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

.why-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    color: var(--primary);
}

.why-icon i {
    color: inherit;
}

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

.why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.why-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   FAQs SECTION
   ============================================ */
.faqs {
    background: linear-gradient(180deg, var(--bg-darker) 0%, rgba(10, 10, 10, 0.5) 100%);
}

.faqs-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(220, 38, 38, 0.05);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.1);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   SPONSOR BADGE
   ============================================ */
.sponsor-badge {
    text-align: center;
    margin-top: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(0, 0, 0, 0.3));
    border: 2px solid var(--primary);
    border-radius: 50px;
    display: inline-block;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(220, 38, 38, 0.6);
    }
}

.sponsor-badge span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sponsor-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.brand-card-featured {
    border: 3px solid var(--primary);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.4);
}

.brand-card-featured .brand-logo {
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.8);
}

/* ============================================
   BRANDS SECTION
   ============================================ */
.brands {
    background: var(--bg-darker);
}

.brands-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.dunlop-image {
    width: 1150px;
    max-width: 100%;
    height: auto;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.dunlop-image .brand-overlay-bg,
.dunlop-image .sponsor-tag,
.dunlop-image .brand-logo,
.dunlop-image .brand-overlay {
    display: none !important;
}

.brand-card {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInScale 0.6s ease-out forwards;
}

.brand-overlay-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(36, 37, 39, 0.8) 100%);
    transition: all 0.4s ease;
    z-index: 1;
}

.brand-card:hover .brand-overlay-bg {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.brand-card:nth-child(1) { animation-delay: 0.1s; }
.brand-card:nth-child(2) { animation-delay: 0.2s; }
.brand-card:nth-child(3) { animation-delay: 0.3s; }
.brand-card:nth-child(4) { animation-delay: 0.4s; }
.brand-card:nth-child(5) { animation-delay: 0.5s; }
.brand-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.brand-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(0, 0, 0, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.brand-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.3);
}

.brand-card:hover::before {
    opacity: 1;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    text-shadow: 0 2px 10px rgba(220, 38, 38, 0.5);
}

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

.brand-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.brand-card:hover .brand-overlay {
    transform: translateY(0);
}

.brand-overlay p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.5) 0%, var(--bg-darker) 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.testimonials .container {
    max-width: 100%;
    padding: 0;
}

.testimonials-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    max-height: 740px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
    padding: 0 2rem;
    width: 100%;
}

.testimonials-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 300px;
    animation: scroll-up 15s linear infinite;
}

.testimonials-column:nth-child(2) {
    animation-duration: 19s;
    display: none;
}

.testimonials-column:nth-child(3) {
    animation-duration: 17s;
    display: none;
}

@media (min-width: 768px) {
    .testimonials-column:nth-child(2) {
        display: flex;
    }
}

@media (min-width: 1024px) {
    .testimonials-column:nth-child(3) {
        display: flex;
    }
}

@keyframes scroll-up {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-50%);
    }
}

.testimonial-card {
    background: white;
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 320px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.25);
    border-color: rgba(220, 38, 38, 0.4);
}

.testimonial-text {
    color: #333;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(220, 38, 38, 0.3);
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: #000;
}

.testimonial-role {
    font-size: 0.75rem;
    color: #666;
    opacity: 0.8;
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location {
    background: var(--bg-darker);
    padding-bottom: 60px;
}

.location-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--card-bg);
    height: 500px;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.map-wrapper:hover {
    transform: scale(1.02);
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.locations-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.locations-list p {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.locations-list p:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.locations-list strong {
    color: var(--primary);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.location-phone {
    margin-top: 0.5rem;
    color: var(--primary);
    font-weight: 600;
}

.info-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.75rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.15);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.info-icon i {
    color: inherit;
}

.location-phone i {
    margin-right: 0.5rem;
    color: var(--primary);
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: linear-gradient(180deg, var(--bg-darker) 0%, rgba(10, 10, 10, 0.5) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    max-width: 100%;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.contact-icon i {
    color: inherit;
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-card p {
    color: var(--text-secondary);
}

.contact-whatsapp {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(37, 211, 102, 0.1);
    border: 2px solid rgba(37, 211, 102, 0.3);
    border-radius: 12px;
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: #25D366;
    transform: translateX(5px);
}

.whatsapp-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.social-link:hover {
    color: var(--primary);
    background: rgba(220, 38, 38, 0.1);
    transform: translateX(5px);
}

.social-link i {
    font-size: 1.25rem;
    width: 20px;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.footer-social a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

.footer-social a:hover {
    color: var(--primary);
}

/* ============================================
   GALLERY SECTION - STUNNING REDESIGN
   ============================================ */
.gallery {
    position: relative;
    background: linear-gradient(180deg, var(--bg-darker) 0%, rgba(10, 10, 10, 0.95) 100%);
    overflow: hidden;
    padding: 100px 0;
}

.gallery-showcase {
    margin-top: 4rem;
}

.gallery-main {
    margin-bottom: 4rem;
}

.gallery-featured {
    position: relative;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    border: 3px solid rgba(220, 38, 38, 0.3);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.2);
    cursor: pointer;
    transition: all 0.4s ease;
}

.gallery-featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(220, 38, 38, 0.4);
    border-color: var(--primary);
}

.gallery-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-featured:hover img {
    transform: scale(1.1);
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
    z-index: 2;
}

.featured-overlay h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.featured-overlay p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.gallery-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(220, 38, 38, 0.2);
    background: var(--card-bg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    animation: galleryCardFadeIn 0.6s ease-out forwards;
}

.gallery-card:nth-child(1) { animation-delay: 0.1s; }
.gallery-card:nth-child(2) { animation-delay: 0.15s; }
.gallery-card:nth-child(3) { animation-delay: 0.2s; }
.gallery-card:nth-child(4) { animation-delay: 0.25s; }
.gallery-card:nth-child(5) { animation-delay: 0.3s; }
.gallery-card:nth-child(6) { animation-delay: 0.35s; }
.gallery-card:nth-child(7) { animation-delay: 0.4s; }
.gallery-card:nth-child(8) { animation-delay: 0.45s; }
.gallery-card:nth-child(9) { animation-delay: 0.5s; }
.gallery-card:nth-child(10) { animation-delay: 0.55s; }
.gallery-card:nth-child(11) { animation-delay: 0.6s; }
.gallery-card:nth-child(12) { animation-delay: 0.65s; }
.gallery-card:nth-child(13) { animation-delay: 0.7s; }
.gallery-card:nth-child(14) { animation-delay: 0.75s; }
.gallery-card:nth-child(15) { animation-delay: 0.8s; }
.gallery-card:nth-child(16) { animation-delay: 0.85s; }
.gallery-card:nth-child(17) { animation-delay: 0.9s; }
.gallery-card:nth-child(18) { animation-delay: 0.95s; }
.gallery-card:nth-child(19) { animation-delay: 1s; }

@keyframes galleryCardFadeIn {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.3);
}

.gallery-card:hover img {
    transform: scale(1.15);
}

.gallery-card-content {
    display: none;
}

.gallery-tag {
    display: none;
}

.gallery-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), transparent, var(--primary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
    pointer-events: none;
}

.gallery-card:hover::before {
    opacity: 1;
}

/* ============================================
   GALLERY LIGHTBOX
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    z-index: 10001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
    background: rgba(220, 38, 38, 0.8);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
    z-index: 10001;
    user-select: none;
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(220, 38, 38, 0.8);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
    
    .lightbox-content {
        max-width: 95%;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-social-icons a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-social-icons a i {
    font-size: 1rem;
}

.footer-social-icons a:hover {
    color: var(--primary);
}

.footer-hours {
    margin-top: 1.5rem;
}

.footer-hours h5 {
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: lowercase;
}

.footer-hours ul {
    list-style: none;
    padding: 0;
}

.footer-hours ul li {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.footer-whatsapp {
    margin-top: 1.5rem;
}

.footer-whatsapp h5 {
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.footer-whatsapp-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-whatsapp-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #25D366;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.footer-whatsapp-link:hover {
    background: rgba(37, 211, 102, 0.1);
    transform: translateX(5px);
}

.footer-whatsapp-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .offer-banner {
        padding: 0.5rem 1rem;
        flex-direction: column;
        gap: 0.75rem;
    }

    .offer-carousel {
        width: 100%;
    }

    .offer-text-item {
        font-size: 0.75rem;
    }

    .offer-btn {
        padding: 0.4rem 1.25rem;
        font-size: 0.75rem;
        width: 100%;
        text-align: center;
    }

    .header {
        top: 0;
        z-index: 1002;
    }

    .offer-banner {
        z-index: 1001;
    }

    .hero {
        padding-top: 80px;
    }

    .nav-links {
        position: fixed;
        top: 50px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-top: 1px solid var(--border);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding-top: 100px;
        min-height: 90vh;
    }

    .hero-content {
        padding: 70px 20px 0;
    }

    .hero-main {
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 2rem;
    }

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

    .header-whatsapp {
        display: none;
    }

    .location-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .brands-showcase {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .dunlop-image {
        width: 100%;
        max-width: 1150px;
    }

    .testimonials-container {
        justify-content: flex-start;
        padding: 0 1rem;
    }

    .testimonials-column {
        min-width: 280px;
    }

    .testimonials .container {
        padding: 0 20px;
    }

    .gallery-featured {
        height: 300px;
    }

    .featured-overlay {
        padding: 2rem;
    }

    .featured-overlay h3 {
        font-size: 1.75rem;
    }

    .featured-overlay p {
        font-size: 1rem;
    }

    .gallery-grid-new {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .floating-img {
        width: 120px;
        height: 120px;
    }

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

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

    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

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

    .hero {
        min-height: 90vh;
    }

    .gallery-featured {
        height: 250px;
    }

    .gallery-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

