/* CSS Variables & Reset */
:root {
    --header-height: 4.5rem;
    
    /* Colors */
    --first-color: #fdd835; /* Vibrant Yellow */
    --first-color-alt: #fbc02d;
    --first-color-text: #000000; /* Text on yellow */
    --title-color: #000000;
    --text-color: #333333;
    --text-color-light: #777777;
    --body-color: #ffffff;
    --container-color: #ffffff;
    --border-color: #eeeeee;
    --black-color: #000000;
    
    /* Typography */
    --body-font: 'Inter', sans-serif;
    --biggest-font-size: clamp(2.5rem, 8vw, 4.5rem);
    --h1-font-size: clamp(1.75rem, 5vw, 2.5rem);
    --h2-font-size: clamp(1.5rem, 4vw, 2rem);
    --h3-font-size: clamp(1.25rem, 3vw, 1.5rem);
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;

    /* Font weight */
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;

    /* Margins */
    --mb-0-5: .5rem;
    --mb-0-75: .75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;

    /* z index */
    --z-tooltip: 10;
    --z-fixed: 100;
}

@media screen and (min-width: 968px) {
    :root {
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
        --smaller-font-size: .813rem;
    }
}

/* Base */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: var(--header-height) 0 0 0;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.no-scroll {
    overflow: hidden !important;
}

h1, h2, h3 {
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

button, input {
    border: none;
    outline: none;
}

/* Layout */
.container {
    max-width: 1140px;
    margin-left: auto; 
    margin-right: auto; 
    padding-left: var(--mb-1-5); 
    padding-right: var(--mb-1-5);
}

.grid {
    display: grid;
    gap: 1.5rem;
}

@media screen and (max-width:768px) {
    .grid{
        display: flex;
        flex-direction: column;
    }
}

.section {
    padding: clamp(4rem, 10vw, 8rem) 0 clamp(2rem, 5vw, 4rem);
    min-height: auto;
}

.dark-bg {
    background-color: #000 !important;
    color: #fff !important;
}

.dark-bg .section-title,
.dark-bg h2,
.dark-bg h3 {
    color: #fff !important;
}

.dark-bg .section-subtitle {
    color: var(--first-color) !important;
}

.dark-bg p {
    color: #aaa !important;
}

.section-mini {
    padding: 2rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--mb-2-5);
}

.section-title {
    font-size: var(--h1-font-size);
    margin-bottom: var(--mb-0-5);
}

.section-subtitle {
    display: block;
    font-size: var(--small-font-size);
    color: var(--first-color);
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--first-color);
    color: var(--first-color-text);
    padding: 0.85rem 2rem;
    border-radius: 100px; /* Modern Pill Design */
    font-weight: var(--font-bold);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(253, 216, 53, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: var(--small-font-size);
}

@media screen and (max-width:768px) {
    .btn{
        font-size: 0.600rem;
        padding: 10px 16px;
    }
}

