/* ==========================================
   Music Zone - Premium Car Audio & Accessories
   Color Palette:
   - #FDFFFF (Light)
   - #B10F2E (Primary Red)
   - #570000 (Dark Red)
   - #280000 (Darkest Red)
   - #DE7C5A (Coral Accent)
   ========================================== */

/* CSS Variables */
:root {
    --color-light: #FDFFFF;
    --color-primary: #B10F2E;
    --color-dark: #570000;
    --color-darkest: #280000;
    --color-accent: #DE7C5A;
    
    --color-text: #1a1a1a;
    --color-text-light: #666666;
    --color-text-muted: #999999;
    
    --color-bg: #FDFFFF;
    --color-bg-alt: #f8f8f8;
    --color-bg-dark: #280000;
    
    --color-border: rgba(177, 15, 46, 0.1);
    --color-border-light: rgba(0, 0, 0, 0.05);
    
    --shadow-sm: 0 2px 8px rgba(40, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(40, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(40, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(40, 0, 0, 0.15);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

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

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-alt);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-dark);
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-darkest);
}

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-family);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
}

.btn i {
    font-size: 0.9em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    color: var(--color-light);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(177, 15, 46, 0.35);
}

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

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

.btn-full {
    width: 100%;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-darkest) 0%, var(--color-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: var(--color-light);
}

.loader-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: carDrive 1.5s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.loader-text {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: rgba(253, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-light);
    transition: var(--transition-base);
}

.navbar.scrolled .nav-logo {
    color: var(--color-darkest);
}

.nav-logo i {
    font-size: 1.8rem;
    color: var(--color-accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-light);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.navbar.scrolled .nav-link {
    color: var(--color-text);
}

.nav-link:hover,
.nav-link.active {
    background: rgba(177, 15, 46, 0.1);
    color: var(--color-primary);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-light);
    cursor: pointer;
}

.navbar.scrolled .nav-toggle {
    color: var(--color-darkest);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-darkest) 0%, var(--color-dark) 50%, var(--color-primary) 100%);
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(222, 124, 90, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(177, 15, 46, 0.2) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    color: var(--color-light);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--color-accent);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--color-light);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--color-accent) 0%, #ff9a7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(253, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
}

.stat-number::after {
    content: '+';
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--color-light);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Sections */
.section {
    padding: 100px 0;
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(177, 15, 46, 0.1) 0%, rgba(222, 124, 90, 0.1) 100%);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-tag i {
    color: var(--color-accent);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
}

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

/* Bento Grid */
.bento-grid {
    display: grid;
    gap: 20px;
}

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

.bento-card {
    position: relative;
    padding: 32px;
    background: var(--color-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    overflow: hidden;
    transition: var(--transition-base);
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(177, 15, 46, 0.2);
}

.bento-large {
    grid-column: span 1;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.bento-wide {
    grid-column: span 2;
}

.bento-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.bento-icon i {
    font-size: 1.5rem;
    color: var(--color-light);
}

.bento-icon.accent {
    background: linear-gradient(135deg, var(--color-accent) 0%, #ff9a7a 100%);
}

.bento-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.bento-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.bento-card p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.bento-pattern {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(177, 15, 46, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.bento-content-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.bento-icon-small {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent) 0%, #ff9a7a 100%);
    border-radius: var(--radius-md);
}

.bento-icon-small i {
    font-size: 1.2rem;
    color: var(--color-light);
}

/* Products Section */
.products {
    background: var(--color-bg-alt);
}

.product-categories {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--color-light);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-full);
    font-family: var(--font-family);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
    transition: var(--transition-base);
}

.category-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.category-btn.active {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    border-color: var(--color-primary);
    color: var(--color-light);
}

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

.product-card {
    background: var(--color-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border-light);
    transition: var(--transition-base);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-card.hidden {
    display: none;
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f0f0f0;
}

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

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: flex-start;
}

.product-badge {
    padding: 6px 14px;
    background: var(--color-primary);
    color: var(--color-light);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.product-specs {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.product-specs span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.product-specs i {
    color: var(--color-accent);
    font-size: 0.8rem;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--color-border-light);
}

.product-tag {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-primary);
    background: rgba(177, 15, 46, 0.1);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.product-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-darkest);
    color: var(--color-light);
    border-radius: 50%;
    transition: var(--transition-base);
}

.product-link:hover {
    background: var(--color-primary);
    transform: scale(1.1);
}

.products-cta {
    text-align: center;
    margin-top: 48px;
    padding: 24px;
    background: var(--color-light);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--color-border);
}

