/* ============================================
   WOLFFLOORZ - Component Styles
   ============================================ */

/* ============================================
   SITE HEADER WRAPPER (Fixed)
   ============================================ */

.site-header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    will-change: auto;
}

/* Ensure mobile menu is above header on mobile */
@media (max-width: 768px) {
    .site-header-wrapper {
        z-index: 1000;
    }
    
    .main-nav {
        z-index: 999999 !important;
    }
    
    .mobile-menu-toggle {
        z-index: 1000000 !important;
        position: relative;
    }
}

/* ============================================
   TOP INFO BAR
   ============================================ */

.top-info-bar {
    background-color: var(--color-secondary);
    padding: 0.5rem 0;
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
    width: 100%;
    transition: top 0.3s ease, height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
    top: 0;
    box-sizing: border-box;
}

.top-info-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.top-info-items {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.top-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-light);
}

.top-info-item i {
    font-size: 0.875rem;
    color: var(--color-red);
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.language-switcher a {
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.language-switcher a:hover {
    background-color: rgba(196, 30, 58, 0.15);
    color: var(--color-white);
}

.language-switcher a.active {
    background-color: var(--color-accent);
    color: var(--color-white);
}

/* ============================================
   MAIN HEADER (Navbar)
   ============================================ */

.main-header {
    background-color: rgba(24, 26, 31, 0.96);
    padding: var(--spacing-sm) 0;
    position: relative;
    width: 100%;
    z-index: 2;
    backdrop-filter: blur(6px);
    box-sizing: border-box;
    border-bottom: 0.5px solid rgba(255, 0, 0, 0.4);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

.logo img {
    height: 58px;
    width: auto;
    max-width: 210px;
    display: block;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    line-height: 1;
    font-family: var(--font-primary);
}

.logo-text-wolf {
    color: #FFFFFF;
}

.logo-text-floorz {
    color: #FF0000;
}

.main-nav {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-link {
    color: var(--color-light);
    font-weight: var(--font-weight-medium);
    padding: 0.5rem 0;
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width var(--transition-normal);
}

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

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

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    pointer-events: auto;
}

.dropdown-toggle:hover {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-secondary);
    min-width: 250px;
    padding: var(--spacing-sm) 0;
    margin-top: var(--spacing-xs);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    border-radius: 4px;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--color-light);
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
}

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

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 450px;
    overflow: visible;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('/images/Home/banner.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}


.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    display: none;
}

.hero-overlay {
    display: none;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-accent) 0%, #dc2626 100%);
    color: var(--color-white);
    padding: 10px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    margin-left: calc(-700px + 40px);
    max-width: 1400px;
    z-index: 10;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-badge.fade-in-delay-2 {
    animation-delay: 0.2s;
}

.hero-title {
    font-size: 75px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: var(--color-white);
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-title.fade-in-delay-2 {
    animation-delay: 0.2s;
}

.hero-title .highlight {
    color: var(--color-accent);
    display: block;
    font-style: italic;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 22px;
    color: #e0e0e0;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-subtitle.fade-in-delay-2 {
    animation-delay: 0.2s;
}


.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-buttons.fade-in-delay-3 {
    animation-delay: 0.4s;
}

.hero-cta {
    margin-top: 0;
    padding: 16px 40px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    background: linear-gradient(135deg, var(--color-accent) 0%, #dc2626 100%);
    color: var(--color-white);
    text-decoration: none;
    display: inline-block;
}

.hero-cta:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: var(--color-dark);
    transform: scale(1.05);
}

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

/* ============================================
   PRODUCT CARDS
   ============================================ */

.products-section {
    background-color: var(--color-primary);
    padding: var(--spacing-xxl) 0;
}

.products-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.section-title-underline {
    height: 4px;
    width: 96px;
    background-color: var(--color-accent);
    margin: var(--spacing-md) auto var(--spacing-lg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-md);
}

.product-card {
    background-color: var(--color-secondary);
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    border-color: rgba(209, 47, 47, 0.3);
}

.product-card-26mm:hover {
    border-color: rgba(209, 47, 47, 0.3);
}

.product-card-40mm:hover {
    border-color: rgba(209, 47, 47, 0.3);
}

.product-image {
    position: relative;
    height: 400px;
    overflow: visible;
    background-color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.product-image::before {
    display: none;
}


.product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.7s ease;
}

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

.product-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    z-index: 20;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0.125rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.product-badge-26mm {
    background-color: var(--color-accent);
}

.product-badge-40mm {
    background-color: var(--color-accent);
}

.product-image-overlay {
    display: none;
}

.product-info {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    color: var(--color-white);
    font-family: 'Oswald', sans-serif;
}

.product-description {
    color: var(--color-light);
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
    font-weight: 400;
    line-height: 1.6;
    flex-grow: 1;
}

.product-description-26mm {
    border-left: 2px solid var(--color-accent);
    padding-left: var(--spacing-md);
}

.product-description-40mm {
    border-left: 2px solid var(--color-accent);
    padding-left: var(--spacing-md);
}

.product-price-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--spacing-md);
}

.product-price-wrapper {
    display: flex;
    flex-direction: column;
}

.product-price-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-light);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.product-price {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-white);
    font-family: var(--font-primary);
    line-height: 1;
}

.product-price-note {
    font-size: 0.75rem;
    color: var(--color-light);
    font-weight: 400;
    margin-top: 0.25rem;
    text-transform: uppercase;
}

.product-cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 0.25rem;
    white-space: nowrap;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.product-cta-outline {
    background-color: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
}

.product-cta-outline:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.product-cta-filled {
    background-color: var(--color-accent);
    color: var(--color-white);
    border: none;
}

.product-card-26mm .product-cta-filled:hover {
    background-color: var(--color-white);
    color: var(--color-accent);
}

