/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4af37;
    --secondary-color: #1a1a1a;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --bg-light: #ffffff;
    --bg-dark: #0a0a0a;
    --accent: #c9a961;
    --transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

html::-webkit-scrollbar {
    display: none;
}

html {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
    width: 100%;
    line-height: 1.6;
    position: relative;
}

body::-webkit-scrollbar {
    display: none;
}

body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Hide all scrollbars globally */
*::-webkit-scrollbar {
    display: none;
}

* {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 30px;
    }
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 25px 0;
    background: transparent;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-light);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-secondary {
    padding: 12px 30px;
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--primary-color);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

@media (max-width: 968px) {
    .nav {
        padding: 15px 0;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
    }
    
    .nav-container {
        padding: 0 30px;
    }
    
    .nav-logo {
        font-size: 22px;
        letter-spacing: 2px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    /* Hamburger Menu */
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 1001;
        padding: 5px;
    }
    
    .hamburger span {
        width: 28px;
        height: 2px;
        background: var(--primary-color);
        transition: all 0.3s ease;
        display: block;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    /* Mobile Menu Overlay */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }
    
    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        padding: 80px 30px 30px;
    }
    
    .mobile-menu-list {
        list-style: none;
        text-align: center;
        margin-bottom: 50px;
    }
    
    .mobile-menu-list li {
        margin-bottom: 30px;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }
    
    .mobile-menu.active .mobile-menu-list li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .mobile-menu.active .mobile-menu-list li:nth-child(1) {
        transition-delay: 0.1s;
    }
    
    .mobile-menu.active .mobile-menu-list li:nth-child(2) {
        transition-delay: 0.2s;
    }
    
    .mobile-menu.active .mobile-menu-list li:nth-child(3) {
        transition-delay: 0.3s;
    }
    
    .mobile-menu.active .mobile-menu-list li:nth-child(4) {
        transition-delay: 0.4s;
    }
    
    .mobile-menu-link {
        font-family: 'Cormorant Garamond', serif;
        font-size: 36px;
        font-weight: 600;
        color: var(--text-light);
        text-decoration: none;
        transition: all 0.3s ease;
        display: block;
        position: relative;
    }
    
    .mobile-menu-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: var(--primary-color);
        transition: width 0.3s ease;
    }
    
    .mobile-menu-link:active,
    .mobile-menu-link:focus {
        color: var(--primary-color);
    }
    
    .mobile-menu-link:active::after {
        width: 80%;
    }
    
    .mobile-menu-cta {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }
    
    .mobile-menu.active .mobile-menu-cta {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.5s;
    }
}

@media (min-width: 969px) {
    .hamburger {
        display: none;
    }
    
    .mobile-menu {
        display: none;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
    width: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    color: var(--text-light);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 30px;
    overflow: hidden;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(100px);
}

.title-main {
    font-weight: 700;
    font-size: 110px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.btn-primary {
    padding: 18px 45px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    padding: 18px 45px;
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    display: inline-block;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-watch {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
    width: 100%;
}

.watch-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
}

.watch-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.watch-placeholder {
    position: relative;
    z-index: 2;
    width: 300px;
    height: 300px;
    color: var(--primary-color);
    animation: float 6s ease-in-out infinite;
}

.watch-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 20px 60px rgba(212, 175, 55, 0.4));
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(20px); }
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 1s forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== STORY SECTION ===== */
.story {
    padding: 150px 0;
    background: var(--bg-light);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.story-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 60px;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 80px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-gray);
}