.products-cta p {
    color: var(--color-text-light);
}

.products-cta i {
    color: var(--color-accent);
    margin-right: 8px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    padding: 32px;
    background: var(--color-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    text-align: center;
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(177, 15, 46, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(177, 15, 46, 0.1) 0%, rgba(222, 124, 90, 0.1) 100%);
    border-radius: var(--radius-lg);
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--color-primary);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--color-text-light);
    border-bottom: 1px solid var(--color-border-light);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features i {
    color: var(--color-accent);
    font-size: 0.85rem;
}

/* Gallery Section */
.gallery {
    background: var(--color-bg-alt);
}

.gallery-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(40, 0, 0, 0.9) 0%, transparent 100%);
    color: var(--color-light);
    transform: translateY(100%);
    transition: var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

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

.gallery-wide {
    grid-column: span 2;
}

/* Brands Section */
.brands {
    overflow: hidden;
}

.brands-slider {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.brands-track {
    display: flex;
    animation: scroll 30s linear infinite;
}

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

.brand-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 48px;
    color: var(--color-text-light);
    transition: var(--transition-base);
}

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

.brand-item i {
    font-size: 2.5rem;
}

.brand-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

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

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--color-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    transition: var(--transition-base);
}

.contact-card:hover {
    border-color: rgba(177, 15, 46, 0.2);
    transform: translateX(8px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    border-radius: var(--radius-md);
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--color-light);
}

.contact-details h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.contact-details p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.contact-form-wrapper {
    display: flex;
}

.contact-form-card {
    width: 100%;
    padding: 32px;
    background: var(--color-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
}

.contact-form-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

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

.contact-form-card > p {
    color: var(--color-text-light);
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-text);
}

.form-group label i {
    color: var(--color-accent);
    margin-right: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-family);
    font-size: 0.95rem;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    background: var(--color-bg);
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(177, 15, 46, 0.1);
}

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

/* Map */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: linear-gradient(135deg, var(--color-darkest) 0%, var(--color-dark) 100%);
    color: var(--color-light);
    text-align: center;
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.map-placeholder h3 {
    font-size: 1.5rem;
    color: var(--color-light);
    margin-bottom: 8px;
}

.map-placeholder p {
    color: rgba(253, 255, 255, 0.7);
    margin-bottom: 24px;
}

/* Footer */
.footer {
    background: var(--color-darkest);
    color: var(--color-light);
    padding: 80px 0 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-light);
    margin-bottom: 16px;
}

.footer-logo i {
    color: var(--color-accent);
}

