/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #f8f8f8;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: #c9a96e;
}

/* Mobile Navigation Styles */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4rem;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 500px;
    z-index: 10;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.cta-button {
    background: linear-gradient(45deg, #c9a96e, #d4b77a);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-button:hover {
    background: linear-gradient(45deg, #b8956b, #c9a96e);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

/* 3D Watch Container */
.watch-3d {
    flex: 1;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#watch-container {
    width: 600px;
    height: 600px;
    position: relative;
    overflow: visible !important;
}

#watch-container canvas {
    overflow: visible !important;
}

.watch-3d {
    overflow: visible !important;
}

/* Product Info Section */
.product-info {
    padding: 6rem 4rem;
    background: white;
}

.info-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.info-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Loading Animation */
.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #c9a96e;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.loading::after {
    content: '';
    animation: dots 1.5s infinite;
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60% { content: '...'; }
    90%, 100% { content: ''; }
}

/* Watch Details Section */
.watch-details {
    padding: 8rem 2rem;
    background: white;
    border-top: 1px solid #e0e0e0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: stretch; /* Changed to stretch for equal heights */
}

/* Watch Info Styling */
.watch-info {
    padding: 2rem;
    background: #fafafa;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.watch-header {
    margin-bottom: 3rem;
}

.watch-category {
    font-size: 0.9rem;
    color: #c9a96e;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 1rem;
}

.watch-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.1;
}

.watch-price {
    font-size: 2rem;
    color: #c9a96e;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.watch-description {
    margin-bottom: 3rem;
    flex-grow: 1;
}

.watch-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    font-weight: 300;
}

/* Specifications - Compact Grid */
.watch-specs h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    background: white;
    transition: all 0.3s ease;
    text-align: center;
}

.spec-item:hover {
    border-color: #c9a96e;
    background: #fafafa;
}

.spec-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.spec-value {
    font-size: 0.9rem;
    color: #1a1a1a;
    font-weight: 600;
}

/* Action Buttons */
.watch-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.btn-primary, .btn-secondary {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    flex: 1;
    text-align: center;
}

.btn-primary {
    background: #c9a96e;
    color: white;
    border-color: #c9a96e;
}

.btn-primary:hover {
    background: #b8956b;
    border-color: #b8956b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 26, 26, 0.2);
}

/* Feature Cards - Equal Heights */
.watch-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
    height: 100%;
}

.feature-card {
    padding: 2rem 1.5rem;
    background: #f8f8f8;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.feature-card:hover {
    background: white;
    border-color: #c9a96e;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.5;
    font-size: 0.85rem;
    margin: 0;
}

/* Improved Responsive Design */
@media (max-width: 1024px) {
    /* Hero adjustments for tablets */
    .hero {
        padding: 0 3rem;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    #watch-container {
        width: 500px;
        height: 500px;
    }
    
    /* Details section for tablets */
    .details-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .watch-details {
        padding: 6rem 3rem;
    }
    
    .watch-features {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
    
    .specs-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        font-size: 1.5rem;
        font-weight: 500;
    }
    
    /* Hero section mobile fixes */
    .hero {
        flex-direction: column;
        padding: 8rem 2rem 4rem 2rem;
        text-align: center;
        min-height: 100vh;
        justify-content: center;
    }
    
    .hero-content {
        order: 2;
        max-width: 100%;
        margin-top: 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    #watch-container {
        order: 1;
        width: 100%;
        height: 350px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Navigation adjustments */
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .logo {
        font-size: 1.6rem;
    }
    
    /* Watch details mobile */
    .watch-details {
        padding: 4rem 1.5rem;
    }
    
    .watch-info {
        padding: 1.5rem;
    }
    
    .watch-title {
        font-size: 2.2rem;
    }
    
    .watch-price {
        font-size: 1.6rem;
    }
    
    .specs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }
    
    .spec-item {
        padding: 0.8rem;
    }
    
    .watch-features {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .watch-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 1.2rem;
    }
    
    /* Feature cards mobile */
    .feature-card {
        padding: 1.5rem;
    }
    
    /* Info grid mobile */
    .info-grid {
        padding: 0 2rem;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .hero {
        padding: 7rem 1rem 3rem 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    #watch-container {
        height: 280px;
    }
    
    .watch-details {
        padding: 3rem 1rem;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
}

/* Safety fallback - ensure elements are always visible */
.spec-item,
.feature-card,
.watch-category,
.watch-title,
.watch-price,
.watch-description,
.btn-primary,
.btn-secondary,
.info-card {
    opacity: 1 !important;
}

/* Add this to your style.css file */

/* Contact Section */
.contact-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
    text-align: center;
}

.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #c9a96e;
    font-weight: 700;
}