.btn:hover {
    background-color: var(--black-color);
    color: var(--first-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-black {
    background-color: var(--black-color);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-black:hover {
    background-color: var(--first-color);
    color: var(--black-color);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--black-color);
    color: var(--black-color);
    box-shadow: none;
}

.btn-outline-white {
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    background: transparent;
    backdrop-filter: blur(5px);
}

.btn-small {
    padding: 0.6rem 1.25rem;
    font-size: var(--smaller-font-size);
}

/* Header & Nav */
.header {
    width: 100%;
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: var(--z-fixed);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, width, top, background-color;
}

/* Force Nav Color for Heroes on Multi-Pages */
.nav-light .nav-link,
.nav-light .logo,
.nav-light .logo-text,
.nav-light  {
    color: #fff;
}
@media screen and (max-width:768px) {
   .nav .logo,.nav .logo-text{
        color: #000;
    }
}
.scroll-header .nav-link,
.scroll-header .logo,
.scroll-header .logo-text,
.scroll-header .nav-toggle {
    color: #fff !important;
}

/* Floating Ultra-Glass Header on Scroll */
.scroll-header {
    background: rgba(15, 15, 15, 0.85); 
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    
    width: clamp(280px, 95%, 1140px); /* Better fluid fit for all mobiles */
    top: 1rem; 
    border-radius: 100px; 
    padding: 0 clamp(1rem, 3vw, 2.5rem);
}

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-header .nav {
    height: calc(var(--header-height) - 1rem);
}

/* Logo Styles */
.logo {
    font-weight: var(--font-bold);
    color: var(--title-color); /* Default: Black */
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-text {
    color: var(--title-color); /* Default: Black */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-header .logo {
    color: #ffffff;
}

.scroll-header .logo-text {
    color: var(--first-color);
}

.nav-toggle {
    display: flex;
    cursor: pointer;
    color: var(--title-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-header .nav-toggle {
    color: #ffffff;
}

.nav-cta {
    display: none;
}

@media screen and (max-width: 767px) {
    .nav-menu {
        position: fixed;
        background-color: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(40px) saturate(150%);
        -webkit-backdrop-filter: blur(40px) saturate(150%);
        top: 0;
        right: -100%; /* Slide from right for modern feel */
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0;
        transition: right 0.6s cubic-bezier(0.85, 0, 0.15, 1);
        z-index: 1000;
        overflow: hidden;
    }

    /* Brutalist background text for menu */
    .nav-menu::before {
        content: "VAZ";
        position: absolute;
        bottom: 0px;
        left: 0;
        font-size: 35vw;
        font-weight: 900;
        color: rgba(255, 255, 255, 0.03);
        line-height: 0.8;
        z-index: -1;
        pointer-events: none;
    }
    
    .nav-link {
        font-size: 2.5rem;
        font-weight: 800;
        text-transform: uppercase;
        color: #ffffff !important;
        letter-spacing: -1px;
    }

    .nav-item {
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.5s ease;
    }

    .show-menu .nav-item {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1.5rem;
}

.nav-link {
    color: var(--title-color); /* Default: Black */
    font-weight: var(--font-medium);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--first-color);
}

.scroll-header .nav-link {
    color: #ffffff;
}

.scroll-header .nav-link:hover {
    color: var(--first-color);
}

.active-link {
    color: var(--first-color) !important;
}

.nav-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    cursor: pointer;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.nav-close:hover {
    transform: rotate(90deg);
}

.show-menu {
    right: 0 !important;
}

/* Old scroll-header removed */

/* Hero */
.hero-container {
    row-gap: 2rem;
}

.hero-data {
    text-align: center;
}

.hero-title {
    font-size: var(--biggest-font-size);
    margin-bottom: var(--mb-1);
    line-height: 1.1;
    letter-spacing: -2px;
    color: inherit; /* Allow section to override */
}

/* @media screen and (max-width:7698px) {
    .hero-title{
        font-size: 2rem;
    }
} */

.products-hero .hero-title,
.services-hero .hero-title,
.reviews-hero .hero-title,
.contact-hero .hero-title {
    color: #fff;
}
.contact-block2{
    color: #000000;
}

.contact-block2 .block-title{
    color: #000;
}
.contact-block2 .contact-links a{
    color: #000;
}
.products-hero .hero-description,
.services-hero .hero-description,
.reviews-hero .hero-description,
.contact-hero .hero-description {
    color: #aaa;
}

.hero-description {
    margin-bottom: var(--mb-2);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.hero-img {
    width: 100%;
    max-width: 450px;
    border-radius: 1rem;
    justify-self: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Services */
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-card {
    background-color: var(--container-color);
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,.05);
    transition: .3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-.5rem);
    box-shadow: 0 8px 16px rgba(0,0,0,.1);
}

.service-icon {
    color: var(--first-color);
    margin-bottom: var(--mb-1);
}

/* Categories */
.categories-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0 1.5rem;
    width: 100%;
    max-width: 100%; /* Ensure full width capability */
}

@media screen and (min-width: 1400px) {
    .categories-container {
        grid-template-columns: repeat(5, 1fr);
        padding: 0 2rem;
    }
}

.category-card {
    position: relative;
    height: 320px; /* Taller card for better presence */
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    cursor: pointer;
}

.category-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.category-img-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Glassmorphism Data Panel */
.category-data {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    width: auto; /* Use constraints instead of fixed width */
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.1); /* Low opacity white */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    color: var(--white-color);
    z-index: 2;
    transition: all 0.4s ease;
    transform: translateY(0);
}

.category-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.category-count {
    font-size: 0.875rem;
    color: var(--first-color); /* Yellow accent */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-count::after {
    content: '→';
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateX(-5px);
}

/* Hover Effects */
.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.category-card:hover .category-img {
    transform: scale(1.1);
}

.category-card:hover .category-data {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.category-card:hover .category-count::after {
    opacity: 1;
    transform: translateX(0);
}

/* Shine Effect */
.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        105deg, 
        transparent 20%, 
        rgba(255,255,255,0.1) 25%, 
        transparent 30%
    );
    transform: translateX(-100%);
    transition: transform 0.6s;
    z-index: 3;
    pointer-events: none;
}

.category-card:hover::after {
    transform: translateX(100%);
    transition: transform 0.8s ease-in-out;
}

/* Products */
.products-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.product-card {
    background-color: var(--container-color);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,.05);
    transition: .3s;
}

.product-card:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,.1);
}

.product-img-wrapper {
    overflow: hidden;
    height: 200px;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    margin-bottom: var(--mb-0-5);
}

.product-link {
    display: inline-block;
    margin-top: var(--mb-1);
    color: var(--first-color);
    font-weight: var(--font-medium);
}

/* Mobile Phones Slider */
.phones-swiper {
    padding: 1rem 0 4rem;
}

.phone-card {
    background-color: var(--container-color);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    transition: .3s;
}

.phone-card:hover {
    transform: translateY(-5px);
    border-color: var(--first-color);
}

.phone-img-wrapper {
    background-color: #f9f9f9;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
}

.phone-img {
    max-height: 100%;
    object-fit: contain;
}

.phone-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--black-color);
    color: var(--first-color);
    padding: .25rem .75rem;
    border-radius: .5rem;
    font-size: var(--smaller-font-size);
    font-weight: var(--font-bold);
}

