/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

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

.logo img {
    height: 26px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0rem;
}

.nav-links li {
    margin: 0 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    padding-bottom: 15vh;
    margin-top: 70px;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: white;
    animation: fadeToBlack 1s ease forwards;
}

@keyframes fadeToBlack {
    from {
        background: white;
    }
    to {
        background: black;
    }
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
    margin-top: 2rem;
    animation: bounce 2s ease;
}

.scroll-down span {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-down i {
    margin-bottom: 5rem;
    font-size: 1.5rem;
}

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

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: #6c5ce7;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
    background-color: #5b4cc4;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: #f9f9f9;
    min-height: calc(100vh - 70px);
    padding-top: 70px;
}

.about h1 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #000;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.3;
    padding: 0 10%;
}

.about-content {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
}

.about-text {
    flex: 0 0 50%;
    padding: 0 5% 4rem 2rem;
}

.about-image {
    flex: 0 0 50%;
    width: 50%;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text h2 {
    margin-bottom: 1.5rem;
    color: #000;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.3;
}

.about-text p {
    margin-bottom: 1.1rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text .cta-link {
    display: inline-block;
    color: #ff0000;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.about-text .cta-link:hover {
    color: #cc0000;
}

@media screen and (max-width: 1200px) {
    .about {
        padding: 3rem 1rem;
        padding-top: 70px;
    }

    .about h1 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image {
        flex: 0 0 100%;
        width: 100%;
    }

    .about-text {
        flex: 0 0 100%;
        padding: 2rem 1rem;
    }

    .about-text p {
        margin-bottom: 0.8rem;
    }

    .about-text .cta-link {
        font-size: 1rem;
        margin-top: 0.8rem;
    }
}

/* Private Label Section */
.private-label {
    padding: 5rem 0;
    background-color: white;
    min-height: calc(100vh - 70px);
    padding-top: 70px;
}

.private-label h1 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #000;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.3;
    padding: 0 10%;
}

.private-label h2 {
    margin-bottom: 1.5rem;
    color: #000;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.3;
}

.moq-section {
    background-color: #f0f0f0;
    padding: 3rem 0;
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.moq-section h3,
.moq-section .services-grid {
    padding: 0 10%;
}

.private-label h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #000;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #f9f9f9;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.service-card:hover {
    transform: translateY(-5px);
}

.moq-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.moq-number .number {
    font-size: 3.5rem;
    color: #ff0000;
    font-weight: 300;
    line-height: 1;
}

.moq-number .unit {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card h3 {
    color: #000;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
}

.service-card p {
    color: #000;
    line-height: 1.6;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 400;
}

/* Contact Section */
.contact {
    padding: 5rem 10%;
    background-color: white;
    min-height: calc(100vh - 70px);
    padding-top: 70px;
}

.contact h1 {
    text-align: center;
    margin-bottom: 3rem;
    color: #000;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.3;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-hero {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 3rem;
    font-size: 1.8rem;
    color: #000;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.5;
    text-align: center;
}

.hero-text {
    text-align: center;
    max-width: 600px;
}

.hero-text h2 {
    font-size: 2.5rem;
    color: #000;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-2px);
}

.info-item i {
    font-size: 1.5rem;
    color: #ff0000;
}

.info-item p {
    font-size: 1.2rem;
    color: #000;
}

.info-item a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #ff0000;
}

.phone-link {
    display: none;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 4rem 10% 2rem;
    margin-top: 4rem;
}

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

.footer-section h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.footer-section p {
    line-height: 1.8;
    color: #ccc;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff0000;
}

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

.social-links a {
    color: #ccc;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff0000;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        width: 100%;
        text-align: center;
        transition: 0.5s;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 2rem 0;
    }

    .burger {
        display: block;
    }

    /* Add burger animation */
    .burger.toggle div:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger.toggle div:nth-child(2) {
        opacity: 0;
    }

    .burger.toggle div:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-bottom: 10vh;
    }

    .hero-content {
        gap: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .scroll-down {
        margin-top: 1.5rem;
    }

    .scroll-down span {
        font-size: 0.9rem;
    }

    .scroll-down i {
        font-size: 1.2rem;
    }

    .logo img {
        height: 22px; /* Slightly smaller on mobile */
    }

    .contact {
        padding: 3rem 1rem;
        padding-top: 70px;
    }

    .contact h1 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-hero {
        min-height: 250px;
        padding: 1.5rem;
        font-size: 1.2rem;
    }

    .hero-text h2 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .phone-text {
        display: none;
    }

    .phone-link {
        display: inline;
    }

    footer {
        padding: 3rem 1rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .private-label {
        padding: 3rem 1rem;
        padding-top: 70px;
    }

    .private-label h1,
    .private-label h2 {
        padding: 0 1rem;
    }

    .private-label h3 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .moq-number .number {
        font-size: 3rem;
    }

    .moq-number .unit {
        font-size: 0.9rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 1.1rem;
    }

    .moq-section {
        padding: 2rem 0;
    }

    .moq-section h3,
    .moq-section .services-grid {
        padding: 0 1rem;
    }
}

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

.hero-content,
.about-content,
.services-grid,
.contact-container {
    animation: fadeIn 1s ease-out;
}

/* Home Section */
.home {
    min-height: calc(100vh - 70px);
    display: flex;
    background-color: white;
    overflow: hidden;
    padding-top: 70px;
    position: relative;
}

.home-image {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.home-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.home-content {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 10%;
}

.home-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.3;
}

.home-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.home-scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.5rem;
    animation: bounce 2s ease infinite;
}