.contact-section p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-actions .btn-primary,
.contact-actions .btn-secondary {
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    min-width: 200px;
}

.contact-actions .btn-secondary {
    background: transparent;
    color: #c9a96e;
    border-color: #c9a96e;
}

.contact-actions .btn-secondary:hover {
    background: #c9a96e;
    color: #1a1a1a;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .contact-section {
        padding: 6rem 1.5rem;
    }
    
    .contact-section h2 {
        font-size: 2.2rem;
    }
    
    .contact-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-actions .btn-primary,
    .contact-actions .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* Add these improvements to your style.css */

/* Better loading animation */
.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #c9a96e;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
}

.loading::before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    border: 3px solid #f0f0f0;
    border-top: 3px solid #c9a96e;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Improved loading text animation */
.loading::after {
    content: '';
    animation: dots 1.5s infinite;
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60% { content: '...'; }
    90%, 100% { content: ''; }
}

/* Smooth transitions for better perceived performance */
.hero-content > * {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.watch-3d {
    transition: opacity 0.5s ease;
}

/* Optimize hover effects for better performance */
.cta-button,
.btn-primary,
.btn-secondary,
.info-card {
    transition: all 0.2s ease;
    will-change: transform;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .loading::before {
        animation: none;
    }
}

/* Add these enhanced button animations to your style.css */

/* Enhanced CTA Button with ripple effect */
.cta-button {
    background: linear-gradient(45deg, #c9a96e, #d4b77a);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    background: linear-gradient(45deg, #b8956b, #c9a96e);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(201, 169, 110, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.1);
    letter-spacing: 2px;
}

.cta-button:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s;
}

/* Enhanced Primary and Secondary Buttons */
.btn-primary, .btn-secondary {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid;
    cursor: pointer;
    border-radius: 0;
    flex: 1;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: #c9a96e;
    color: white;
    border-color: #c9a96e;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: #b8956b;
    border-color: #b8956b;
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(201, 169, 110, 0.3),
        0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #1a1a1a;
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::after {
    width: 100%;
}

.btn-secondary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(26, 26, 26, 0.2),
        0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Contact Section Button Enhancements */
.contact-actions .btn-primary,
.contact-actions .btn-secondary {
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    min-width: 200px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-actions .btn-secondary {
    background: transparent;
    color: #c9a96e;
    border-color: #c9a96e;
}

.contact-actions .btn-secondary:hover {
    background: #c9a96e;
    color: #1a1a1a;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 30px rgba(201, 169, 110, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Spec Item Hover Effects */
.spec-item {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    background: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.spec-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #c9a96e, #d4b77a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.spec-item:hover::before {
    transform: scaleX(1);
}

.spec-item:hover {
    border-color: #c9a96e;
    background: #fafafa;
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(201, 169, 110, 0.15),
        0 2px 10px rgba(0, 0, 0, 0.05);
}

.spec-value {
    font-size: 0.9rem;
    color: #1a1a1a;
    font-weight: 600;
    transition: color 0.3s ease;
}

.spec-item:hover .spec-value {
    color: #c9a96e;
}

/* Feature Card Enhanced Animations */
.feature-card {
    padding: 2rem 1.5rem;
    background: #f8f8f8;
    text-align: center;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(201, 169, 110, 0.05), transparent);
    transform: rotate(45deg) scale(0);
    transition: transform 0.6s ease;
}

.feature-card:hover::before {
    transform: rotate(45deg) scale(1);
}

.feature-card:hover {
    background: white;
    border-color: #c9a96e;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.1),
        0 5px 20px rgba(201, 169, 110, 0.1);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Info Card Enhanced Hover */
.info-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid #e0e0e0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: white;
}

.info-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #c9a96e, #d4b77a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.info-card:hover::after {
    transform: scaleX(1);
}

.info-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 8px 25px rgba(201, 169, 110, 0.1);
    border-color: #c9a96e;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .cta-button:hover,
    .btn-primary:hover,
    .btn-secondary:hover,
    .spec-item:hover,
    .feature-card:hover,
    .info-card:hover {
        transform: none;
        box-shadow: none;
    }
    
    /* Keep subtle effects for mobile touch */
    .cta-button:active,
    .btn-primary:active,
    .btn-secondary:active {
        transform: scale(0.95);
        transition: transform 0.1s;
    }
}

/* Advanced Scroll Animations - Add to style.css */

/* Smooth reveal animations for scroll */
.watch-details {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.watch-details.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-info {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-info.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-section {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations for cards */
.info-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.info-card:nth-child(1) { transition-delay: 0.1s; }
.info-card:nth-child(2) { transition-delay: 0.2s; }
.info-card:nth-child(3) { transition-delay: 0.3s; }

/* Navigation Hover Effects - Add to style.css */

/* Enhanced Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
}

/* Logo hover effect */
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.logo:hover {
    color: #c9a96e;
    transform: scale(1.05);
    text-shadow: 0 2px 10px rgba(201, 169, 110, 0.3);
}

/* Enhanced nav menu items */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin-right: -4rem !important; /* Move navigation right to balance logo */
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Underline animation */
.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c9a96e, #d4b77a);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover::before {
    width: 100%;
}

.nav-menu a:hover {
    color: #c9a96e;
    transform: translateY(-2px);
}

/* Active state */
.nav-menu a.active {
    color: #c9a96e;
    font-weight: 500;
}

.nav-menu a.active::before {
    width: 100%;
}

/* Hover background effect */
.nav-menu a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.nav-menu a:hover::after {
    left: 100%;
}

/* Mobile menu button hover */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.mobile-menu-btn:hover {
    background: rgba(201, 169, 110, 0.1);
    transform: scale(1.1);
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
}

.mobile-menu-btn:hover span {
    background: #c9a96e;
}

/* Active mobile menu animations */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
    background: #c9a96e;
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
    background: #c9a96e;
}

/* Enhanced mobile menu */
.nav-menu.active {
    right: 0;
    animation: slideInMenu 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInMenu {
    from {
        right: -100%;
        opacity: 0;
    }
    to {
        right: 0;
        opacity: 1;
    }
}

/* Mobile navigation styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }
    
    .nav-menu a {
        font-size: 1.5rem;
        font-weight: 500;
        padding: 1rem 2rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: rgba(201, 169, 110, 0.1);
        transform: scale(1.05);
    }
    
    .nav-menu a::before {
        display: none;
    }
}

/* Scroll-based navbar styling */
.navbar-scroll-effect {
    transition: all 0.3s ease;
}

/* Add subtle glow effect on navigation hover */
.nav-container:hover {
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.1);
}

/* Accessibility improvements */
.nav-menu a:focus {
    outline: 2px solid #c9a96e;
    outline-offset: 2px;
    border-radius: 4px;
}

.mobile-menu-btn:focus {
    outline: 2px solid #c9a96e;
    outline-offset: 2px;
    border-radius: 4px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .nav-menu a {
        color: black;
        border: 1px solid transparent;
    }
    
    .nav-menu a:hover {
        border-color: black;
        background: white;
    }
}


/* FIXES - Add to style.css */

/* Fix 1: Reduce white space between sections */
.watch-details {
    padding: 6rem 2rem; /* Reduced from 8rem */
}

.product-info {
    padding: 4rem 2rem; /* Reduced from 6rem */
    border-top: 1px solid #e0e0e0; /* Add subtle divider */
}

/* Add section title for heritage section */
.product-info::before {
    content: 'Heritage & Craftsmanship';
    display: block;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
    font-weight: 600;
}

/* Fix 2: Center info cards on mobile */
.info-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Changed from 300px */
    gap: 2rem; /* Reduced gap */
    justify-items: center; /* Center items */
    padding: 0 1rem; /* Add padding */
}

.info-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid #e0e0e0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: white;
    width: 100%; /* Full width of grid item */
    max-width: 350px; /* Limit max width */
}

