/* ========================================
   BATTERIES PLUS PHONE REPAIR
   Premium Dark Luxury Theme
   Midnight Blue + Mint + Gold
======================================== */

/* --- CSS Custom Properties --- */
:root {
    --midnight-deep: #060d1a;
    --midnight: #0a1628;
    --midnight-light: #111f36;
    --midnight-lighter: #1a2d4a;
    --midnight-border: #1e3a5c;
    
    --mint: #5eead4;
    --mint-light: #7ff5e0;
    --mint-dark: #3dd4c0;
    --mint-muted: rgba(94, 234, 212, 0.12);
    --mint-glow: rgba(94, 234, 212, 0.25);
    
    --gold: #d4a853;
    --gold-light: #e8c078;
    --gold-dark: #b8912e;
    --gold-muted: rgba(212, 168, 83, 0.12);
    --gold-glow: rgba(212, 168, 83, 0.25);
    
    --white: #ffffff;
    --off-white: #f0f4f8;
    --gray-100: #e2e8f0;
    --gray-200: #cbd5e1;
    --gray-300: #94a3b8;
    --gray-400: #64748b;
    --gray-500: #475569;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.6);
    --shadow-glow-mint: 0 0 40px rgba(94, 234, 212, 0.2);
    --shadow-glow-gold: 0 0 40px rgba(212, 168, 83, 0.2);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--midnight-deep);
    color: var(--gray-200);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.nav.scrolled {
    background: rgba(6, 13, 26, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(30, 58, 92, 0.5);
    padding: 12px 0;
    box-shadow: var(--shadow-lg);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    z-index: 1001;
}

.nav-logo-icon {
    color: var(--mint);
}

.nav-logo-text {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

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

.nav-link {
    color: var(--gray-300);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--mint), var(--mint-light));
    transition: var(--transition);
    border-radius: 1px;
}

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

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--mint);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 20px;
    border: 1px solid rgba(94, 234, 212, 0.3);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--mint-muted);
    border-color: var(--mint);
    box-shadow: var(--shadow-glow-mint);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--gray-200);
    border-radius: 2px;
    transition: var(--transition);
}

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

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(6, 13, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-slow);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: var(--gray-300);
    padding: 8px;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    color: var(--white);
    transform: rotate(90deg);
}

.mobile-menu-link {
    color: var(--gray-200);
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 500;
    transition: var(--transition);
}

.mobile-menu-link:hover {
    color: var(--mint);
}

.mobile-cta {
    margin-top: 16px;
    font-size: 1.1rem !important;
    color: var(--mint) !important;
    font-family: var(--font-body) !important;
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 14px 28px !important;
    border: 1px solid rgba(94, 234, 212, 0.3);
    border-radius: var(--radius-sm);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(26, 45, 74, 0.6) 0%, transparent 60%),
                radial-gradient(ellipse 50% 40% at 20% 80%, rgba(94, 234, 212, 0.05) 0%, transparent 50%),
                linear-gradient(180deg, var(--midnight-deep) 0%, var(--midnight) 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(94, 234, 212, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(212, 168, 83, 0.03) 0%, transparent 50%);
    opacity: 0.8;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(6, 13, 26, 0.9) 0%, 
        rgba(10, 22, 40, 0.7) 50%, 
        rgba(6, 13, 26, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--mint);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 8px 16px;
    background: var(--mint-muted);
    border: 1px solid rgba(94, 234, 212, 0.2);
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-greeting {
    display: block;
    font-size: 0.5em;
    font-weight: 400;
    color: var(--mint);
    letter-spacing: 0.04em;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.hero-headline {
    display: block;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-200) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--mint) 0%, var(--mint-dark) 100%);
    color: var(--midnight-deep);
    box-shadow: 0 4px 20px rgba(94, 234, 212, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(94, 234, 212, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--mint);
    color: var(--mint);
    background: var(--mint-muted);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--midnight-border);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-muted);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--midnight-border);
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.hero-image-accent {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(94, 234, 212, 0.15);
    pointer-events: none;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-xl);
    padding: 1px;
    background: linear-gradient(135deg, rgba(94, 234, 212, 0.3), transparent 50%, rgba(212, 168, 83, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

/* Floating elements */
.hero-float {
    position: absolute;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.hero-float-1 {
    top: 15%;
    right: -20px;
    width: 80px;
    height: 80px;
    background: var(--mint-muted);
    border: 1px solid rgba(94, 234, 212, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint);
}

.hero-float-2 {
    bottom: 20%;
    left: -30px;
    width: 70px;
    height: 70px;
    background: var(--gold-muted);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    animation-delay: -3s;
}

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

/* --- Section Styles --- */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    color: var(--mint);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    padding: 6px 14px;
    background: var(--mint-muted);
    border: 1px solid rgba(94, 234, 212, 0.15);
    border-radius: 100px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.text-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-300);
    line-height: 1.7;
}

/* --- Services Section --- */
.services {
    padding: 120px 0;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--midnight-border));
}

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