@media screen and (max-width: 1024px) {
    .home {
        flex-direction: column;
        min-height: calc(100vh - 70px);
    }

    .home-image {
        flex: 0 0 calc(50vh - 35px);
        height: calc(50vh - 35px);
        display: flex;
        align-items: flex-end;
        padding-bottom: 0;
    }

    .home-image img {
        height: auto;
        width: 100%;
        max-height: 100%;
        object-position: bottom;
    }

    .home-content {
        flex: 1;
        padding: 3rem 1rem;
        text-align: center;
    }

    .home-content h1 {
        font-size: 2rem;
    }
    
    .home-content p {
        font-size: 1.1rem;
        text-align: center;
    }
}

@media screen and (max-width: 1024px) {
    .contact-hero {
        font-size: 1.5rem;
        min-height: 350px;
        padding: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-hero {
        min-height: 250px;
        padding: 1.5rem;
        font-size: 1.2rem;
    }

    .home-scroll-down {
        bottom: 1rem;
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 768px) {
    .moq-section {
        padding: 2rem 0;
    }

    .moq-section h3,
    .moq-section .services-grid {
        padding: 0 1rem;
    }
}

.private-label-content {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
}

.private-label-image {
    flex: 0 0 50%;
    width: 50%;
}

.private-label-image img {
    width: 100%;
    height: auto;
    display: block;
}

.private-label-text {
    flex: 0 0 50%;
    padding: 0 5% 4rem 2rem;
}

.private-label-text h2 {
    margin-bottom: 1.5rem;
    color: #000;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.3;
}

.private-label-text p {
    margin-bottom: 1.1rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

.private-label-text p:last-child {
    margin-bottom: 0;
}

.private-label-text .cta-link {
    display: inline-block;
    color: #ff0000;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.private-label-text .cta-link:hover {
    color: #cc0000;
}

@media screen and (max-width: 768px) {
    .private-label-text p {
        margin-bottom: 0.8rem;
    }

    .private-label-text .cta-link {
        font-size: 1rem;
        margin-top: 0.8rem;
    }
}

@media screen and (max-width: 1200px) {
    .private-label-content {
        flex-direction: column;
    }

    .private-label-image {
        flex: 0 0 100%;
        width: 100%;
    }

    .private-label-text {
        flex: 0 0 100%;
        padding: 2rem 1rem;
    }
}

/* Privacy Statement Page Styles */
.privacy-content {
    max-width: 800px;
    margin: 120px auto 60px;
    padding: 0 2rem;
}

.privacy-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.privacy-text {
    color: #2c3e50;
    line-height: 1.6;
}

.privacy-text p {
    margin-bottom: 1.5rem;
}

@media screen and (max-width: 768px) {
    .privacy-content {
        margin-top: 100px;
        padding: 0 1rem;
    }

    .privacy-content h1 {
        font-size: 2rem;
    }
}

/* Watches Section */
.watches {
    min-height: calc(100vh - 60px);
    background: transparent;
    position: relative;
    margin-bottom: 70px;
}

.swiper {
    width: 100%;
    height: calc(100vh - 60px);
    position: absolute;
    top: 60px;
    left: 0;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

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

.swiper-button-next,
.swiper-button-prev {
    color: #666666 !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    color: #666666 !important;
}

.swiper-pagination-bullet {
    background: #e74c3c;
}

.swiper-pagination-bullet-active {
    background: #e74c3c;
}