.product-card-40mm .product-cta-filled:hover {
    background-color: var(--color-white);
    color: var(--color-accent);
}

.product-cta:hover {
    transform: scale(1.02);
}

/* ============================================
   WHY SECTION
   ============================================ */

.why-section {
    background-color: var(--color-dark);
    padding: var(--spacing-xl) 0;
}

.why-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-content {
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.why-title {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 50px;
    letter-spacing: -1px;
    color: var(--color-white);
}

.why-title .accent-text {
    color: var(--color-accent);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: rgba(209, 47, 47, 0.1);
    border: 1px solid var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.feature-icon-box svg {
    width: 24px;
    height: 24px;
    fill: var(--color-accent);
}

.feature-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
    text-transform: capitalize;
}

.feature-text p {
    font-size: 15px;
    color: #9ca3af;
    line-height: 1.6;
    font-weight: 300;
}

.why-image-wrapper {
    position: relative;
    height: 600px;
    width: 100%;
}

.why-image-wrapper::before {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    width: 96px;
    height: 96px;
    border-top: 4px solid var(--color-accent);
    border-left: 4px solid var(--color-accent);
    z-index: 2;
}

.why-image-wrapper::after {
    content: '';
    position: absolute;
    top: -16px;
    right: -16px;
    width: 96px;
    height: 96px;
    border-top: 4px solid var(--color-accent);
    border-right: 4px solid var(--color-accent);
    z-index: 2;
}

.why-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    border-radius: 2px;
}

.why-image-wrapper .corner-bottom-left {
    position: absolute;
    bottom: -16px;
    left: -16px;
    width: 96px;
    height: 96px;
    border-bottom: 4px solid var(--color-accent);
    border-left: 4px solid var(--color-accent);
    z-index: 2;
}

.guarantee-box {
    position: absolute;
    top: -24px;
    left: -24px;
    background-color: var(--color-accent);
    padding: 24px;
    color: var(--color-white);
    z-index: 3;
    transform: rotate(-3deg);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.guarantee-box span:first-child {
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.guarantee-box span:last-child {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.slide-in-left {
    animation: slide-in-left 0.9s ease-out both;
}

.scale-in {
    animation: scale-in 0.9s ease-out both;
}

@keyframes slide-in-left {
    0% { opacity: 0; transform: translateX(-24px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes scale-in {
    0% { opacity: 0; transform: scale(0.96); }
    100% { opacity: 1; transform: scale(1); }
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background-color: var(--color-primary);
    padding: var(--spacing-xxl) var(--spacing-md);
    position: relative;
}

.cta-section > * {
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 1400px;
    margin: 0 auto;
    background-color: var(--color-secondary);
    border-radius: 1rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    border-color: rgba(209, 47, 47, 0.3);
}

.cta-title-box {
    padding: var(--spacing-xl) var(--spacing-lg);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 300px;
    background: rgba(0, 0, 0, 0.2);
}

.cta-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--color-white);
    margin: 0;
}

.cta-info-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--spacing-xl);
}

.cta-info-content {
    padding: 0;
    margin-bottom: var(--spacing-md);
    flex: 1;
    background: transparent;
    display: flex;
    align-items: flex-start;
}

.cta-size-number {
    font-family: 'Oswald', sans-serif;
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    display: block;
    margin-bottom: var(--spacing-sm);
    color: rgba(0, 0, 0, 0.3);
    opacity: 0.5;
}

.cta-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-light);
    margin: 0;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    margin-top: var(--spacing-md);
}

.cta-button-primary,
.cta-button-secondary {
    flex: 1;
    padding: var(--spacing-lg);
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.cta-button-primary {
    background: transparent;
    color: var(--color-white);
    border-bottom: 4px solid var(--color-white);
}

.cta-button-primary:hover {
    background: var(--color-white);
    color: var(--color-accent);
}

.cta-button-secondary {
    background: rgba(0, 0, 0, 0.3);
    color: var(--color-white);
}

.cta-button-secondary:hover {
    background: rgba(0, 0, 0, 0.5);
}

.cta-button-project {
    width: 100%;
    padding: 0.75rem 1.5rem;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    background-color: var(--color-accent);
    color: var(--color-white);
    letter-spacing: 0.05em;
    border-radius: 0.25rem;
    white-space: nowrap;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.cta-button-project:hover {
    background-color: var(--color-white);
    color: var(--color-accent);
    transform: scale(1.02);
}

@media (min-width: 768px) {
    .cta-title-box {
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        padding: var(--spacing-xxl) var(--spacing-xl);
    }

    .cta-title {
        font-size: 4.5rem;
    }

    .cta-size-number {
        font-size: 8rem;
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: flex-end;
    }

    .cta-button-project {
        width: auto;
        min-width: 280px;
    }

    .cta-button-primary {
        border-bottom: none;
        border-right: 4px solid var(--color-white);
    }
}


/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--color-primary);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    color: var(--color-light);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 1fr 1.5fr;
    column-gap: 2rem;
    row-gap: 0;
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    align-items: start;
    justify-items: stretch;
    width: 100%;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0;
    overflow: hidden;
}

.footer-section:first-child {
    align-items: flex-start;
    text-align: left;
}

.footer-section:nth-child(2),
.footer-section:nth-child(3) {
    align-items: flex-start;
    text-align: left;
}

.footer-section h3 {
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    font-size: 1.15rem;
    width: 100%;
}

