/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #D4AF37;
    --primary-dark: #1a1a1a;
    --secondary-dark: #2d2d2d;
    --accent-blue: #4A90E2;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --bg-dark: #0f0f0f;
    --bg-card: #1f1f1f;
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4E5B8 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.3);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== CUSTOM CURSOR STYLES ===== */
.cursor-glow {
    will-change: transform, opacity;
}

.custom-cursor,
.custom-cursor-ring {
    will-change: transform;
}

@media (max-width: 1024px) {
    .cursor-glow,
    .custom-cursor,
    .custom-cursor-ring {
        display: none !important;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

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

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 2px;
}

.logo .elite {
    color: var(--primary-gold);
    margin-left: 5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    transition: var(--transition-smooth);
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition-smooth);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #2d2d2d 100%);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cursor-blink {
    animation: blink 1s step-end infinite;
    margin-left: 5px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 300;
}

#typewriter {
    display: inline-block;
    animation: textGlow 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: var(--primary-gold);
    animation: scroll 2s ease-in-out infinite;
}

/* ===== FEATURED WATCH SECTION ===== */
.featured-watch {
    padding: 120px 0;
    background: var(--bg-dark);
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.watch-showcase {
    position: relative;
    padding: 40px;
}

.watch-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.watch-showcase img {
    width: 100%;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.featured-text .label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.featured-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.featured-text p {
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
}

.features-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-gray);
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===== COLLECTIONS PREVIEW ===== */
.collections-preview {
    padding: 120px 0;
    background: var(--secondary-dark);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-light);
}

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

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.collection-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 400px;
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.overlay-btn {
    padding: 12px 30px;
    background: var(--primary-gold);
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

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

.collection-card:hover .overlay-btn {
    transform: translateY(0);
}

.collection-card:hover .card-image img {
    transform: scale(1.1);
}

.collection-card h3 {
    padding: 25px;
    font-size: 1.5rem;
    color: var(--text-light);
}

.collection-card p {
    padding: 0 25px 25px;
    color: var(--text-gray);
}

/* ===== CRAFTSMANSHIP SECTION ===== */
.craftsmanship {
    padding: 120px 0;
    background: var(--bg-dark);
}

.craft-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.craft-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.craft-text p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-card);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.craft-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 120px 0;
    background: var(--secondary-dark);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 15px;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.stars {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
}

.client-info h4 {
    color: var(--text-light);
    margin-bottom: 5px;
}

.client-info span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-section h4 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--text-gray);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

.footer-bottom a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--text-light);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* ===== PAGE HEADER ===== */
.page-header {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    margin-top: 80px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 50 L50 0 L100 50 L50 100 Z" fill="rgba(212,175,55,0.02)"/></svg>');
    opacity: 0.3;
}

.header-content {
    text-align: center;
    z-index: 1;
}

.header-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.header-content p {
    font-size: 1.3rem;
    color: var(--text-gray);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .featured-content,
    .craft-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(15, 15, 15, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 40px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 3rem;
        min-height: 80px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .cursor-blink {
        font-size: 3rem;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .header-content h1 {
        font-size: 2.5rem;
    }
}