/* Mobile specific fixes */
@media (max-width: 768px) {
    .product-info {
        padding: 3rem 1rem; /* Even less padding on mobile */
    }
    
    .product-info::before {
        font-size: 2rem; /* Smaller title on mobile */
        margin-bottom: 2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 1.5rem;
        padding: 0 1rem;
        justify-items: center;
    }
    
    .info-card {
        width: 100%;
        max-width: 320px; /* Smaller max width on mobile */
        margin: 0 auto; /* Center each card */
    }
    
    .watch-details {
        padding: 4rem 1.5rem; /* Less padding on mobile */
    }
}

/* FORCE LOGO LEFT - Add to style.css */

.logo {
    margin-left: -2rem !important;
    transform: translateX(-50px) !important;
}


.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    margin-left: -4rem !important; /* Move logo more left */
}

/* Keep nav-container centered */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem; /* Reset to original */
}

/* Mobile fix */
@media (max-width: 768px) {
    .logo {
        margin-left: 0 !important; /* Reset on mobile */
        font-size: 1.6rem;
    }
}

/* Mobile fix */
@media (max-width: 768px) {
    .logo {
        margin-left: 0 !important;
        transform: none !important;
    }
    
    .nav-container {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}


/* Mobile fix - reset navigation position */
@media (max-width: 768px) {
    .nav-menu {
        margin-right: 0 !important; /* Reset on mobile */
    }
}


/* PERFORMANCE & ACCESSIBILITY OPTIMIZATIONS - Add to style.css */

/* Improve font loading performance */
@font-face {
    font-family: 'Playfair Display';
    font-display: swap; /* Improve loading performance */
}

@font-face {
    font-family: 'Inter';
    font-display: swap;
}

/* GPU acceleration for better performance */
.watch-3d,
#watch-container,
.cta-button,
.btn-primary,
.btn-secondary,
.feature-card,
.info-card,
.spec-item {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0); /* Force GPU acceleration */
}