.footer-section p {
    opacity: 0.9;
    font-size: 0.9rem;
    line-height: 1.5;
    width: 100%;
    margin-top: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

.footer-logo {
    margin-bottom: var(--spacing-md);
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    visibility: visible !important;
    opacity: 1 !important;
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

.footer-logo:hover {
    opacity: 0.9;
}

.footer-logo img {
    height: 45px;
    width: auto;
    max-width: 180px;
    display: block !important;
    object-fit: contain;
    margin-right: 0;
    visibility: visible !important;
    opacity: 1 !important;
}

.footer-logo-text {
    font-size: 1.35rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    line-height: 1;
    font-family: var(--font-primary);
}

.footer-logo-text-wolf {
    color: #FFFFFF;
}

.footer-logo-text-floorz {
    color: #FF0000;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
    justify-content: flex-start;
}

.social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-secondary);
    border-radius: 50%;
    transition: var(--transition-fast);
    color: var(--color-white);
    font-size: 0.95rem;
}

.social-link:hover {
    background-color: var(--color-accent);
    transform: translateY(-3px);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    align-items: flex-start;
}

.footer-nav a {
    color: var(--color-light);
    opacity: 0.9;
    transition: var(--transition-fast);
    padding: 0.25rem 0;
    font-size: 0.95rem;
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--color-white);
    padding-left: var(--spacing-xs);
}

.footer-contact-item {
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--spacing-xs);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact-item i {
    margin-top: 0;
    color: var(--color-red);
    font-size: 0.95rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
}

.footer-contact-item span,
.footer-contact-item a {
    display: flex;
    align-items: center;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    margin-top: var(--spacing-xl);
    max-width: 1150px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.footer-legal a {
    color: var(--color-light);
    opacity: 0.8;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    opacity: 1;
    color: var(--color-white);
}

.footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
    color: var(--color-light);
}

.footer-copyright a {
    color: var(--color-gold);
    opacity: 1;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

/* ============================================
   NEWSLETTER FORM
   ============================================ */

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: flex-start;
    width: 100%;
}

.newsletter-input {
    padding: 0.7rem 0.9rem;
    font-size: 0.9rem;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: var(--color-white);
    font-family: var(--font-primary);
    transition: var(--transition-fast);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-checkbox-label {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: var(--spacing-xs);
    font-size: 0.8rem;
    color: var(--color-light);
    opacity: 0.9;
    cursor: pointer;
    line-height: 1.4;
    text-align: left;
    width: 100%;
}

.newsletter-checkbox {
    margin-top: 0.25rem;
    cursor: pointer;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.newsletter-checkbox:checked {
    accent-color: var(--color-accent);
}

.newsletter-btn {
    padding: 0.75rem 1.4rem;
    font-size: 0.85rem;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: var(--color-accent);
    color: var(--color-white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: var(--transition-normal);
    font-family: var(--font-primary);
    margin-top: var(--spacing-xs);
}

.newsletter-btn:hover {
    background-color: #ffffff;
    color: var(--color-dark);
    transform: scale(1.05);
}

.newsletter-btn:active {
    transform: scale(1.02);
}

.newsletter-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Newsletter Form Messages */
.newsletter-form .form-message {
    padding: 10px 14px;
    border-radius: 4px;
    margin-bottom: var(--spacing-sm);
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
    animation: slideIn 0.3s ease-out;
    width: 100%;
}

.newsletter-form .form-message-success {
    background-color: #10b981;
    color: var(--color-white);
    border: 1px solid #059669;
}

.newsletter-form .form-message-error {
    background-color: var(--color-accent);
    color: var(--color-white);
    border: 1px solid #b91c1c;
}

/* ============================================
   WHATSAPP BUTTON & POPUP
   ============================================ */

/* WhatsApp Container */
.whatsapp-container {
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    z-index: 1000;
}

.whatsapp-button {
    width: 64px;
    height: 64px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 2.1rem;
    transition: var(--transition-normal);
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    position: relative;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    animation: whatsappPulseHover 1.5s ease-in-out infinite;
}

/* WhatsApp Button Animation */
@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6),
                    0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6),
                    0 0 0 10px rgba(37, 211, 102, 0);
    }
}

@keyframes whatsappPulseHover {
    0%, 100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.7),
                    0 0 0 0 rgba(37, 211, 102, 0.8);
    }
    50% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.7),
                    0 0 0 12px rgba(37, 211, 102, 0);
    }
}

/* WhatsApp Popup */
.whatsapp-popup {
    position: absolute;
    bottom: 70px;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    z-index: 1001;
}

.whatsapp-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

/* WhatsApp Popup Card */
.whatsapp-popup-card {
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    border-radius: 20px;
    padding: 32px 28px;
    width: 320px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Close Button */
.whatsapp-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--color-white);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 10;
}

.whatsapp-popup-close:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Popup Content */
.whatsapp-popup-content {
    text-align: center;
    color: var(--color-white);
}

.whatsapp-popup-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-popup-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.whatsapp-popup-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.whatsapp-popup-support {
    font-size: 0.95rem;
    margin: 0 0 24px 0;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    line-height: 1.5;
}

.whatsapp-popup-button {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background-color: var(--color-white);
    border: 2px solid var(--color-white);
    border-radius: 12px;
    color: #25d366;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition-normal);
    letter-spacing: 0.5px;
    cursor: pointer;
}

.whatsapp-popup-button:hover {
    background-color: #25d366;
    color: var(--color-white);
    border-color: #25d366;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .whatsapp-container {
        bottom: var(--spacing-md);
        right: var(--spacing-md);
    }
    
    .whatsapp-button {
        width: 60px;
        height: 60px;
        font-size: 1.9rem;
    }
    
    .whatsapp-popup {
        bottom: 66px;
    }
    
    .whatsapp-popup-card {
        padding: 28px 24px;
        width: 300px;
        border-radius: 16px;
    }
    
    .whatsapp-popup-logo {
        width: 90px;
        height: 90px;
        margin-bottom: 18px;
    }
    
    .whatsapp-popup-title {
        font-size: 1.5rem;
    }
    
    .whatsapp-popup-support {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .whatsapp-popup-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-container {
        bottom: var(--spacing-sm);
        right: var(--spacing-sm);
    }
    
    .whatsapp-button {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }
    
    .whatsapp-popup {
        bottom: 62px;
        right: -10px;
    }
    
    .whatsapp-popup-card {
        padding: 24px 20px;
        width: 280px;
    }
    
    .whatsapp-popup-logo {
        width: 80px;
        height: 80px;
        margin-bottom: 16px;
    }
    
    .whatsapp-popup-title {
        font-size: 1.35rem;
    }
    
    .whatsapp-popup-support {
        font-size: 0.85rem;
        margin-bottom: 18px;
    }
}