.phone-info {
    padding: 1.5rem;
}

.phone-name {
    font-size: var(--h3-font-size);
    margin-bottom: .25rem;
}

.phone-brand {
    font-size: var(--small-font-size);
    color: var(--text-color-light);
    margin-bottom: 1rem;
}

.phone-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.phone-price {
    font-weight: var(--font-bold);
    color: var(--black-color);
}

/* Testimonials Card Styling */
.reviews-swiper {
    padding-bottom: 4rem;
    position: relative;
}

.card-testimonial {
    background-color: var(--container-color);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-color: var(--first-color);
}

.review-icon {
    color: var(--first-color);
    margin-bottom: var(--mb-1-5);
    background-color: rgba(253, 216, 53, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.review-text {
    font-size: var(--normal-font-size);
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: var(--mb-2);
    font-style: italic;
    flex-grow: 1;
}

.review-user {
    border-top: 1px solid var(--border-color);
    padding-top: var(--mb-1);
    display: flex;
    flex-direction: column;
}

.review-name {
    font-weight: var(--font-bold);
    color: var(--black-color);
}

.review-location {
    font-size: var(--smaller-font-size);
    color: var(--text-color-light);
}

/* Laptop Section Styles */
.laptop-hero-img-wrapper {
    width: 100%;
    height: 400px;
    border-radius: 2rem;
    overflow: hidden;
    margin-bottom: var(--mb-2-5);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.laptop-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.laptop-hero-img-wrapper:hover .laptop-hero-img {
    transform: scale(1.02);
}

.laptop-marquee {
    background-color: var(--first-color);
    margin: var(--mb-2) 0;
    width: 100%;
}

.laptop-marquee .brand-item {
    color: var(--black-color);
    font-size: 1.25rem;
}

/* Swiper Controls Customization */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 45px;
    height: 45px;
    background-color: var(--black-color);
    color: var(--first-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    position: static !important; /* Reset Swiper's absolute positioning */
}

.slider-btn:hover {
    background-color: #333;
    transform: scale(1.1);
}

.slider-btn::after {
    display: none; /* Hide Swiper default icon */
}

.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    transition: width 0.3s;
}

.swiper-pagination-bullet-active {
    background-color: var(--first-color) !important;
    width: 25px;
    border-radius: 5px;
}

/* Location */
.location-container {
    row-gap: 2.5rem;
    margin-bottom: clamp(4rem, 10vw, 8rem); 
}

@media screen and (min-width: 768px) {
    .location-container {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        margin-bottom: clamp(6rem, 12vw, 10rem);
        
        
    }
}
@media screen and (max-width:768px) {
    .location-container{
         margin-left: auto; 
    margin-right: auto; 
    padding-left: var(--mb-1-5); 
    padding-right: var(--mb-1-5);
    }
}

.location-item {
    display: flex;
    align-items: center;
    column-gap: 1rem;
    margin-bottom: var(--mb-1);
}

.location-actions {
    display: flex;
    gap: 1rem;
    margin-top: var(--mb-2);
}

.map-placeholder {
    height: 300px;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
}

/* Brands Marquee */
.brands {
    background-color: var(--black-color);
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
}

.marquee {
    display: flex;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    animation: marquee 20s linear infinite;
}

.brand-item {
    font-size: 1.5rem;
    font-weight: var(--font-bold);
    color: var(--first-color);
    margin: 0 3rem;
    letter-spacing: 2px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brands:hover .marquee-content {
    animation-play-state: paused;
}

/* Footer Section */
/* Brutalist Luxury Footer v2 */
.footer-v2 {
    background-color: #000;
    color: #fff;
    padding: 8rem 0 3rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #1a1a1a;
}

/* Giant Background Text */
.footer-giant-text {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.20;
    white-space: nowrap;
    font-size: clamp(80px, 20vw, 250px); 
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.marquee-footer {
    display: inline-block;
    animation: marquee-scroll 40s linear infinite;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.footer-v2-container {
    position: relative;
    z-index: 1;
}

.footer-asym-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

@media screen and (min-width: 1024px) {
    .footer-asym-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        align-items: start;
    }
}

.footer-big-title {
    font-size: clamp(2.25rem, 8vw, 6rem);
    line-height: 0.9;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -2px;
    color: #fff;
}

.text-stroke {
    -webkit-text-stroke: 1px #fff;
    color: transparent;
}

.footer-tagline {
    font-size: 1.1rem;
    color: #888;
    max-width: 400px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.footer-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--first-color);
    transition: 0.3s;
}

.footer-cta-link:hover {
    gap: 1.5rem;
    color: #fff;
}

.matrix-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 4px;
    color: #444;
    margin-bottom: 2rem;
}

.nav-matrix {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.matrix-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.matrix-links a {
    color: #888;
    font-size: 1rem;
    transition: 0.3s;
}

.matrix-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-address {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #666;
}

.footer-social-v2 {
    display: flex;
    gap: 1.5rem;
}

.social-v2-item {
    font-size: 0.8rem;
    font-weight: 900;
    color: #fff;
    width: 40px;
    height: 40px;
    border: 1px solid #222;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-v2-item:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Bottom Bar */
.footer-v2-bottom {
    padding-top: 3rem;
    border-top: 1px solid #1a1a1a;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

@media screen and (min-width: 768px) {
    .footer-v2-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.bottom-left p {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #444;
}

.bottom-right {
    display: flex;
    gap: 2rem;
}

.bottom-right a {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #444;
    transition: 0.3s;
}

.bottom-right a:hover {
    color: #fff;
}

/* ================== MASTER UPGRADE: NEW SECTIONS ================== */

/* Global Texture Overlay */
body::after {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.04;
    pointer-events: none;
    z-index: 9999;
}

/* Lenis Smooth Scroll Configuration */
html.lenis {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}

/* Heritage Section */
.heritage {
    background-color: #000;
    padding: 10rem 0;
    position: relative;
    border-bottom: 1px solid #111;
}

.heritage-subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--first-color);
    margin-bottom: 2rem;
}

.heritage-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1;
    margin-bottom: 3rem;
    color: #fff;
}

.heritage-text {
    color: #888;
    max-width: 500px;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.heritage-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem; /* Tighter gap for mobile */
}

@media screen and (min-width: 768px) {
    .heritage-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 4rem;
    }
}

.stat-number {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.stat-number::after {
    content: '+';
    color: var(--first-color);
    font-size: 1.5rem;
    margin-left: 0.25rem;
}

.stat-label {
    text-transform: uppercase;
    font-size: 0.65rem; /* Smaller label for mobile */
    font-weight: 700;
    letter-spacing: 2px;
    color: #444;
    line-height: 1.4;
}

@media screen and (min-width: 768px) {
    .stat-label {
        font-size: 0.75rem;
    }
}

/* Diagnostic Hub */
.diagnostic {
    background-color: #050505;
    padding: clamp(4rem, 10vw, 8rem) 0;
}

.diag-matrix {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* Better mobile fit */
    gap: 1.5rem;
    margin-top: 3rem;
}

.diag-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
    border-radius: 1rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.diag-card:hover {
    background: #0f0f0f;
    border-color: #333;
    transform: translateY(-10px);
}

.card-accent {
    border-color: var(--first-color);
    box-shadow: 0 10px 40px rgba(253, 216, 53, 0.05);
}

.diag-step {
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--first-color);
    display: block;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.diag-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.diag-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Dark Section Title Support */
.heritage .section-title,
.diagnostic .section-title,
.faq .section-title {
    color: #fff;
}
.faq {
    background-color: #000;
    padding: 8rem 0;
    max-width: 100% !important;
}


.faq-container {
    max-width: 800px;
    margin: 4rem auto 0;
}

@media screen and (max-width:768px) {
    .faq-container{
         margin-left: auto; 
    margin-right: auto; 
    padding-left: var(--mb-1-5); 
    padding-right: var(--mb-1-5);
    }
}
.faq-item {
    border-bottom: 1px solid #1a1a1a;
    padding: 1.5rem 0;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 2rem;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    transition: 0.3s;
}

.faq-item:hover .faq-question {
    color: var(--first-color);
}

.faq-icon {
    transition: transform 0.4s ease;
    color: #444;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--first-color);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin 0.4s ease;
}

.faq-item.active .faq-body {
    max-height: 200px;
    margin-top: 1.5rem;
}

.faq-answer {
    color: #888;
    line-height: 1.7;
}

/* Magnetic Button Utility */
.magnetic-btn {
    display: inline-block;
    transition: transform 0.2s linear;
}

/* Offers Section (Dark Minimalist Grid) */
.offers {
    background-color: #0f0f0f; /* Deep Dark Background */
    padding: 6rem 0;
}

.offers-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 2rem;
}

@media screen and (min-width: 768px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 1024px) {
    .offers-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: minmax(220px, auto);
    }
    
    /* Make the first item span 2 columns and 2 rows for impact */
    .offer-feature {
        grid-column: span 2;
        grid-row: span 2;
    }
}

/* Common Card Styles */
.offer-card {
    background: #1a1a1a; /* Dark Gray Card */
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3); /* Stronger shadow for dark mode */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255,255,255,0.05); /* Subtle white border */
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.1);
}

