/* Reset and Base Styles - Updated Footer */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-dark: #1a1a1a;
    --primary-light: #2d2d2d;
    --accent-gold: #d4af37;
    --accent-orange: #ff6b35;
    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --text-muted: #a0a0a0;
    --earth-brown: #8b4513;
    --forest-green: #2d5016;
    --stone-gray: #696969;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 20px;
    --border-radius: 12px;
    
    /* Animations */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth !important;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-white);
    background-color: var(--primary-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-image {
    height: 150px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 2px;
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    margin: 3px 0;
    transition: var(--transition-smooth);
}

/* Mobile Menu - Hidden on Desktop */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    padding-top: 3rem;
    gap: 0;
    transition: left 0.4s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-nav-link {
    width: 100%;
    padding: 1.5rem 2rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
}

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

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-video video.loaded {
    opacity: 1;
}

.hero-fallback-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.7),
        rgba(45, 45, 45, 0.5)
    ), url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.7) 0%,
        rgba(45, 45, 45, 0.5) 50%,
        rgba(26, 26, 26, 0.8) 100%
    );
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(50px);
}

.title-line {
    display: block;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
}

.cta-primary, .cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    color: var(--primary-dark);
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
    transition: var(--transition-smooth);
    z-index: -1;
}

.cta-primary:hover::before {
    left: 0;
}

.cta-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--accent-gold);
}

.cta-secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}


/* Mission Story Section */
.mission-story {
    position: relative;
    padding: var(--section-padding);
    overflow: hidden;
    background: var(--primary-dark);
}

.parallax-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: -1;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.parallax-bg, .parallax-mid {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.parallax-bg {
    z-index: -2;
}

.parallax-mid {
    z-index: -1;
    opacity: 0.4;
}

.mission-content {
    position: relative;
    z-index: 1;
}

/* Mission Header */
.mission-header {
    text-align: center;
    margin-bottom: 6rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 4rem 2rem;
}

.mission-header .section-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.mission-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* Global Section Titles */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.section-title.centered {
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Section Subtitles */
.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto 3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.mission-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    max-width: 600px;
    margin: 0 auto 0;
    opacity: 0.95;
}


/* Mission Visual Section */
.mission-visual-section {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.mission-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 2rem 3rem 2rem;
    background: rgba(26, 26, 26, 0.85);
    border-radius: var(--border-radius);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    transition: var(--transition-smooth);
    position: relative;
    overflow: visible;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.08),
        transparent
    );
    transition: var(--transition-smooth);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover::after {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.25);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    padding-bottom: 0.2rem;
}

.stat-label {
    color: var(--text-white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    line-height: 1.4;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    opacity: 0.95;
}

.mission-video {
    position: relative;
}

.video-container {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.9),
        rgba(45, 45, 45, 0.9)
    ), url('https://images.unsplash.com/photo-1464822759844-d150baec0494?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    min-height: 450px;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    color: var(--text-white);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(2px);
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.1),
        rgba(255, 107, 53, 0.1)
    );
    opacity: 0;
    transition: var(--transition-smooth);
}

.video-placeholder:hover::before {
    opacity: 1;
}

.video-placeholder:hover {
    transform: scale(1.02);
    border-color: var(--accent-gold);
}

.play-button {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-bounce);
    z-index: 1;
    position: relative;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.play-button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
}

.video-placeholder:hover .play-button::before {
    opacity: 0.3;
}

.play-button i {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-left: 6px;
    font-weight: 900;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.video-info {
    text-align: left;
    z-index: 1;
}

.video-info h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.video-info span {
    color: var(--text-light);
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Core Values Section */
.core-values {
    padding: var(--section-padding);
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.8),
        rgba(45, 45, 45, 0.7)
    ), url('https://images.unsplash.com/photo-1551632811-561732d1e306?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.values-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 60%;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(212, 175, 55, 0.3),
        transparent
    );
    z-index: 0;
}

/* Symmetrical 2-3 layout for 5 cards */
.value-card:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1;
}

.value-card:nth-child(2) {
    grid-column: 3 / 5;
    grid-row: 1;
}

.value-card:nth-child(3) {
    grid-column: 5 / 7;
    grid-row: 1;
}

.value-card:nth-child(4) {
    grid-column: 2 / 4;
    grid-row: 2;
}

.value-card:nth-child(5) {
    grid-column: 4 / 6;
    grid-row: 2;
}

.value-card {
    position: relative;
    padding: 3rem 2rem;
    background: rgba(26, 26, 26, 0.9);
    border-radius: var(--border-radius);
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    backdrop-filter: blur(15px);
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.value-card:hover::before {
    opacity: 0.1;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-bounce);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

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

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-gold);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.value-card p {
    color: var(--text-white);
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.value-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(100%);
    transition: var(--transition-smooth);
    padding: 2rem;
}