/* Features Layout */
.features-wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
}

.features-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(50% - 18px);
    width: 2px;
    background: linear-gradient(to bottom, rgba(209,47,47,0), rgba(209,47,47,0.9), rgba(209,47,47,0));
}

.features-left {
    position: relative;
    z-index: 2;
}

.features-title {
    text-align: left;
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: var(--spacing-xl);
}

.features-title .accent-text {
    color: var(--color-accent);
}

.features-visual {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--color-dark);
    min-height: 320px;
}

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

.guarantee-badge {
    position: absolute;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    background: rgba(196, 30, 58, 0.9);
    color: var(--color-white);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 2rem;
        row-gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .top-info-items {
        flex-direction: column;
        gap: var(--spacing-xs);
        font-size: 0.75rem;
    }
    
    /* Hide desktop nav, show mobile toggle */
    .main-nav {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .hero-section {
        height: 60vh;
        min-height: 350px;
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 40px;
        letter-spacing: -1px;
        margin-bottom: 15px;
    }
    
    .hero-badge {
        top: 30px;
        margin-left: calc(-50vw + 20px);
        transform: translateX(-50%) translateY(30px);
        padding: 8px 18px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        margin-top: var(--spacing-sm);
    }
    
    .product-image {
        height: 350px;
        padding: 1rem;
    }
    
    .product-info {
        padding: var(--spacing-lg);
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .product-price-section {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
    }
    
    .product-cta {
        width: 100%;
    }
    
    .product-price {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 80px 0;
    }


    .cta-section {
        padding: var(--spacing-xl) var(--spacing-sm);
    }

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

    .cta-title-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        min-height: 250px;
        padding: var(--spacing-lg);
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-size-number {
        font-size: 5rem;
    }

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

    .cta-info-box {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .cta-info-content {
        padding: 0;
        margin-bottom: var(--spacing-md);
    }

    .cta-buttons {
        flex-direction: column;
        margin-top: var(--spacing-sm);
    }

    .cta-button-primary {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cta-button-primary,
    .cta-button-secondary {
        padding: var(--spacing-md);
        font-size: 0.75rem;
    }

    .cta-button-project {
        padding: var(--spacing-md);
        font-size: 0.75rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: var(--spacing-lg);
    }
    
    .footer-section {
        padding: 0;
    }

    .why-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .why-content {
        padding-right: 0;
    }
    
    .why-image-wrapper {
        height: 400px;
    }
    
    .guarantee-box {
        top: -20px;
        left: -20px;
    }
    
    .why-title {
        font-size: 32px;
    }
    
    .footer-legal {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-xs);
    }
    
    .newsletter-form {
        gap: var(--spacing-xs);
    }
    
    .newsletter-input {
        font-size: 0.875rem;
        padding: 0.625rem 0.875rem;
    }
    
    .newsletter-checkbox-label {
        font-size: 0.8rem;
    }
    
    .newsletter-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: var(--spacing-md);
        right: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
        letter-spacing: -1px;
        margin-bottom: 12px;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 8px 16px;
        top: 20px;
        margin-left: calc(-50vw + 20px);
        transform: translateX(-50%) translateY(30px);
    }
    
    .hero-cta {
        padding: 14px 30px;
        font-size: 12px;
    }
    
    .product-image {
        height: 280px;
        padding: 0.75rem;
    }
    
    .product-info {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .product-title {
        font-size: 1.25rem;
    }
    
    .product-description {
        font-size: 0.875rem;
        margin-bottom: var(--spacing-md);
    }
    
    .product-price-section {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
        padding-top: var(--spacing-md);
    }
    
    .product-price {
        font-size: 1.5rem;
    }
    
    .product-cta {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
    }
    
    .hero-section {
        height: 55vh;
        min-height: 300px;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .section-description {
        font-size: 0.8rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .why-image-wrapper {
        height: 300px;
    }
    
    .guarantee-box {
        top: -15px;
        left: -15px;
        padding: 18px;
    }
    
    .guarantee-box span:first-child {
        font-size: 32px;
    }
    
    .guarantee-box span:last-child {
        font-size: 10px;
    }
    
    .why-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .feature-list {
        gap: 30px;
    }
}

/* ============================================
   URBAN TIMELINE / STORY SECTION
   ============================================ */

.story-section {
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-primary) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.urban-timeline-wrapper {
    width: 100%;
    padding: 0 var(--spacing-xl);
    max-width: 1400px;
    margin: 0 auto;
}

.urban-timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    border: none;
    overflow: visible;
    box-shadow: none;
}

.urban-timeline-inner {
    position: relative;
    padding: 0;
    background: transparent;
}

/* Timeline Line */
.urban-timeline-line {
    position: absolute;
    left: 32px;
    top: 60px;
    bottom: 60px;
    width: 2px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        var(--color-accent) 10%, 
        var(--color-accent) 90%, 
        transparent 100%);
    z-index: 0;
}

@media (min-width: 768px) {
    .urban-timeline-line {
        left: 50%;
        transform: translateX(-50%);
        width: 3px;
        z-index: 0;
    }
}

.urban-timeline-items {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.urban-timeline-item {
    position: relative;
    z-index: 3;
}

.urban-timeline-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    min-height: 250px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    z-index: 3;
}

.urban-timeline-item:nth-child(1) {
    animation-delay: 0.2s;
}

.urban-timeline-item:nth-child(2) {
    animation-delay: 0.4s;
}

.urban-timeline-item:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .urban-timeline-item {
        flex-direction: row;
        align-items: center;
        min-height: 320px;
        gap: var(--spacing-xl);
    }
}

/* Timeline Dots */
.urban-timeline-dot {
    position: absolute;
    left: 32px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid var(--color-white);
    transform: translateX(-50%);
    z-index: 10;
    flex-shrink: 0;
    margin-top: 4px;
    box-shadow: 0 0 0 6px rgba(209, 47, 47, 0.15), 0 0 15px rgba(209, 47, 47, 0.3);
    transition: all 0.3s ease;
    background-color: var(--color-primary);
}

.urban-timeline-dot:hover {
    box-shadow: 0 0 0 8px rgba(209, 47, 47, 0.2), 0 0 20px rgba(209, 47, 47, 0.4);
}

@media (min-width: 768px) {
    .urban-timeline-dot {
        left: 50%;
        margin-top: 0;
        width: 24px;
        height: 24px;
        border-width: 4px;
        box-shadow: 0 0 0 8px rgba(209, 47, 47, 0.15), 0 0 20px rgba(209, 47, 47, 0.3);
    }
    
    .urban-timeline-dot:hover {
        box-shadow: 0 0 0 10px rgba(209, 47, 47, 0.2), 0 0 25px rgba(209, 47, 47, 0.4);
    }
    
    .urban-timeline-dot-white {
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.1), 0 0 20px rgba(255, 255, 255, 0.2);
    }
    
    .urban-timeline-dot-white:hover {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.15), 0 0 25px rgba(255, 255, 255, 0.3);
    }
}

