/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 50%, #ef4444 100%);
    width: 100%;
    position: relative;
}

.container {
    width: 100%;
    min-height: 100vh;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 50%, #ef4444 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    max-width: 100vw;
}

/* Nike Swoosh Background for Hero Section */
.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('Adobe\ Express\ -\ file\ \(4\).png');
    background-size: 30% auto;
    background-position: 55% 21%;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    z-index: 10;
    position: relative;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: white;
}

.logo-image {
    height: 75px;
    width: auto;
    margin-bottom: 8px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Footer specific logo styling */
.site-footer .logo-image {
    height: 75px;
    margin-bottom: 12px;
}

.site-footer .logo-subtext {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.4px;
    margin-bottom: 16px;
}

/* Center the logo section */
.footer-section:first-child {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
    margin-bottom: 20px;
}

.site-footer .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.logo-subtext {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.8;
    letter-spacing: 1.4px;
    margin-top: -2px;
}

.navigation {
    display: flex;
    gap: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link.active,
.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.15);
}

.user-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 10px 18px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.user-section:hover {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.login-icon {
    font-size: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
    margin-top: -1px;
}

/* Keep login link white across all states without disconnecting */
.user-section a,
.user-section a:link,
.user-section a:visited,
.user-section a:hover,
.user-section a:active {
    color: #fff;
    text-decoration: none;
}

.user-section a:focus {
    outline: none;
}

.user-section svg {
    fill: currentColor;
    color: #fff;
}

.user-section .login-text {
    color: #fff;
}

/* Main Content */
.main-content {
    display: flex;
    flex: 1;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    height: 100%;
}

.content-left {
    position: absolute;
    top: 0;
    left: 0;
    color: white;
    z-index: 15;
    width: 300px;
}

/* JUST DO IT Styling */
.just-do-it-text {
    font-family: 'Futura Extra Bold Condensed', 'Futura', 'Arial Black', sans-serif;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 0.9;
    font-stretch: condensed;
}

.main-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    opacity: 0.9;
}

.product-description {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.7;
    line-height: 1.4;
}