.value-card:hover .value-overlay {
    opacity: 1;
    transform: translateY(0);
}

.overlay-content {
    text-align: center;
    color: var(--primary-dark);
}

.overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.overlay-content p {
    line-height: 1.6;
    color: var(--primary-dark);
}

/* Products Section */
.products {
    padding: var(--section-padding);
    background: var(--primary-dark);
}

/* For Sale Ribbon */
.for-sale-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    color: var(--primary-dark);
    padding: 8px 45px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transform: rotate(45deg);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    z-index: 10;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
    transform: scale(1);
    will-change: transform;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    padding: 2rem;
}

.product-card[data-product="hat"] .product-image img {
    object-fit: cover;
    padding: 0.5rem;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.8) 0%,
        rgba(212, 175, 55, 0.3) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    text-align: center;
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.coming-soon {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.product-card:hover .coming-soon {
    background: linear-gradient(135deg, var(--accent-gold), #e0a82e);
    transform: scale(1.05);
}

.products-cta {
    text-align: center;
}

/* Community Section */
.community {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
}

.lifestyle-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.slider-container {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.8s ease, transform 0.8s ease;
    visibility: hidden;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    z-index: 1;
}

.slide-image {
    position: relative;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    padding: 3rem;
    background: rgba(45, 45, 45, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.slide-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.slide-author {
    color: var(--text-muted);
    font-weight: 500;
}

.slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--accent-gold);
    background: transparent;
    color: var(--accent-gold);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--accent-gold);
    transform: scale(1.2);
}

/* Vision Callout Section */
.vision-callout {
    padding: var(--section-padding);
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.9),
        rgba(45, 45, 45, 0.8)
    ), url('images/Generated Image October 08, 2025 - 7_53PM.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: var(--text-white);
    text-align: center;
}

.vision-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 107, 53, 0.1));
    z-index: 0;
}

.callout-content {
    position: relative;
    z-index: 1;
}

.vision-header {
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.vision-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.vision-description {
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--text-light);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

.vision-gallery {
    margin-top: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    aspect-ratio: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
}

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

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--primary-dark) 0%, #0d0f0d 100%);
    position: relative;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.contact-header h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 5rem;
    align-items: start;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(45, 45, 45, 0.4));
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-method:hover::before {
    left: 100%;
}

.contact-method:hover {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(45, 45, 45, 0.6));
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.method-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.contact-method:hover .method-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.method-icon i {
    font-size: 1.35rem;
    color: var(--primary-dark);
}

.method-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.method-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.method-value {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-white);
}

/* WhatsApp Contact Styling */
.whatsapp-contact {
    border: 1px solid rgba(37, 211, 102, 0.3) !important;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.08), rgba(45, 45, 45, 0.4)) !important;
}

.whatsapp-contact:hover {
    border-color: rgba(37, 211, 102, 0.5) !important;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3) !important;
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
}

.whatsapp-number {
    color: #25D366 !important;
    font-weight: 700 !important;
}

.whatsapp-hint {
    display: block;
    font-size: 0.75rem;
    color: #25D366;
    margin-top: 0.25rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Highlight animation for WhatsApp contact */
@keyframes highlightPulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
        border-color: rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
        border-color: rgba(37, 211, 102, 0.8);
        transform: translateY(-6px) scale(1.02);
    }
}

.highlight-pulse {
    animation: highlightPulse 1s ease-in-out 2;
}

/* Contact Form */
.contact-form {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(45, 45, 45, 0.4));
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(20px);
    min-height: 550px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0.5;
}

.contact-form iframe {
    border-radius: 12px;
    background: transparent;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--accent-gold);
    color: var(--primary-dark);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--accent-gold), #e0a82e);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(4px);
}

/* Footer */
.footer {
    background: #0f0f0f;
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-quote {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    padding: 1rem 0;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 1rem;
    font-style: normal;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
    font-weight: 400;
}

.footer-column a:hover {
    color: var(--text-white);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.8rem;
}

.legal-links a:hover {
    color: var(--text-white);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: var(--transition-smooth);
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Product Modal */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow: hidden;
}

.product-modal.active {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, var(--secondary-dark), var(--primary-dark));
    border-radius: 20px;
    max-width: 1400px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 3.5rem;
    z-index: 10001;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transform: translateY(0);
    will-change: transform;
    -webkit-overflow-scrolling: touch;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
}

.modal-close:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.modal-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.modal-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.modal-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    align-items: start;
}



.modal-gallery-item:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}


.modal-gallery-item {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    will-change: transform, opacity;
    display: flex;
    flex-direction: column;
    transform: none !important;
}