.service-card {
    background: linear-gradient(135deg, var(--midnight-light) 0%, var(--midnight) 100%);
    border: 1px solid var(--midnight-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--mint), var(--gold));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(94, 234, 212, 0.2);
    box-shadow: var(--shadow-glow-mint);
}

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

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mint-muted);
    border: 1px solid rgba(94, 234, 212, 0.15);
    border-radius: var(--radius-md);
    color: var(--mint);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--mint);
    color: var(--midnight-deep);
    box-shadow: var(--shadow-glow-mint);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-300);
    line-height: 1.7;
}

/* --- Why Us Section --- */
.why-us {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(180deg, var(--midnight) 0%, var(--midnight-deep) 100%);
}

.why-us-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-image {
    position: relative;
}

.why-us-image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.why-us-image-grid img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}

.why-us-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--midnight-light);
    border: 1px solid var(--midnight-border);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow-lg);
}

.why-us-badge svg {
    color: var(--gold);
}

.why-us-content {
    padding: 20px 0;
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.why-us-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mint-muted);
    border: 1px solid rgba(94, 234, 212, 0.2);
    border-radius: 50%;
    color: var(--mint);
    margin-top: 2px;
}

.why-us-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.why-us-feature p {
    font-size: 0.9rem;
    color: var(--gray-300);
    line-height: 1.6;
}

/* --- Accessories Section --- */
.accessories {
    padding: 120px 0;
    position: relative;
}

.accessories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--midnight-border));
}

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

.accessory-card {
    background: linear-gradient(135deg, var(--midnight-light) 0%, var(--midnight) 100%);
    border: 1px solid var(--midnight-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.accessory-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 168, 83, 0.2);
    box-shadow: var(--shadow-glow-gold);
}

.accessory-image {
    overflow: hidden;
    aspect-ratio: 1;
}

.accessory-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.accessory-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    padding: 16px 20px 6px;
}

.accessory-card p {
    font-size: 0.85rem;
    color: var(--gray-300);
    padding: 0 20px 20px;
    line-height: 1.6;
}

/* --- Location Section --- */
.location {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(180deg, var(--midnight-deep) 0%, var(--midnight) 100%);
}

.location-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.location-info {
    padding: 20px 0;
}

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

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

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mint-muted);
    border: 1px solid rgba(94, 234, 212, 0.15);
    border-radius: var(--radius-sm);
    color: var(--mint);
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.contact-value {
    display: block;
    font-size: 0.95rem;
    color: var(--gray-200);
    line-height: 1.5;
}

.contact-value a {
    color: var(--gray-200);
}

.contact-value a:hover {
    color: var(--mint);
}

.cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 450px;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--midnight-border);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

/* --- Footer --- */
.footer {
    padding: 80px 0 0;
    background: var(--midnight-deep);
    border-top: 1px solid var(--midnight-border);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.footer-logo svg {
    color: var(--mint);
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-300);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-400);
    padding: 6px 0;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--mint);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--midnight-border);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.footer-bottom a {
    color: var(--gray-400);
}

.footer-bottom a:hover {
    color: var(--mint);
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-image-wrapper img {
        height: 450px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-us-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .accessories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-float {
        display: none;
    }
    
    .services {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-us {
        padding: 80px 0;
    }
    
    .why-us-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
        display: inline-flex;
    }
    
    .accessories {
        padding: 80px 0;
    }
    
    .accessories-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .location {
        padding: 80px 0;
    }
    
    .cta-group {
        flex-direction: column;
    }
    
    .cta-group .btn {
        justify-content: center;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .footer-links {
        flex-direction: column;
        gap: 32px;
    }
}