.footer-brand p {
    color: rgba(253, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-light);
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--color-primary);
    transform: translateY(-4px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    color: var(--color-light);
    margin-bottom: 24px;
    position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--color-accent);
    border-radius: var(--radius-full);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(253, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--color-accent);
    transform: translateX(4px);
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--color-accent);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(253, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact li i {
    color: var(--color-accent);
    margin-top: 4px;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(253, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-note {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-darkest);
    color: var(--color-light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-base);
    z-index: 999;
}

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

.back-to-top:hover {
    background: var(--color-primary);
    transform: translateY(-4px);
}

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

.whatsapp-float i {
    font-size: 2rem;
}

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

/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        flex-direction: column;
        background: var(--color-light);
        padding: 100px 32px 32px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition-base);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 16px;
        color: var(--color-text);
        border-bottom: 1px solid var(--color-border-light);
    }
    
    .nav-toggle {
        display: block;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-large {
        grid-row: span 1;
    }
    
    .bento-wide {
        grid-column: span 1;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .gallery-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-bento {
        grid-template-columns: 1fr;
    }
    
    .gallery-large,
    .gallery-wide {
        grid-column: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .product-categories {
        gap: 8px;
    }
    
    .category-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .bento-card {
        padding: 24px;
    }
    
    .contact-form-card {
        padding: 24px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float i {
        font-size: 1.5rem;
    }
}

/* ==========================================
   Interactive Hero Background
   ========================================== */

/* Animated Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
    transition: transform 0.3s ease-out, opacity 0.3s ease;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation: float1 8s ease-in-out infinite;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
    top: 60%;
    right: 15%;
    animation: float2 10s ease-in-out infinite;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #ff9a7a 0%, transparent 70%);
    bottom: 20%;
    left: 30%;
    animation: float3 12s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 20px) scale(1.05); }
    66% { transform: translate(30px, -40px) scale(0.95); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, 30px) scale(1.1); }
    66% { transform: translate(-30px, -20px) scale(0.9); }
}

/* Mouse-sensitive orb movement */
.hero-bg.mouse-active .orb-1 {
    transition: transform 0.1s ease-out;
}

.hero-bg.mouse-active .orb-2 {
    transition: transform 0.15s ease-out;
}

.hero-bg.mouse-active .orb-3 {
    transition: transform 0.2s ease-out;
}

/* Sound Wave Visualizer */
.sound-waves {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
    opacity: 0.3;
}

.wave {
    width: 4px;
    background: linear-gradient(to top, var(--color-accent), var(--color-primary));
    border-radius: var(--radius-full);
    animation: wave 1.2s ease-in-out infinite;
}

.wave:nth-child(1) { height: 20px; animation-delay: 0s; }
.wave:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.wave:nth-child(3) { height: 50px; animation-delay: 0.2s; }
.wave:nth-child(4) { height: 35px; animation-delay: 0.3s; }
.wave:nth-child(5) { height: 20px; animation-delay: 0.4s; }

@keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.8); }
}

/* Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ==========================================
   Page Header (About & Contact Pages)
   ========================================== */

.page-header {
    position: relative;
    padding: 160px 24px 100px;
    text-align: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-darkest) 0%, var(--color-dark) 50%, var(--color-primary) 100%);
    z-index: -1;
}

.page-header-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(222, 124, 90, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(177, 15, 46, 0.2) 0%, transparent 50%);
}

.page-header-content {
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-light);
}

.page-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.page-tag i {
    color: var(--color-accent);
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 900;
    color: var(--color-light);
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.15rem;
    color: rgba(253, 255, 255, 0.8);
    line-height: 1.7;
}

/* ==========================================
   About Page Styles
   ========================================== */

.about-content {
    background: var(--color-bg);
}

.about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 400px;
    background: linear-gradient(135deg, rgba(177, 15, 46, 0.1) 0%, rgba(222, 124, 90, 0.1) 100%);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--color-border);
}