/* Feature Card (iPhone) */
.offer-feature {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
}

@media screen and (min-width: 768px) {
    .offer-feature {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 2rem;
    }
    .offer-feature .offer-data {
        flex: 1;
        max-width: 50%;
    }
    .offer-feature .offer-img-lg {
        flex: 1;
        max-width: 300px;
    }
}

/* Typography & Elements */
.offer-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

/* Dark Theme Indicators - Bright Text on Dark/Muted BG */
.badge-black { background: #fff; color: #000; } /* Invert for contrast */
.badge-blue { background: rgba(0, 122, 255, 0.2); color: #4facfe; border: 1px solid rgba(0, 122, 255, 0.3); }
.badge-green { background: rgba(46, 125, 50, 0.2); color: #66bb6a; border: 1px solid rgba(46, 125, 50, 0.3); }
.badge-purple { background: rgba(123, 31, 162, 0.2); color: #da7bf6; border: 1px solid rgba(123, 31, 162, 0.3); }
.badge-dark { background: #333; color: #fff; border: 1px solid #444; }
.badge-orange { background: rgba(239, 108, 0, 0.2); color: #ff9800; border: 1px solid rgba(239, 108, 0, 0.3); }

.offer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff; /* White Text */
    margin-bottom: 0.5rem;
}

.offer-feature .offer-title {
    font-size: 2.5rem;
    letter-spacing: -1px;
}

.offer-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--first-color); /* Keep Brand Yellow */
    margin-bottom: 0.5rem;
}

.offer-feature .offer-price {
    font-size: 2rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.offer-desc {
    color: #aaaaaa; /* Light Gray */
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.offer-link {
    font-weight: 600;
    color: #4facfe; /* Light Blue for dark bg */
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: gap 0.2s;
}
.offer-link:hover {
    text-decoration: underline;
    gap: 5px;
}

/* Background Variations - Subtle Tints */
.bg-gray { background: #1a1a1a; }
.bg-soft-yellow { background: linear-gradient(135deg, #1a1a1a, #202018); }
.bg-green-light { background: linear-gradient(135deg, #1a1a1a, #152015); }
.bg-blue-light { background: linear-gradient(135deg, #1a1a1a, #151a20); }

/* Images */
.offer-img-sm {
    align-self: flex-end;
    width: 120px;
    margin-top: auto;
    object-fit: contain;
    transition: transform 0.3s;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.5)); /* Shadow for depth */
}
.offer-card:hover .offer-img-sm {
    transform: scale(1.05);
}

.offer-img-lg {
    /* Removed mix-blend-mode: multiply as it hides images on dark backgrounds */
    width: 250px;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.6));
}

.icon-green {
    color: #66bb6a; /* Brighter Green */
    margin-top: auto;
    align-self: flex-end;
}

/* Media Queries */
@media screen and (min-width: 768px) {
    body {
        margin: 0;
    }
    
    .nav {
        height: calc(var(--header-height) + 1.5rem);
        column-gap: 3rem;
    }
    
    .nav-toggle, .nav-close {
        display: none;
    }
    
    .nav-list {
        flex-direction: row;
        column-gap: 3rem;
    }
    
    .nav-cta {
        display: inline-block;
    }

    .hero-container {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
    
    .hero-data {
        text-align: left;
    }
}

@media screen and (min-width: 768px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 1024px) {
    .offers-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: minmax(220px, auto);
    }
    
    /* Make the first item span 2 columns and 2 rows for impact */
    .offer-feature {
        grid-column: span 2;
        grid-row: span 2;
    }
}

/* Common Card Styles */
.offer-card {
    background: #1a1a1a; /* Dark Gray Card */
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3); /* Stronger shadow for dark mode */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255,255,255,0.05); /* Subtle white border */
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.1);
}

/* Feature Card (iPhone) */
.offer-feature {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
}

@media screen and (min-width: 768px) {
    .offer-feature {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 2rem;
    }
    .offer-feature .offer-data {
        flex: 1;
        max-width: 50%;
    }
    .offer-feature .offer-img-lg {
        flex: 1;
        max-width: 300px;
    }
}

/* Typography & Elements */
.offer-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

/* Dark Theme Indicators - Bright Text on Dark/Muted BG */
.badge-black { background: #fff; color: #000; } /* Invert for contrast */
.badge-blue { background: rgba(0, 122, 255, 0.2); color: #4facfe; border: 1px solid rgba(0, 122, 255, 0.3); }
.badge-green { background: rgba(46, 125, 50, 0.2); color: #66bb6a; border: 1px solid rgba(46, 125, 50, 0.3); }
.badge-purple { background: rgba(123, 31, 162, 0.2); color: #da7bf6; border: 1px solid rgba(123, 31, 162, 0.3); }
.badge-dark { background: #333; color: #fff; border: 1px solid #444; }
.badge-orange { background: rgba(239, 108, 0, 0.2); color: #ff9800; border: 1px solid rgba(239, 108, 0, 0.3); }

.offer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff; /* White Text */
    margin-bottom: 0.5rem;
}

.offer-feature .offer-title {
    font-size: 2.5rem;
    letter-spacing: -1px;
}

.offer-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--first-color); /* Keep Brand Yellow */
    margin-bottom: 0.5rem;
}

.offer-feature .offer-price {
    font-size: 2rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.offer-desc {
    color: #aaaaaa; /* Light Gray */
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.offer-link {
    font-weight: 600;
    color: #4facfe; /* Light Blue for dark bg */
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: gap 0.2s;
}
.offer-link:hover {
    text-decoration: underline;
    gap: 5px;
}

/* Background Variations - Subtle Tints */
.bg-gray { background: #1a1a1a; }
.bg-soft-yellow { background: linear-gradient(135deg, #1a1a1a, #202018); }
.bg-green-light { background: linear-gradient(135deg, #1a1a1a, #152015); }
.bg-blue-light { background: linear-gradient(135deg, #1a1a1a, #151a20); }

/* Images */
.offer-img-sm {
    align-self: flex-end;
    width: 120px;
    margin-top: auto;
    object-fit: contain;
    transition: transform 0.3s;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.5)); /* Shadow for depth */
}
.offer-card:hover .offer-img-sm {
    transform: scale(1.05);
}

.offer-img-lg {
    /* Removed mix-blend-mode: multiply as it hides images on dark backgrounds */
    width: 250px;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.6));
}

.icon-green {
    color: #66bb6a; /* Brighter Green */
    margin-top: auto;
    align-self: flex-end;
}

/* Media Queries */
@media screen and (min-width: 768px) {
    body {
        margin: 0;
    }
    
    .nav {
        height: calc(var(--header-height) + 1.5rem);
        column-gap: 3rem;
    }
    
    .nav-toggle, .nav-close {
        display: none;
    }
    
    .nav-list {
        flex-direction: row;
        column-gap: 3rem;
    }
    
    .nav-cta {
        display: inline-block;
    }

    .hero-container {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
    
    .hero-data {
        text-align: left;
    }
    
    .hero-actions {
        justify-content: flex-start;
    }
    
    .hero-img {
        width: 450px;
    }
}

/* ================== MULTI-PAGE: SERVICES ================== */

/* Services Hero */
.services-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: #000;
}

.text-outline {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    color: transparent;
}

/* Blueprint Timeline */
.blueprint {
    position: relative;
    padding: 10rem 0;
}

.blueprint-timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0;
}

.blueprint-line {
    position: absolute;
    top: 0;
    left: 20px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--first-color), transparent);
    opacity: 0.3;
}

.blueprint-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 6rem;
}

.step-num {
    position: absolute;
    left: 0;
    top: 0;
    width: 42px;
    height: 42px;
    background: #111;
    border: 1px solid var(--first-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--first-color);
    z-index: 2;
    box-shadow: 0 0 20px rgba(253, 216, 53, 0.2);
}

.blueprint-step h3 {
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.blueprint-step p {
    color: #888;
    max-width: 500px;
}

/* Pricing Hub */
.price-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    transition: all 0.4s ease;
}

.price-card:hover {
    border-color: #333;
    background: #0f0f0f;
}

.highlight-card {
    border-color: var(--first-color);
    box-shadow: 0 15px 50px rgba(253, 216, 53, 0.05);
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.price-badge {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    background: var(--first-color);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    color: #aaa;
    font-size: 0.95rem;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 0.75rem;
}

.price-list li span:last-child {
    color: #fff;
    font-weight: 700;
}

@media screen and (min-width: 768px) {
    .blueprint-line {
        left: 50%;
        transform: translateX(-50%);
    }

    .blueprint-step {
        width: 50%;
        padding: 0;
        margin-bottom: 4rem;
    }

    .blueprint-step:nth-child(even) {
        margin-left: auto;
        padding-left: 60px;
    }

    .blueprint-step:nth-child(odd) {
        text-align: right;
        padding-right: 60px;
    }

    .blueprint-step:nth-child(odd) .step-num {
        left: auto;
        right: -21px;
    }

    .blueprint-step:nth-child(even) .step-num {
        left: -21px;
    }
}


/* Unique Showcase Section (Mosaic Grid) */
.showcase {
    background-color: #050505; /* Deep Black */
    padding: 6rem 0;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

@media screen and (min-width: 768px) {
    .mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }
}

@media screen and (min-width: 1024px) {
    .mosaic-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 250px);
        grid-auto-rows: 250px; /* Ensure overflow rows have height */
        gap: 1.5rem;
    }

    /* Grid Spans for Asymmetry */
    .mosaic-lg {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .mosaic-wide {
        grid-column: span 2;
    }
    
    .mosaic-tall {
        grid-row: span 2;
    }
}

.mosaic-item {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: transform 0.3s ease;
    min-height: 250px; /* Mobile height */
}

/* Hover Effect */
.mosaic-item:hover {
    transform: scale(1.02);
    z-index: 2;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

/* Gradient Overlay - Always Visible */
.mosaic-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
    transition: background 0.3s;
}

.mosaic-item:hover::before {
    background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.2) 100%);
}

.mosaic-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    z-index: 2;
}

.mosaic-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.mosaic-title {
    font-size: clamp(1.1rem, 4vw, 1.25rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.mosaic-lg .mosaic-title {
    font-size: clamp(1.5rem, 6vw, 2.25rem);
}

.mosaic-desc {
    color: #ccc;
    font-size: clamp(0.75rem, 3vw, 0.9rem);
    margin-bottom: 0;
    transition: opacity 0.3s;
}

/* Button Styles */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    margin-top: 1rem;
    display: inline-block;
}

.btn-outline-white {
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 2rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-white:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-3px);
}



/* ================== MULTI-PAGE: PRODUCTS ================== */

/* Products Hero */
.products-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    background-color: var(--black-color);
}

/* Category Filters */
.category-filters {
    padding: 2rem 0;
    position: sticky;
    top: 5rem;
    z-index: 100;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.filter-wrapper {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
}

.filter-wrapper::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: #888;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn.active, .filter-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Infinite Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media screen and (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

/* Product Card v3 */
.product-card-v3 {
    background: #0a0a0a;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid #1a1a1a;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.product-card-v3:hover {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.pc-image {
    position: relative;
    height: 250px;
    background: linear-gradient(to bottom, #111, #0a0a0a);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pc-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.product-card-v3:hover .pc-image img {
    transform: scale(1.1);
}

.pc-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--first-color);
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.pc-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pc-brand {
    font-size: 0.75rem;
    color: var(--first-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.pc-title {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.pc-price {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pc-specs {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.btn-pc {
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding: 0.75rem;
    border-radius: 1rem;
}

/* Brand Floors */
.brand-floors {
    margin-top: 4rem;
}

.floor {
    padding: clamp(6rem, 15vw, 10rem) 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.apple-floor {
    background: radial-gradient(circle at 80% 20%, #1a1a1a 0%, #000 70%) !important;
}

.samsung-floor {
    background: radial-gradient(circle at 20% 80%, #151520 0%, #000 70%) !important;
}

.floor-content {
    max-width: 500px;
}

.floor-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    color: inherit; /* Controlled by parent or dark-bg */
}

.floor-text {
    color: inherit;
    opacity: 0.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.floor-list {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.floor-list li {
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.floor-list li::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--first-color);
}

.floor-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px; /* Ensure visibility on mobile */
    background: rgba(255, 255, 255, 0.02);
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 2rem;
    overflow: hidden;
}

.floor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.8s ease;
}

.floor:hover .floor-img {
    transform: scale(1.05) rotate(1deg);
    opacity: 1;
}

@media screen and (min-width: 1024px) {
    .floor-visual {
        margin-top: 0;
        min-height: 500px;
    }
}

.side-text {
    font-size: 15vw;
    font-weight: 900;
    /* color: rgba(255, 255, 255, 0.03); */
    white-space: nowrap;
    position: absolute;
    pointer-events: none;
    mix-blend-mode: difference;
}

@media screen and (min-width: 768px) {
    .arrivals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .arrival-card.large {
        grid-column: span 2;
        display: flex;
        align-items: center;
    }

    .arrival-card.large .arrival-img {
        width: 50%;
        height: 450px;
    }

    .arrival-card.large .arrival-info {
        width: 50%;
        padding: 4rem;
    }
}

@media screen and (min-width: 1024px) {
    .floor .grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        gap: 8rem;
    }
}

/* ================== MULTI-PAGE: REVIEWS ================== */

/* Reviews Hero */
.reviews-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: #000;
}

/* Trust Wall (Typography) */
.trust-wall {
    padding: 8rem 0;
}

.wall-grid {
    display: grid;
    gap: 4rem;
    grid-template-columns: 1fr;
}

.wall-item {
    padding: 2rem;
    border-left: 3px solid var(--first-color);
    background-color: #000;
    border-radius: 10px;
}

.wall-quote {
    font-size: clamp(1.5rem, 5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: -1.5px;
}

.wall-author {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--first-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Milestones */
.milestone-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-top: 4rem;
}

.milestone-card {
    background: #0a0a0a;
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    border: 1px solid #1a1a1a;
    transition: all 0.4s ease;
}

.milestone-year {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    margin-bottom: 1rem;
}

.milestone-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.milestone-card p {
    color: #888;
    font-size: 0.95rem;
}

.active-milestone {
    border-color: var(--first-color);
    background: #0f0f0f;
}

.active-milestone .milestone-year {
    color: var(--first-color);
    opacity: 1;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
    .wall-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wall-item:nth-child(1) {
        grid-column: span 2;
    }
    
    .milestone-grid {
        grid-template-columns: repeat(2, 1fr);
    }
} 

@media screen and (min-width: 1024px) {
    .milestone-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ================== MULTI-PAGE: CONTACT ================== */

/* Contact Hero */
.contact-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: #000;
}

/* Contact Split Grid */
.contact-split {
    padding: 6rem 0;
}

.split-grid {
    gap: 4rem;
}

.block-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--first-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.block-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1;
    letter-spacing: -1.5px;
}

.block-text {
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-links a {
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    transition: color 0.3s;
}

.contact-links a:hover {
    color: var(--first-color);
}

/* Hub Form */
.hub-form {
    background: #0a0a0a;
    padding: 3rem;
    border-radius: 2rem;
    border: 1px solid #1a1a1a;
}

.contact-form {
    margin-top: 3rem;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
}

.form-input {
    background: #111;
    border: 1px solid #222;
    padding: 1.25rem;
    border-radius: 1rem;
    color: #fff;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--first-color);
}

/* Hub Map Placeholder */
.map-placeholder-large {
    width: 100%;
    height: 500px;
    background: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    border-top: 1px solid #111;
}

.map-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
}

@media screen and (min-width: 768px) {
    .split-grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: flex-start;
    }
}