.content-right {
    flex: 1;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Product Container */
.product-container {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Size Selector */
.size-selector {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.size-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.size-btn:hover,
.size-btn.active {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

/* Product Display */
.product-display {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.product-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-item {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(150px) scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-item.active {
    opacity: 1;
    transform: translateX(0) scale(1.3);
}

.product-item.prev {
    opacity: 0;
    transform: translateX(-150px) scale(0.7);
}

.product-item.next {
    opacity: 0;
    transform: translateX(150px) scale(0.7);
}

.product-image {
    width: 400px;
    height: 240px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: all 0.6s ease;
}

.product-item.active .product-image {
    animation: float 6s ease-in-out infinite;
}

/* Custom Nike Shoe Design */
.shoe-container {
    width: 400px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.nike-shoe {
    position: relative;
    width: 450px;
    height: 200px;
    transform: rotate(-15deg);
    transition: all 0.6s ease;
}

.shoe-body {
    position: absolute;
    width: 100%;
    height: 70%;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 50%, #1a1a1a 100%);
    border-radius: 80px 20px 40px 60px;
    top: 20%;
    left: 0;
    box-shadow: inset 0 10px 20px rgba(255, 255, 255, 0.1);
}

.nike-swoosh {
    position: absolute;
    width: 80px;
    height: 40px;
    top: 40%;
    left: 40%;
    background: #fff;
    clip-path: polygon(0 80%, 100% 20%, 90% 40%, 20% 85%);
    opacity: 0.9;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.shoe-sole {
    position: absolute;
    width: 90%;
    height: 30%;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    border-radius: 60px 15px 20px 40px;
    bottom: 0;
    left: 5%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.air-bubble {
    position: absolute;
    width: 50px;
    height: 25px;
    background: radial-gradient(circle, rgba(255, 100, 100, 0.6) 0%, rgba(255, 150, 100, 0.8) 100%);
    border-radius: 50%;
    bottom: 5px;
    right: 15%;
    filter: blur(1px);
    animation: pulse 2s ease-in-out infinite;
}

/* Shoe Color Variants */
.red-shoe .shoe-body {
    background: linear-gradient(135deg, #1a1a1a 0%, #ff4141 30%, #ff6647 70%, #1a1a1a 100%);
}

.red-shoe .air-bubble {
    background: radial-gradient(circle, rgba(255, 100, 100, 0.8) 0%, rgba(255, 200, 100, 0.9) 100%);
}

.blue-shoe .shoe-body {
    background: linear-gradient(135deg, #1a1a1a 0%, #4141ff 30%, #6647ff 70%, #1a1a1a 100%);
}

.blue-shoe .air-bubble {
    background: radial-gradient(circle, rgba(100, 100, 255, 0.8) 0%, rgba(100, 200, 255, 0.9) 100%);
}

.green-shoe .shoe-body {
    background: linear-gradient(135deg, #1a1a1a 0%, #41ff74 30%, #47ff6a 70%, #1a1a1a 100%);
}

.green-shoe .air-bubble {
    background: radial-gradient(circle, rgba(100, 255, 100, 0.8) 0%, rgba(100, 255, 200, 0.9) 100%);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Real Nike Image Styling */
.nike-real-image {
    width: 700px;
    height: 360px;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
    transition: all 0.8s ease;
    transform: rotate(-10deg);
    opacity: 1 !important;
    background: transparent;
}

.product-item.active .nike-real-image {
    animation: float 6s ease-in-out infinite;
    opacity: 1 !important;
}

.product-item .nike-real-image {
    opacity: 1 !important;
}

/* Product Shadow */
.product-shadow {
    position: absolute;
    bottom: 40px;
    width: 300px;
    height: 60px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: perspective(100px) rotateX(60deg);
    opacity: 0.6;
}

/* Ellipse Slider */
.ellipse-slider {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 160px;
    z-index: 12;
    overflow: visible;
}

.ellipse-track {
    position: relative;
    width: 100%;
    height: 200px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: none;
    top: -40px;
}

/* Ellipse Navigation Buttons */
.ellipse-nav-btn {
    position: absolute;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 16px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ellipse-prev {
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
}

.ellipse-next {
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
}

.ellipse-nav-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.ellipse-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* Ellipse Center Navigation Button */
.ellipse-center-btn {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 14px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 2px;
}

.ellipse-center-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.ellipse-center-btn:active {
    transform: translateX(-50%) scale(0.95);
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Bottom Section */
.bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    z-index: 10;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    padding: 0 40px;
}

.product-counter {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.counter-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 16px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.counter-display {
    color: white;
    font-size: 16px;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

.buy-now-btn {
    background: white;
    color: #dc2626;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.buy-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    background: #f8f8f8;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 16px 20px;
    }

    .main-content {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .content-left {
        position: static;
        text-align: center;
        width: 100%;
        margin-bottom: 20px;
    }

    .main-title {
        font-size: 28px;
    }

    .navigation {
        gap: 20px;
    }

    .nike-real-image {
        width: 500px;
        height: 240px;
    }

    .product-item.active {
        transform: translateX(0) scale(1.1);
    }

    .size-selector {
        position: static;
        margin-bottom: 20px;
    }

    .bottom-section {
        position: static;
        margin-top: 20px;
        padding: 0;
    }

    .ellipse-slider {
        bottom: 70px;
        width: 550px;
        height: 125px;
    }

    .ellipse-track {
        height: 160px;
        top: -35px;
        border-width: 1px;
    }
}

/* --- Shared Page Styles --- */
.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
}

.section {
    margin: 80px 0;
}

.grid {
    display: grid;
    gap: 24px;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Hero Sections */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(185, 28, 28, 0.3) 0%, rgba(37, 99, 235, 0.3) 100%);
    width: 100%;
    box-sizing: border-box;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    color: white;
}

.hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: white;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(185, 28, 28, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
    opacity: 0.8;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    width: 100%;
}

/* Position Get In Touch button lower */
.hero-content .btn {
    margin-top: 40px;
    display: inline-block;
}

/* Enhanced Cards */
.card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover:not([data-tilt]) {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.card:hover::before {
    opacity: 1;
}

.card[data-tilt] {
    transform-style: preserve-3d;
}

/* Product Cards */
.product-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover img {
    transform: scale(1.1) rotate(-2deg);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.product-card:hover .product-overlay {
    transform: translateY(0);
}

/* Pricing Cards */
.pricing-card {
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #fff;
}

.pricing-card .price {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 24px 0;
}

.pricing-card .features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.pricing-card .features li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Testimonials */
.testimonial {
    text-align: center;
    padding: 40px;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    font-weight: 600;
    color: #fff;
}

.testimonial-role {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Reveal utility */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.revealed {
    opacity: 1;
    transform: none;
}

/* Force visibility for all main content sections */
.hero .hero-content[data-reveal],
.section [data-reveal]:not([data-tilt]),
.section h2[data-reveal],
.section .grid[data-stagger],
.section .grid[data-stagger] > *:not([data-tilt]),
.page-wrapper .section [data-reveal]:not([data-tilt]),
.page-wrapper .section h2[data-reveal],
.page-wrapper .section .grid[data-stagger],
.page-wrapper .section .grid[data-stagger] > *:not([data-tilt]) {
    opacity: 1 !important;
    transform: none !important;
}

/* Preserve tilt functionality */
[data-tilt] {
    opacity: 1 !important;
    /* Don't force transform: none for tilt elements */
}

.card[data-tilt] {
    transform-style: preserve-3d;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.card[data-tilt]:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
    /* Transform will be handled by JavaScript */
}

/* Keep animations only for specific hero elements if needed */
.container .hero [data-reveal]:not(.hero-content) {
    opacity: 0;
    transform: translateY(40px);
}

[data-reveal="fade-up"] {
    transform: translateY(60px);
}

[data-reveal="fade-left"] {
    transform: translateX(-60px);
}

[data-reveal="fade-right"] {
    transform: translateX(60px);
}

[data-reveal="scale"] {
    transform: scale(0.8);
}

/* Stagger animation */
[data-stagger] {
    transition-delay: calc(var(--stagger-index, 0) * 0.1s);
}

/* Floating elements */
.float {
    animation: float 6s ease-in-out infinite;
}

.float-slow {
    animation: float-slow 8s ease-in-out infinite;
}

@keyframes float-slow {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Enhanced Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn:hover::before {
    opacity: 1;
}

.btn.primary {
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    color: #111;
    border-color: transparent;
}

.btn.primary:hover {
    background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Form Elements */
input,
textarea {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 14px 18px;
    color: #fff;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
    pointer-events: auto !important;
    user-select: text !important;
    -webkit-user-select: text !important;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

/* Footer */
.site-footer {
    padding: 60px 24px 40px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.newsletter {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.newsletter input {
    flex: 1;
    min-width: 0;
}

.muted {
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 50vh;
    }

    .card {
        padding: 24px;
    }

    .section {
        margin: 60px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 24px;
    }

    .navigation {
        display: none;
    }

    .header {
        margin-bottom: 20px;
    }

    .nike-real-image {
        width: 400px;
        height: 180px;
    }

    .product-item.active {
        transform: translateX(0) scale(1);
    }

    .ellipse-slider {
        bottom: 80px;
        width: 450px;
        height: 105px;
    }

    .ellipse-track {
        height: 120px;
        top: -15px;
        border-width: 1px;
    }
}

/* Additional styles for About and Contact sections */
html {
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

input,
textarea,
select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 14px 18px;
    color: white;
    font-family: inherit;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
    pointer-events: auto;
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

/* Contact form specific styling */
.contact-form input,
.contact-form textarea,
.contact-form select {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    cursor: text !important;
    z-index: 10;
    position: relative;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6) !important;
    background: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
    color: white !important;
}

/* Enhanced contact form focus states */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: rgba(255, 255, 255, 0.7) !important;
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn {
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    color: #111;
    border: none;
    border-radius: 50px;
    padding: 14px 28px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
}

.btn:hover {
    background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.product-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    color: white;
}

.product-overlay h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 600;
}

.product-overlay p {
    margin: 0;
    opacity: 0.9;
}

.muted {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.site-footer {
    padding: 60px 24px 40px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
    font-weight: 400;
}

.footer-links a:hover {
    color: white;
    transform: translateX(4px);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.testimonial {
    text-align: center;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author {
    font-weight: 600;
}

.testimonial-role {
    opacity: 0.7;
    font-size: 12px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(185, 28, 28, 0.2) 0%, rgba(37, 99, 235, 0.2) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.float {
    animation: float 3s ease-in-out infinite;
}

.float-slow {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .header {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .navigation {
        gap: 16px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .card {
        padding: 24px;
    }
}

/* Contact Method Icons Styling with Glassmorphism */
.icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(220, 38, 38, 0.1) 0%, 
        rgba(239, 68, 68, 0.05) 50%, 
        rgba(185, 28, 28, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.icon-container i {
    font-size: 28px;
    color: #dc2626;
    z-index: 1;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(220, 38, 38, 0.2));
}

.card:hover .icon-container {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(25px);
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 
        0 16px 40px rgba(220, 38, 38, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(220, 38, 38, 0.1);
}

.card:hover .icon-container::before {
    opacity: 1;
}

.card:hover .icon-container i {
    color: #ef4444;
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(220, 38, 38, 0.3));
}

/* Individual icon hover animations */
.card:hover .fa-comments {
    animation: bounce 0.6s ease-in-out;
}

.card:hover .fa-phone-alt {
    animation: ring 0.6s ease-in-out;
}

.card:hover .fa-envelope {
    animation: shake 0.6s ease-in-out;
}

.card:hover .fa-map-marker-alt {
    animation: pulse 0.6s ease-in-out;
}

/* Glassmorphism enhanced card styling */
.card {
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: scale(1.1); }
    40%, 43% { transform: translateY(-6px) scale(1.1); }
    70% { transform: translateY(-3px) scale(1.1); }
    90% { transform: translateY(-1px) scale(1.1); }
}

@keyframes ring {
    0% { transform: rotate(0deg) scale(1.1); }
    10% { transform: rotate(-8deg) scale(1.1); }
    20% { transform: rotate(8deg) scale(1.1); }
    30% { transform: rotate(-8deg) scale(1.1); }
    40% { transform: rotate(8deg) scale(1.1); }
    50% { transform: rotate(0deg) scale(1.1); }
    100% { transform: rotate(0deg) scale(1.1); }
}

@keyframes shake {
    0% { transform: translate(0, 0) scale(1.1); }
    10% { transform: translate(-1px, 0) scale(1.1); }
    20% { transform: translate(1px, 0) scale(1.1); }
    30% { transform: translate(-1px, 0) scale(1.1); }
    40% { transform: translate(1px, 0) scale(1.1); }
    50% { transform: translate(0, 0) scale(1.1); }
    100% { transform: translate(0, 0) scale(1.1); }
}

@keyframes pulse {
    0% { transform: scale(1.1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1.1); }
}