.about-image-placeholder i {
    font-size: 4rem;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.about-image-placeholder span {
    color: var(--color-text-light);
    font-weight: 500;
}

/* Values Grid */
.values-section {
    margin-bottom: 80px;
}

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

.value-card {
    padding: 32px;
    background: var(--color-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    text-align: center;
    transition: var(--transition-base);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(177, 15, 46, 0.2);
}

.value-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    border-radius: var(--radius-lg);
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 1.8rem;
    color: var(--color-light);
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Timeline */
.journey-section {
    margin-bottom: 80px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -40px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: 50%;
    border: 4px solid var(--color-bg);
    box-shadow: var(--shadow-md);
}

.timeline-marker i {
    font-size: 0.8rem;
    color: var(--color-light);
}

.timeline-content {
    padding: 24px;
    background: var(--color-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    margin-left: 20px;
}

.timeline-year {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    color: var(--color-light);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Team Grid */
.team-section {
    margin-bottom: 80px;
}

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

.team-card {
    padding: 40px 32px;
    background: var(--color-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    text-align: center;
    transition: var(--transition-base);
}

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

.team-avatar {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(177, 15, 46, 0.1) 0%, rgba(222, 124, 90, 0.1) 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.team-avatar i {
    font-size: 2.5rem;
    color: var(--color-primary);
}

.team-card h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.team-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Features Grid */
.why-choose-section {
    margin-bottom: 80px;
}

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

.feature-item {
    padding: 32px;
    background: var(--color-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    transition: var(--transition-base);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(177, 15, 46, 0.2);
}

.feature-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(177, 15, 46, 0.15);
    line-height: 1;
    margin-bottom: 16px;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* About CTA */
.about-cta {
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, var(--color-darkest) 0%, var(--color-dark) 100%);
    border-radius: var(--radius-xl);
    color: var(--color-light);
}

.about-cta h3 {
    font-size: 2rem;
    color: var(--color-light);
    margin-bottom: 16px;
}

.about-cta p {
    color: rgba(253, 255, 255, 0.8);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==========================================
   Contact Page Styles
   ========================================== */

.contact-content {
    background: var(--color-bg);
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.contact-info-section > p {
    color: var(--color-text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-form-section h2 i {
    color: var(--color-accent);
    margin-right: 10px;
}

.contact-form-section > .contact-form-card > p {
    color: var(--color-text-light);
    margin-bottom: 24px;
}

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

.contact-social h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
}

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

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(177, 15, 46, 0.1) 0%, rgba(222, 124, 90, 0.1) 100%);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    font-size: 1.2rem;
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--color-primary);
    color: var(--color-light);
    transform: translateY(-4px);
}

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

.form-group select {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-family);
    font-size: 0.95rem;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    background: var(--color-bg);
    cursor: pointer;
    transition: var(--transition-base);
}

.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(177, 15, 46, 0.1);
}

/* Map Section */
.map-section {
    margin-top: 60px;
}

.map-directions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* FAQ Section */
.faq-section {
    margin-top: 80px;
}

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

.faq-item {
    padding: 24px;
    background: var(--color-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    transition: var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(177, 15, 46, 0.2);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.faq-question i {
    color: var(--color-accent);
    margin-top: 2px;
}

.faq-question h4 {
    font-size: 1rem;
}

.faq-item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 28px;
}

/* Contact CTA */
.contact-cta {
    margin-top: 60px;
    text-align: center;
}

.cta-content {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 60px;
    background: linear-gradient(135deg, rgba(177, 15, 46, 0.1) 0%, rgba(222, 124, 90, 0.1) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
}

.cta-content i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.cta-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.cta-content p {
    color: var(--color-text-light);
    margin-bottom: 20px;
}

/* ==========================================
   Product Placeholder
   ========================================== */

.product-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(177, 15, 46, 0.05) 0%, rgba(222, 124, 90, 0.1) 100%);
}

.product-placeholder i {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 8px;
}

/* Gallery Placeholder */
.gallery-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 250px;
    background: linear-gradient(135deg, rgba(177, 15, 46, 0.1) 0%, rgba(222, 124, 90, 0.15) 100%);
}

.gallery-placeholder i {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.gallery-placeholder span {
    color: var(--color-text-light);
    font-weight: 500;
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* Contact Preview Section */
.contact-preview {
    background: var(--color-bg-alt);
}

.contact-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.contact-preview-card {
    padding: 32px;
    background: var(--color-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    text-align: center;
    transition: var(--transition-base);
}

.contact-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(177, 15, 46, 0.2);
}

.contact-preview-card .contact-icon {
    margin: 0 auto 20px;
}

.contact-preview-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-preview-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================
   Additional Responsive Styles
   ========================================== */

@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .about-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .map-directions {
        flex-direction: column;
    }
    
    .map-directions .btn {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .about-cta {
        padding: 40px 24px;
    }
    
    .cta-content {
        padding: 32px 24px;
        width: 100%;
    }
    
    .sound-waves {
        display: none;
    }
}