.urban-timeline-dot-red {
    background-color: var(--color-accent);
}

.urban-timeline-dot-white {
    background-color: var(--color-white);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.1), 0 0 15px rgba(255, 255, 255, 0.2);
}

.urban-timeline-dot-white:hover {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.15), 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Timeline Text */
.urban-timeline-text {
    flex: 1;
    padding: var(--spacing-md);
    position: relative;
    z-index: 5;
    background: var(--color-secondary);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.urban-timeline-text:hover {
    background: var(--color-primary);
    border-color: rgba(209, 47, 47, 0.3);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3), 0 3px 6px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .urban-timeline-text {
        padding: var(--spacing-lg);
    }
}


.urban-timeline-text-left {
    text-align: left;
    padding-left: 64px;
    padding-right: var(--spacing-md);
    order: 2;
    margin-left: 0;
}

@media (min-width: 768px) {
    .urban-timeline-text-left {
        text-align: right;
        padding-left: var(--spacing-lg);
        padding-right: 80px;
        order: 1;
        flex: 0 0 45%;
        margin-right: 20px;
    }
}

.urban-timeline-text-right {
    text-align: left;
    padding-left: 64px;
    padding-right: var(--spacing-md);
    order: 2;
    margin-right: 0;
}

@media (min-width: 768px) {
    .urban-timeline-text-right {
        text-align: left;
        padding-left: 80px;
        padding-right: var(--spacing-lg);
        order: 3;
        flex: 0 0 45%;
        margin-left: 20px;
    }
}

.urban-timeline-title {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
    display: block;
    background: linear-gradient(135deg, var(--color-accent) 0%, #b91c1c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-primary);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .urban-timeline-title {
        font-size: 2rem;
        margin-bottom: var(--spacing-md);
    }
}

.urban-timeline-title .urban-highlight {
    color: var(--color-white);
    -webkit-text-fill-color: var(--color-white);
    display: inline-block;
    position: relative;
}

.urban-timeline-title .urban-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-accent);
    opacity: 0.6;
}

.urban-timeline-paragraph {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    margin-top: var(--spacing-sm);
}

@media (min-width: 768px) {
    .urban-timeline-paragraph {
        font-size: 1rem;
        line-height: 1.75;
    }
}

/* Timeline Images */
.urban-timeline-image {
    flex: 1;
    padding: var(--spacing-lg);
    position: relative;
    z-index: 5;
    width: 100%;
}

.urban-timeline-image-left {
    padding-left: 64px;
    padding-right: var(--spacing-md);
    order: 3;
    display: none;
}

@media (min-width: 768px) {
    .urban-timeline-image-left {
        display: block;
        padding-left: var(--spacing-lg);
        padding-right: 80px;
        order: 1;
        flex: 0 0 45%;
        margin-right: 20px;
    }
}

.urban-timeline-image-right {
    padding-left: 64px;
    padding-right: var(--spacing-md);
    order: 3;
    display: none;
}

@media (min-width: 768px) {
    .urban-timeline-image-right {
        display: block;
        padding-left: 80px;
        padding-right: var(--spacing-lg);
        order: 3;
        flex: 0 0 45%;
        margin-left: 20px;
    }
}

.urban-image-wrapper {
    width: 100%;
    aspect-ratio: 5 / 4;
    max-width: 420px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 32px;
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.2);
    background: rgba(20, 20, 20, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.urban-image-wrapper:hover {
    border-color: rgba(209, 47, 47, 0.6);
    transform: scale(1.08);
}

@media (min-width: 768px) {
    .urban-image-wrapper {
        max-width: 480px;
        aspect-ratio: 5 / 4;
    }
}

.urban-image-skew-left {
    transform: none;
}

@media (min-width: 768px) {
    .urban-image-skew-left {
        transform: none;
    }
}

.urban-image-skew-right {
    transform: none;
}

@media (min-width: 768px) {
    .urban-image-skew-right {
        transform: none;
    }
}

.urban-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .urban-timeline-line {
        left: 40px;
    }
    
    .urban-timeline-dot {
        left: 40px;
    }
    
    .urban-timeline-text-left,
    .urban-timeline-text-right {
        padding-left: 80px;
    }
    
    .urban-timeline-image-left,
    .urban-timeline-image-right {
        padding-left: 80px;
    }
}