.modal-gallery-item img {
    width: 100%;
    height: 450px;
    object-fit: contain;
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: block !important;
    position: relative;
    z-index: 2;
    opacity: 1 !important;
    visibility: visible !important;
}

.modal-gallery-item-label {
    text-align: center;
    margin-top: 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 3;
}

/* Modal CTA Button */
.modal-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.modal-purchase-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    color: var(--primary-dark);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.modal-purchase-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
}

.modal-purchase-btn i {
    transition: transform 0.3s ease;
}

.modal-purchase-btn:hover i {
    transform: translateX(5px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Loading States */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Improved Button Styles */
.cta-primary, .cta-secondary {
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.cta-primary:active, .cta-secondary:active {
    transform: scale(0.98);
}

/* Tablet Layout */
@media (max-width: 1024px) and (min-width: 769px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .value-card:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1;
    }
    
    .value-card:nth-child(2) {
        grid-column: 3 / 5;
        grid-row: 1;
    }
    
    .value-card:nth-child(3) {
        grid-column: 1 / 3;
        grid-row: 2;
    }
    
    .value-card:nth-child(4) {
        grid-column: 3 / 5;
        grid-row: 2;
    }
    
    .value-card:nth-child(5) {
        grid-column: 2 / 4;
        grid-row: 3;
    }
    
    .modal-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .modal-gallery-item img {
        height: 380px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Navigation - Hide Desktop Nav Links */
    .nav-left,
    .nav-right {
        display: none !important;
    }
    
    /* Adjust nav container for mobile */
    .nav-container {
        justify-content: space-between !important;
        padding: 0 1.5rem !important;
        height: 70px;
    }
    
    /* Adjust logo for mobile */
    .nav-logo-image {
        height: 60px !important;
        max-width: 150px !important;
    }
    
    /* Show mobile menu toggle */
    .nav-toggle {
        display: flex !important;
        z-index: 1001;
    }
    
    /* Show mobile menu */
    .mobile-menu {
        display: flex;
        top: 70px;
        height: calc(100vh - 70px);
    }
    
    .mobile-menu.active {
        left: 0;
    }
    
    /* Hamburger animation */
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .mission-header {
        margin-bottom: 4rem;
        padding: 2rem 1rem;
    }
    
    .mission-header .section-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .mission-subtitle {
        font-size: 1.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .mission-visual-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .mission-stats {
        order: 2;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    
    .mission-video {
        order: 1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .modal-content {
        padding: 2rem;
        max-height: 95vh;
    }
    
    .modal-header h2 {
        font-size: 1.75rem;
    }
    
    .modal-gallery {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .modal-gallery-item img {
        height: 350px;
    }
    
    .modal-gallery-item-label {
        font-size: 0.85rem;
    }
    
    .slide {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .slide-image {
        height: 300px;
    }
    
    .slide-content {
        padding: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        max-width: none;
    }
    
    .value-card:nth-child(1),
    .value-card:nth-child(2),
    .value-card:nth-child(3),
    .value-card:nth-child(4),
    .value-card:nth-child(5) {
        grid-column: 1;
        grid-row: auto;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    /* Product cards - always show overlay on mobile */
    .product-card {
        margin: 0 auto;
        max-width: 400px;
    }
    
    .product-overlay {
        opacity: 0.95;
    }
    
    .product-info {
        padding: 2rem 1.5rem;
    }
    
    .product-info h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .product-info p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .coming-soon {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        font-weight: 700;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .legal-links {
        gap: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .vision-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    
    .vision-description {
        font-size: 1.2rem;
    }
}

/* Medium Mobile Devices (between tablet and small mobile) */
@media (max-width: 640px) {
    /* Better spacing for medium screens */
    .hero-title {
        font-size: clamp(2rem, 7vw, 3rem);
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    /* Navigation improvements */
    .nav-logo-image {
        height: 80px !important;
        max-width: 150px !important;
    }
    
    /* Products on medium screens */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Better modal on medium screens */
    .modal-content {
        width: 90%;
        padding: 2rem;
    }
    
    /* Gallery improvements */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item {
        height: 350px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 80px 0;
    }
    
    /* Hero Section Mobile */
    .hero {
        min-height: 100vh;
        height: auto;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        gap: 1rem;
        width: 100%;
        padding: 0 1rem;
    }
    
    .hero-cta .cta-primary,
    .hero-cta .cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    /* Section Headers Mobile */
    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Buttons Mobile - Better Touch Targets */
    .cta-primary,
    .cta-secondary {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        min-height: 48px; /* Minimum touch target size */
        width: 100%;
        max-width: 100%;
    }
    
    /* Navigation Mobile */
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-container {
        padding: 0 1rem !important;
    }
    
    .nav-logo-image {
        height: 60px !important;
        max-width: 120px !important;
    }
    
    .nav-toggle {
        width: 44px;
        height: 44px;
    }
    
    .nav-link {
        padding: 1.25rem 0;
        font-size: 1.1rem;
    }
    
    /* Mission Section Mobile */
    .mission-header {
        padding: 1.5rem 1rem;
        margin-bottom: 3rem;
    }
    
    .mission-header .section-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    
    /* Stats Mobile */
    .stat-item {
        padding: 1.5rem 1rem 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* Values Mobile */
    .value-card {
        padding: 1.5rem 1rem;
    }
    
    .value-number {
        font-size: 1.5rem;
        width: 48px;
        height: 48px;
    }
    
    .value-title {
        font-size: 1.1rem;
    }
    
    .value-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Products Mobile */
    .products-header {
        padding: 0 1rem;
    }
    
    .products-title {
        font-size: 1.8rem;
    }
    
    .products-subtitle {
        font-size: 1rem;
    }
    
    .products-cta {
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .products-cta .cta-primary {
        width: 100%;
        justify-content: center;
    }
    
    /* Product cards on small mobile */
    .product-card {
        margin: 0 0.5rem;
        max-width: 100%;
    }
    
    .product-overlay {
        opacity: 1;
    }
    
    .product-info {
        padding: 1.5rem 1rem;
    }
    
    .product-info h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .product-info p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .coming-soon {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
        font-weight: 700;
    }
    
    /* Modal Mobile Improvements */
    .modal-content {
        width: 95%;
        max-width: 95%;
        max-height: 90vh;
        padding: 1.5rem;
        margin: 2rem auto;
    }
    
    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
        padding-right: 2rem;
    }
    
    .modal-header p {
        font-size: 0.9rem;
    }
    
    .modal-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .detail-item {
        font-size: 0.85rem;
    }
    
    .modal-gallery-item img {
        height: 250px;
    }
    
    .modal-purchase-btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Contact Section Mobile */
    .contact-grid {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .contact-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-header p {
        font-size: 0.95rem;
    }
    
    .contact-methods {
        gap: 1rem;
    }
    
    .contact-method {
        padding: 1.25rem;
        flex-direction: row;
        gap: 1rem;
    }
    
    .method-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .method-content {
        text-align: left;
    }
    
    .method-label {
        font-size: 0.85rem;
    }
    
    .method-value {
        font-size: 1rem;
        word-break: break-word;
    }
    
    .whatsapp-hint {
        font-size: 0.7rem;
    }
    
    .contact-form {
        padding: 1.5rem;
        min-height: 500px;
    }
    
    .contact-form iframe {
        min-height: 450px;
    }
    
    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .gallery-item {
        height: 300px;
    }
    
    .vision-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        padding: 0 1rem;
    }
    
    .vision-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        padding: 0 1rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-link {
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-links a {
        width: 40px !important;
        height: 40px !important;
    }
    
    .footer-legal {
        padding: 1rem;
        font-size: 0.75rem;
    }
    
    /* Video Container Mobile */
    .video-container {
        height: 250px;
    }
    
    /* Ribbon Mobile */
    .for-sale-ribbon {
        font-size: 0.7rem;
        padding: 6px 35px;
        top: 15px;
        right: -30px;
    }
    
    /* Sticky CTA Mobile */
    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
    }
    
    /* Container Padding Mobile */
    .container {
        padding: 0 1rem;
    }
    
    /* Improve touch interactions */
    a, button, .nav-link, .product-card {
        -webkit-tap-highlight-color: rgba(212, 175, 55, 0.2);
    }
    
    /* Better scrolling on mobile */
    body {
        -webkit-overflow-scrolling: touch;
    }
}

/* Extra small devices optimization */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 0.9rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .nav-logo-image {
        height: 50px !important;
        max-width: 100px !important;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .modal-content {
        padding: 1rem;
    }
    
    .contact-method {
        padding: 1rem;
    }
}

/* Notification Styles */
.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    transition: background-color 0.2s ease;
    margin-left: auto;
}

.notification-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Loading States */
body.loading {
    overflow: hidden;
}

/* Modal States */
body.modal-open {
    overflow: hidden;
    height: 100vh;
    position: fixed;
    width: 100%;
}

body.loading .hero-title,
body.loading .hero-subtitle,
body.loading .hero-cta {
    opacity: 0;
    transform: translateY(30px);
}

/* Smooth Transitions */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Focus States for Accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .sticky-cta,
    .hero-video {
        display: none;
    }
    
    .hero {
        height: auto;
        padding: 2rem 0;
    }
    
    * {
        color: black !important;
        background: white !important;
    }
}