/* ===== COLLECTION SECTION ===== */
.collection {
    padding: 150px 0;
    background: linear-gradient(to bottom, #f8f8f8 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    margin-top: 15px;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.collection-item {
    background: var(--bg-light);
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    border: 1px solid transparent;
}

.collection-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.featured {
    border: 1px solid var(--primary-color);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 8px 20px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    z-index: 10;
}

.item-image {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.collection-item:hover .image-overlay {
    opacity: 1;
}

.watch-display {
    width: 200px;
    height: 200px;
    transition: var(--transition);
}

.collection-item:hover .watch-display {
    transform: scale(1.1) rotate(5deg);
}

.item-info {
    padding: 40px 30px;
    text-align: center;
}

.item-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.item-desc {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.btn-select {
    padding: 12px 35px;
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.btn-select:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 150px 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-top: 80px;
}

.feature-card {
    padding: 50px 40px;
    background: #fafafa;
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    color: var(--primary-color);
    margin-bottom: 30px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 150px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #2a2a2a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.btn-large {
    padding: 20px 60px;
    font-size: 14px;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 150px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.contact-info {
    padding-top: 20px;
}

.contact-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-value {
    font-size: 16px;
    color: var(--text-dark);
}

.contact-form {
    background: #fafafa;
    padding: 60px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 25px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    background: var(--bg-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links h4,
.footer-legal h4 {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 60px;
    }
    
    .title-main {
        font-size: 80px;
    }
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-watch {
        height: 400px;
    }
    
    .watch-circle {
        width: 350px;
        height: 350px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 30px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .nav-container {
        padding: 0 30px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .title-main {
        font-size: 55px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .cta-title {
        font-size: 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons a {
        width: 100%;
        text-align: center;
    }
    
    .collection-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 40px 30px;
    }
    
    /* CRITICAL: Fix horizontal scroll and centering on mobile */
    .hero {
        padding-left: 0;
        padding-right: 0;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 30px;
        gap: 40px;
        max-width: 100%;
    }
    
    .hero-text {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-watch {
        height: 350px;
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }
    
    .watch-circle {
        width: 280px;
        height: 280px;
        left: 50%;
        transform: translateX(-50%) rotate(0deg);
        animation: rotateMobile 30s linear infinite;
    }
    
    .watch-circle::before {
        width: 220px;
        height: 220px;
    }
    
    .watch-placeholder {
        width: 200px;
        height: 200px;
    }
    
    @keyframes rotateMobile {
        from { transform: translateX(-50%) rotate(0deg); }
        to { transform: translateX(-50%) rotate(360deg); }
    }
    
    /* Fix all sections overflow */
    .story,
    .collection,
    .features,
    .cta,
    .contact,
    .footer {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .story-content,
    .section-header,
    .collection-grid,
    .features-grid,
    .contact-grid {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Fix collection items */
    .collection-item {
        max-width: 100%;
        width: 100%;
    }
    
    .item-image {
        max-width: 100%;
        overflow: hidden;
    }
    
    /* Fix feature cards */
    .feature-card {
        max-width: 100%;
        width: 100%;
    }
    
    /* Fix contact section */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden !important;
    }
    
    .contact-info,
    .contact-form {
        max-width: 100%;
        width: 100%;
        overflow-x: hidden !important;
    }
    
    .contact-form {
        padding: 30px 20px !important; /* Reduced padding on mobile */
    }
    
    .contact-form input,
    .contact-form textarea,
    .contact-form button {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-details,
    .contact-item,
    .contact-text {
        max-width: 100%;
        overflow-x: hidden !important;
    }
    
    /* Fix footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 100%;
    }
    
    /* Ensure no element can cause horizontal scroll */
    * {
        max-width: 100%;
    }
    
    /* Fix buttons on mobile */
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        padding: 15px 30px;
        font-size: 12px;
    }
    
    /* Fix scroll indicator position */
    .scroll-indicator {
        bottom: 20px;
    }
    
    /* ===== MOBILE-SPECIFIC ENHANCEMENTS ===== */
    
    /* Story Section - Mobile */
    .story {
        padding: 80px 0;
        overflow: hidden !important;
    }
    
    .story-content {
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s ease-out;
    }
    
    .story-content.mobile-reveal {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .section-label {
        display: inline-block;
        animation: mobileLabelSlide 0.8s ease-out forwards;
        opacity: 0;
    }
    
    @keyframes mobileLabelSlide {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .story-content.mobile-reveal .section-title {
        animation: mobileTitlePop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
        opacity: 0;
    }
    
    @keyframes mobileTitlePop {
        from {
            opacity: 0;
            transform: scale(0.8) translateY(30px);
        }
        to {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
    }
    
    .story-content.mobile-reveal .story-text {
        animation: mobileFadeIn 0.8s ease-out 0.4s forwards;
        opacity: 0;
    }
    
    @keyframes mobileFadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Stats - Mobile stagger animation */
    .stat-item {
        opacity: 0;
        transform: translateX(-50px) scale(0.8);
        transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    .stat-item.mobile-reveal {
        opacity: 1 !important;
        transform: translateX(0) scale(1) !important;
    }
    
    .stat-item:nth-child(1) { transition-delay: 0.1s; }
    .stat-item:nth-child(2) { transition-delay: 0.3s; }
    .stat-item:nth-child(3) { transition-delay: 0.5s; }
    
    /* Collection Items - Luxury fade-in animation (mobile) */
    .collection {
        padding: 60px 0; /* Reduced padding */
        overflow-x: hidden !important;
    }
    
    /* Make collection items smaller on mobile - START HIDDEN */
    .collection-item {
        opacity: 0 !important; /* Force hidden initially */
        transform: scale(0.95) translateY(30px);
        transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1); /* Slower, smoother */
        visibility: hidden; /* Completely hidden until animation */
        max-width: 85%; /* Smaller cards - 85% width instead of 100% */
        margin: 0 auto 30px auto; /* Center and reduce spacing */
    }
    
    .collection-item.mobile-slide-in {
        opacity: 1 !important;
        transform: scale(1) translateY(0) !important;
        visibility: visible !important; /* Show when animation starts */
    }
    
    /* Remove alternate direction - all fade in the same elegant way */
    .collection-item:nth-child(even) {
        opacity: 0 !important;
        transform: scale(0.95) translateY(30px);
        visibility: hidden;
    }
    
    .collection-item:nth-child(even).mobile-slide-in {
        opacity: 1 !important;
        transform: scale(1) translateY(0) !important;
        visibility: visible !important;
    }
    
    /* Slower stagger delays for luxury feel */
    .collection-item:nth-child(1) { transition-delay: 0s; }
    .collection-item:nth-child(2) { transition-delay: 0.3s; }
    .collection-item:nth-child(3) { transition-delay: 0.6s; }
    .collection-item:nth-child(4) { transition-delay: 0.9s; }
    
    /* Reduce image height on mobile */
    .collection-item .item-image {
        height: 280px; /* Smaller from 400px */
    }
    
    /* Collection hover effect replacement with tap effect */
    .collection-item:active {
        transform: scale(0.97) !important;
        transition: transform 0.2s ease;
    }
    
    .collection-item.mobile-slide-in:active {
        transform: scale(0.97) !important;
    }
    
    /* Features - Mobile card flip animation */
    .features {
        padding: 80px 0;
    }
    
    .feature-card {
        opacity: 0;
        transform: rotateY(90deg) scale(0.8);
        transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        transform-style: preserve-3d;
    }
    
    .feature-card.mobile-flip-in {
        opacity: 1;
        transform: rotateY(0deg) scale(1);
    }
    
    .feature-card:nth-child(1) { transition-delay: 0s; }
    .feature-card:nth-child(2) { transition-delay: 0.15s; }
    .feature-card:nth-child(3) { transition-delay: 0.3s; }
    .feature-card:nth-child(4) { transition-delay: 0.45s; }
    .feature-card:nth-child(5) { transition-delay: 0.6s; }
    .feature-card:nth-child(6) { transition-delay: 0.75s; }
    
    /* Feature icon pulse on reveal */
    .feature-card.mobile-flip-in .feature-icon {
        animation: mobilePulseIcon 1s ease-out 0.5s;
    }
    
    @keyframes mobilePulseIcon {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.2); }
    }
    
    /* CTA Section - Mobile */
    .cta {
        padding: 100px 0;
    }
    
    .cta-content {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
        transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    .cta-content.mobile-reveal {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    
    .cta-title {
        animation: mobileShake 0.6s ease-out;
    }
    
    @keyframes mobileShake {
        0%, 100% { transform: translateX(0); }
        25% { transform: translateX(-10px); }
        75% { transform: translateX(10px); }
    }
    
    /* Contact Section - Mobile */
    .contact {
        padding: 80px 0;
        overflow-x: hidden !important;
        width: 100%;
        max-width: 100vw;
    }
    
    .contact-info {
        opacity: 0;
        transform: translateX(-20px); /* Reduced from -50px to prevent overflow */
        transition: all 0.8s ease-out;
        max-width: 100%;
    }
    
    .contact-info.mobile-reveal {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }
    
    .contact-form {
        opacity: 0;
        transform: translateY(30px); /* Reduced from 50px */
        transition: all 0.8s ease-out 0.3s;
        max-width: 100%;
    }
    
    .contact-form.mobile-reveal {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .contact-item {
        opacity: 0;
        transform: translateX(-15px); /* Reduced from -30px */
        transition: all 0.5s ease-out;
    }
    
    .contact-item.mobile-reveal {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }
    
    .contact-item:nth-child(1) { transition-delay: 0.1s; }
    .contact-item:nth-child(2) { transition-delay: 0.2s; }
    .contact-item:nth-child(3) { transition-delay: 0.3s; }
    
    /* Form inputs animation on focus */
    .contact-form input:focus,
    .contact-form textarea:focus {
        animation: mobileInputPulse 0.3s ease-out;
    }
    
    @keyframes mobileInputPulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.02); }
        100% { transform: scale(1); }
    }
    
    /* Button tap feedback enhancement */
    .btn-primary:active,
    .btn-secondary:active,
    .btn-outline:active,
    .btn-select:active {
        transform: scale(0.95) translateY(0);
        transition: transform 0.1s ease;
    }
    
    /* Section headers - Mobile bounce in */
    .section-header {
        opacity: 0;
        transform: translateY(-30px);
        transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    .section-header.mobile-reveal {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Featured badge bounce */
    .featured-badge {
        animation: mobileBadgeBounce 2s ease-in-out infinite;
    }
    
    @keyframes mobileBadgeBounce {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-5px); }
    }
    
    /* Item info gentle fade in */
    .collection-item.mobile-slide-in .item-info {
        animation: mobileGentleFade 1s ease-out 0.4s backwards;
    }
    
    @keyframes mobileGentleFade {
        from {
            opacity: 0;
            transform: translateY(15px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Watch display subtle scale in - no rotation for luxury feel */
    .collection-item.mobile-slide-in .watch-display {
        animation: mobileWatchScale 1s ease-out 0.3s backwards;
    }
    
    @keyframes mobileWatchScale {
        from {
            transform: scale(0.85);
            opacity: 0;
        }
        to {
            transform: scale(1);
            opacity: 1;
        }
    }
    
    /* Smooth scroll snap for better mobile experience */
    .collection-grid {
        scroll-snap-type: y proximity;
    }
    
    .collection-item {
        scroll-snap-align: start;
    }
    
    /* Add subtle parallax effect on scroll for mobile */
    .story-content,
    .section-header,
    .feature-card,
    .cta-content {
        will-change: transform;
    }
    
    /* Optimize animations for mobile performance */
    * {
        -webkit-tap-highlight-color: transparent;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== CURSOR EFFECT (Optional premium touch) ===== */
@media (min-width: 1024px) {
    .btn-primary,
    .btn-secondary,
    .btn-outline,
    .btn-select,
    .collection-item {
        cursor: pointer;
    }
}