@media (max-width: 768px) {
    .urban-timeline-wrapper {
        padding: 0 var(--spacing-md);
    }
    
    .urban-timeline-container {
        border: none;
    }
    
    .urban-timeline-inner {
        padding: 0;
    }
    
    .urban-timeline-line {
        left: 32px;
        top: 60px;
        bottom: 60px;
        width: 2px;
    }
    
    .urban-timeline-dot {
        left: 32px;
        width: 20px;
        height: 20px;
        border-width: 3px;
        margin-top: 4px;
    }
    
    .urban-timeline-items {
        gap: 60px;
    }
    
    .urban-timeline-text-left,
    .urban-timeline-text-right {
        padding-left: 64px;
        padding-right: var(--spacing-sm);
        text-align: left;
    }
    
    .urban-timeline-image-left,
    .urban-timeline-image-right {
        display: block;
        padding-left: 64px;
        padding-right: var(--spacing-sm);
        order: 3;
    }
    
    .urban-timeline-title {
        font-size: 1.35rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .urban-timeline-paragraph {
        font-size: 0.9rem;
        line-height: 1.65;
    }
    
    .urban-image-wrapper {
        max-width: 100%;
    }
    
    .urban-image-wrapper {
        aspect-ratio: 5 / 4;
        max-width: 100%;
        border-radius: 28px;
    }
    
    .urban-image-skew-left,
    .urban-image-skew-right {
        transform: none;
    }
}

@media (max-width: 480px) {
    .urban-timeline-wrapper {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    .urban-timeline-inner {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .urban-timeline-line {
        left: 32px;
        width: 4px;
    }
    
    .urban-timeline-dot {
        left: 32px;
        width: 24px;
        height: 24px;
        border-width: 4px;
    }
    
    .urban-timeline-text-left,
    .urban-timeline-text-right {
        padding-left: 48px;
        padding-right: var(--spacing-sm);
    }
    
    .urban-timeline-image-left,
    .urban-timeline-image-right {
        padding-left: 48px;
        padding-right: var(--spacing-sm);
    }
    
    .urban-timeline-title {
        font-size: 1.5rem;
        padding: 6px 12px;
    }
    
    .urban-timeline-paragraph {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .urban-image-wrapper {
        aspect-ratio: 16 / 9;
        max-width: 280px;
        border-radius: 8px;
    }
}

/* ============================================
   LEGAL/DISCLAIMER HERO SECTION
   ============================================ */

/* ============================================
   LEGAL PAGES STYLES (Disclaimer, Terms, etc.)
   ============================================ */

.disclaimer-hero-section {
    position: relative;
    width: 100%;
    height: 25vh;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent) 0%, #b91c1c 100%);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.disclaimer-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.disclaimer-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.disclaimer-hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: -2px;
    margin: 0;
}

/* Legal Content */
.legal-content-section {
    background-color: var(--color-primary);
    padding: var(--spacing-xxl) 0;
    min-height: 60vh;
}

.legal-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.legal-content {
    background-color: var(--color-secondary);
    border-radius: 12px;
    padding: var(--spacing-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.legal-section {
    margin-bottom: var(--spacing-xl);
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.5px;
}

.legal-content p {
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
    color: var(--color-light);
    line-height: 1.8;
    opacity: 0.9;
}

.legal-content p:last-child {
    margin-bottom: 0;
}

.legal-content strong {
    color: var(--color-white);
    font-weight: 600;
}

.legal-content ul,
.legal-content ol {
    margin: var(--spacing-md) 0;
    padding-left: var(--spacing-lg);
    color: var(--color-light);
    line-height: 1.8;
    opacity: 0.9;
}

.legal-content li {
    margin-bottom: var(--spacing-xs);
}

.legal-content li:last-child {
    margin-bottom: 0;
}

.legal-content a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #b91c1c;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .disclaimer-hero-section {
        height: 22vh;
        min-height: 180px;
    }
    
    .disclaimer-hero-title {
        font-size: 2.5rem;
        letter-spacing: -1.5px;
    }
    
    .legal-content {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .disclaimer-hero-section {
        height: 20vh;
        min-height: 160px;
    }
    
    .disclaimer-hero-title {
        font-size: 2rem;
        letter-spacing: -1px;
    }
    
    .legal-content-section {
        padding: var(--spacing-xl) 0;
    }
    
    .legal-content {
        padding: var(--spacing-md);
        border-radius: 8px;
    }
    
    .legal-heading {
        font-size: 1.25rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .legal-content p {
        font-size: 0.9375rem;
        line-height: 1.7;
    }
    
    .legal-section {
        margin-bottom: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .disclaimer-hero-section {
        height: 18vh;
        min-height: 140px;
    }
    
    .disclaimer-hero-title {
        font-size: 1.75rem;
        letter-spacing: -0.5px;
    }
    
    .legal-content {
        padding: var(--spacing-sm);
    }
    
    .legal-heading {
        font-size: 1.125rem;
    }
    
    .legal-content p {
        font-size: 0.875rem;
    }
}

/* ============================================
   COOKIE CONSENT BANNER (GDPR & ePrivacy Compliant)
   Soft & Friendly Design - Site Tema Renkleri
   ============================================ */

.cookie-banner {
    position: fixed;
    z-index: 10000;
    font-family: var(--font-primary);
}

/* Banner View - Bottom Left Corner */
.cookie-banner-view {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    max-width: 28rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.cookie-banner.show .cookie-banner-view {
    opacity: 1;
    transform: translateY(0);
}

.cookie-banner-container {
    background-color: rgba(24, 26, 31, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.cookie-banner-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--color-light);
    margin-bottom: 0.75rem;
}

.cookie-privacy-link-banner {
    color: var(--color-accent);
    text-decoration: underline;
    font-weight: 600;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.cookie-privacy-link-banner:hover {
    color: var(--color-white);
    text-decoration: none;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    margin-top: 0.5rem;
}

/* Preferences Modal View */
.cookie-preferences-view {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 380px;
    margin: 0 auto;
    margin-bottom: 1rem;
    margin-left: 1rem;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show .cookie-preferences-view {
    opacity: 1;
    transform: translateY(0);
}

.cookie-preferences-container {
    background-color: rgba(24, 26, 31, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.cookie-preferences-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.cookie-icon-wrapper {
    background-color: rgba(209, 47, 47, 0.2);
    color: var(--color-accent);
    padding: 0.625rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 2;
}

.cookie-close-btn {
    background: transparent;
    border: none;
    color: var(--color-light);
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-close-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-close-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.cookie-preferences-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.25rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-preferences-desc {
    font-size: 0.75rem;
    color: var(--color-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.8;
}

.cookie-preferences-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cookie-category-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0.75rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-fast);
    gap: 1rem;
}

.cookie-category-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cookie-category-desc {
    font-size: 0.75rem;
    color: var(--color-light);
    line-height: 1.5;
    opacity: 0.8;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.cookie-category-item:not(.cookie-category-locked):hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.cookie-category-locked {
    opacity: 0.7;
    cursor: not-allowed;
}

.cookie-category-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Modern Toggle Switch */
.cookie-toggle-wrapper {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.cookie-toggle-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-toggle-label::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    bottom: 3px;
    background-color: var(--color-white);
    border-radius: 50%;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle-input:checked + .cookie-toggle-label {
    background-color: var(--color-accent);
}

.cookie-toggle-input:checked + .cookie-toggle-label::before {
    transform: translateX(20px);
}

.cookie-toggle-disabled {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    cursor: not-allowed;
}

.cookie-toggle-disabled::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    right: 3px;
    bottom: 3px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

/* Buttons */
.cookie-btn {
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
}

.cookie-btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 2px 8px rgba(209, 47, 47, 0.3);
}

.cookie-btn-primary:hover {
    background-color: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(209, 47, 47, 0.4);
}

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

.cookie-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
}

.cookie-btn-save {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background-color: var(--color-accent);
    color: var(--color-white);
    border-radius: 16px;
    font-size: 0.875rem;
    box-shadow: 0 4px 16px rgba(209, 47, 47, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cookie-btn-save:hover {
    background-color: #b91c1c;
    transform: scale(0.98);
    box-shadow: 0 6px 20px rgba(209, 47, 47, 0.4);
}

.cookie-btn-save:active {
    transform: scale(0.96);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-banner-view {
        bottom: 0.5rem;
        left: 0.5rem;
        right: 0.5rem;
        max-width: calc(100% - 1rem);
    }
    
    .cookie-banner-container {
        padding: 1rem;
    }
    
    .cookie-banner-text {
        font-size: 0.8125rem;
    }
    
    .cookie-banner-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .cookie-preferences-view {
        bottom: 0;
        left: 0;
        right: 0;
        max-width: 100%;
        margin: 0;
        border-radius: 28px 28px 0 0;
    }
    
    .cookie-preferences-container {
        border-radius: 28px 28px 0 0;
        padding: 1.25rem;
    }
    
    .cookie-preferences-title {
        font-size: 1.125rem;
    }
    
    .cookie-preferences-desc {
        font-size: 0.7rem;
    }
    
    .cookie-category-name {
        font-size: 0.8125rem;
    }
    
    .cookie-category-desc {
        font-size: 0.7rem;
    }
    
    .cookie-category-item {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    .cookie-category-content {
        width: 100%;
    }
    
    .cookie-toggle-wrapper {
        align-self: flex-end;
    }
    
    .cookie-toggle-wrapper {
        width: 40px;
        height: 22px;
    }
    
    .cookie-toggle-label::before {
        width: 16px;
        height: 16px;
    }
    
    .cookie-toggle-input:checked + .cookie-toggle-label::before {
        transform: translateX(18px);
    }
    
    .cookie-toggle-disabled::before {
        width: 16px;
        height: 16px;
    }
}
/* ============================================
   MOBILE OPTIMIZATION
   Desktop görünümüne dokunmadan sadece mobil için optimizasyonlar
   ============================================ */

/* ============================================
   HEADER & NAVIGATION MOBILE OPTIMIZATION
   ============================================ */

@media (max-width: 768px) {
    /* Header Container */
    .header-content {
        padding: 0 var(--spacing-sm);
        gap: var(--spacing-sm);
    }
    
    /* Logo */
    .logo {
        gap: 8px;
    }
    
    .logo img {
        height: 45px;
        max-width: 150px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    /* Top Info Bar */
    .top-info-bar-content {
        flex-direction: column;
        gap: var(--spacing-xs);
        padding: 0.5rem var(--spacing-sm);
    }
    
    .top-info-items {
        flex-direction: column;
        gap: var(--spacing-xs);
        font-size: 0.75rem;
        width: 100%;
        text-align: center;
    }
    
    .language-switcher {
        justify-content: center;
        width: 100%;
    }
    
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 0;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 4px;
        cursor: pointer;
        z-index: 100000;
        position: relative;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .mobile-menu-toggle:active {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .mobile-menu-toggle i {
        font-size: 1.25rem;
        pointer-events: none;
    }
    
    /* Mobile Navigation - Fixed Overlay */
    .main-nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background-color: rgba(24, 26, 31, 0.98) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        padding: var(--spacing-xl) var(--spacing-md) !important;
        z-index: 999999 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        transform: translateX(-100%) !important;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        gap: var(--spacing-md) !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: none !important;
        margin: 0 !important;
        border: none !important;
    }
    
    .main-nav.active {
        transform: translateX(0) !important;
        pointer-events: auto !important;
    }
    
    /* Ensure mobile menu toggle is always on top */
    .mobile-menu-toggle {
        z-index: 1000000 !important;
        position: relative !important;
    }
    
    .nav-link {
        width: 100%;
        padding: var(--spacing-sm) 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Dropdown in Mobile */
    .dropdown {
        width: 100%;
    }
    
    .dropdown .nav-link {
        border-bottom: none;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: rgba(32, 35, 42, 0.5);
        margin-top: var(--spacing-xs);
        margin-left: var(--spacing-md);
        border-radius: 4px;
        padding: var(--spacing-xs) 0;
        min-width: auto;
        width: calc(100% - var(--spacing-md));
    }
    
    .dropdown-item {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.9rem;
    }
}

/* ============================================
   HERO SECTION MOBILE OPTIMIZATION
   ============================================ */

@media (max-width: 768px) {
    .hero-section {
        height: 50vh;
        min-height: 300px;
        background-attachment: scroll;
    }
    
    .hero-content {
        padding: 0 var(--spacing-md);
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: var(--spacing-md);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-cta {
        width: 100%;
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 45vh;
        min-height: 250px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
}

/* ============================================
   PRODUCT GRID MOBILE OPTIMIZATION
   ============================================ */

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-sm);
    }
    
    .product-card {
        width: 100%;
        max-width: 100%;
    }
    
    .product-image {
        height: 250px;
        padding: var(--spacing-sm);
    }
    
    .product-info {
        padding: var(--spacing-md);
    }
    
    .product-title {
        font-size: 1.25rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .product-description {
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: var(--spacing-md);
    }
    
    .product-price-section {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }
    
    .product-price {
        font-size: 1.5rem;
    }
    
    .product-cta {
        width: 100%;
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .product-image {
        height: 200px;
    }
    
    .product-title {
        font-size: 1.125rem;
    }
    
    .product-price {
        font-size: 1.25rem;
    }
}

/* ============================================
   FOOTER MOBILE OPTIMIZATION
   ============================================ */

@media (max-width: 768px) {
    .footer {
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--spacing-sm);
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
    
    .newsletter-input {
        width: 100%;
    }
}

/* ============================================
   CONTACT FORM MOBILE OPTIMIZATION
   ============================================ */

@media (max-width: 768px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .contact-form-card {
        padding: var(--spacing-md);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .form-input,
    .form-textarea,
    .form-select {
        width: 100%;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .form-submit {
        width: 100%;
        padding: var(--spacing-md) var(--spacing-lg);
    }
}

/* ============================================
   PRODUCT DETAIL MOBILE OPTIMIZATION
   ============================================ */

@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .product-detail-image {
        width: 100%;
        max-width: 100%;
    }
    
    .product-detail-info {
        padding: var(--spacing-md);
    }
    
    .product-detail-title {
        font-size: 1.75rem;
    }
    
    .product-detail-price {
        font-size: 1.75rem;
    }
    
    .product-detail-cta {
        width: 100%;
        padding: var(--spacing-md) var(--spacing-lg);
    }
}

/* ============================================
   COOKIE BANNER MOBILE OPTIMIZATION
   ============================================ */

@media (max-width: 768px) {
    .cookie-banner-view {
        bottom: 0.5rem;
        left: 0.5rem;
        right: 0.5rem;
        max-width: calc(100% - 1rem);
    }
    
    .cookie-banner-container {
        padding: var(--spacing-md);
    }
    
    .cookie-banner-text {
        font-size: 0.8125rem;
        line-height: 1.5;
    }
    
    .cookie-banner-actions {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .cookie-btn {
        width: 100%;
        font-size: 0.8125rem;
    }
    
    .cookie-preferences-view {
        bottom: 0;
        left: 0;
        right: 0;
        max-width: 100%;
        margin: 0;
        border-radius: 28px 28px 0 0;
    }
    
    .cookie-preferences-container {
        border-radius: 28px 28px 0 0;
        padding: var(--spacing-md);
    }
}

/* ============================================
   WHATSAPP BUTTON MOBILE OPTIMIZATION
   ============================================ */

@media (max-width: 768px) {
    .whatsapp-container {
        bottom: var(--spacing-md);
        right: var(--spacing-md);
    }
    
    .whatsapp-button {
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-popup {
        bottom: 80px;
        right: var(--spacing-sm);
        max-width: calc(100vw - 2rem);
    }
}

/* ============================================
   GENERAL TYPOGRAPHY & SPACING MOBILE
   ============================================ */

@media (max-width: 768px) {
    /* Typography */
    h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    h4 {
        font-size: 1.25rem;
    }
    
    /* Container */
    .container {
        padding: 0 var(--spacing-md);
    }
    
    /* Sections */
    .section {
        padding: var(--spacing-xl) 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .section-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: var(--spacing-md);
    }
    
    /* Buttons */
    .btn {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.875rem;
        width: 100%;
        max-width: 300px;
    }
    
    /* Grids */
    .grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    /* Cards */
    .card {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .section {
        padding: var(--spacing-lg) 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

/* ============================================
   UTILITY CLASSES FOR MOBILE
   ============================================ */

@media (max-width: 768px) {
    .mobile-hidden {
        display: none !important;
    }
    
    .mobile-full-width {
        width: 100% !important;
    }
    
    .mobile-center {
        text-align: center !important;
    }
    
    .mobile-no-padding {
        padding: 0 !important;
    }
    
    .mobile-stack {
        flex-direction: column !important;
    }
}