/* Optimize animations for performance */
.hero-title,
.hero-subtitle,
.cta-button {
    will-change: transform, opacity;
}

/* Better contrast for accessibility */
.hero-subtitle {
    color: #555; /* Improved from #666 for better contrast */
}

.spec-label {
    color: #777; /* Improved from #888 for better contrast */
}

.feature-card p,
.info-card p {
    color: #555; /* Improved from #666 for better contrast */
}

/* Focus indicators for accessibility */
.cta-button:focus,
.btn-primary:focus,
.btn-secondary:focus {
    outline: 3px solid #c9a96e;
    outline-offset: 2px;
}

.spec-item:focus-within {
    outline: 2px solid #c9a96e;
    outline-offset: 2px;
}

/* Skip link for keyboard navigation */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #c9a96e;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 9999;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* Improved reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    /* Disable 3D auto-rotation for reduced motion */
    #watch-container {
        pointer-events: auto;
    }
    
    /* Disable parallax and smooth scroll */
    .hero {
        transform: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-title,
    .watch-title,
    .logo {
        text-shadow: none;
        font-weight: 800;
    }
    
    .cta-button,
    .btn-primary {
        border: 3px solid #000;
    }
    
    .spec-item,
    .feature-card,
    .info-card {
        border: 2px solid #000;
    }
}

/* Color scheme support */
@media (prefers-color-scheme: dark) {
    /* Optional: Add dark mode styles if needed */
    /* Currently keeping light theme for luxury positioning */
}

/* Print styles */
@media print {
    .navbar,
    .cta-button,
    .btn-primary,
    .btn-secondary,
    #watch-container {
        display: none;
    }
    
    .hero {
        height: auto;
        padding: 2rem;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* Optimize loading states */
.loading {
    contain: layout style paint;
}

/* Prevent layout shifts */
#watch-container {
    min-height: 400px; /* Prevent layout shift while loading */
}

/* Optimize hover effects for performance */
@media (hover: hover) {
    /* Only apply hover effects on devices that support hover */
    .feature-card:hover,
    .info-card:hover,
    .spec-item:hover {
        /* Existing hover styles remain */
    }
}

@media (hover: none) {
    /* Remove hover effects on touch devices */
    .feature-card:hover,
    .info-card:hover,
    .spec-item:hover {
        transform: none;
        box-shadow: none;
    }
}