/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cinzel', serif;
    /* Only headings in Cinzel */
}

/* --------------------------- */
/* 🔥 TOP FIXED NAVBAR */
/* --------------------------- */
.top-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 18px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    z-index: 50;
    background: #00343e;
    backdrop-filter: blur(5px);
}

/* LOGO */
.logo {
    position: absolute;
    left: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 50px;
}

.logo-text {
    color: #f9e9cf;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s ease;
}

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

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

.menu li a {
    color: white;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
}

.menu li a:hover {
    color: #d6a24e;
}

/* Dropdown menu */
.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu li {
    position: relative;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #00343e;
    min-width: 260px;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    z-index: 999;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background: #00343e;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
@media(max-width:768px) {
    .nav-menu {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: #00343e;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }
}

/* WhatsApp Chat Bubble */
.whatsapp-bubble {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    animation: float 3s ease-in-out infinite;
    font-family: inherit;
}

.whatsapp-bubble a {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #00343e;
    padding: 12px 18px;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    transition: 0.3s ease;
}

.whatsapp-bubble a:hover {
    transform: translateY(-4px);
    background: #0d0d0d;
}

.chat-text {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.whatsapp-bubble .icon {
    background: #25D366;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

/* Floating animation */
@keyframes float {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }

    100% {
        transform: translateY(0)
    }
}

/* Mobile Optimization */
@media(max-width:768px) {
    .chat-text {
        display: none;
    }

    .whatsapp-bubble a {
        padding: 10px;
    }
}


/* HERO SLIDER */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideAnimation 15s infinite;
}

.slide1 {
    background-image: url('images/banner-1.png');
}

.slide2 {
    background-image: url('images/banner-2.png');
    animation-delay: 4s;
}

.slide3 {
    background-image: url('images/banner-3.png');
    animation-delay: 10s;
}

@keyframes slideAnimation {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    35% {
        opacity: 1;
    }

    45% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: white;
    max-width: 650px;
    z-index: 20;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

.hero-content h1 {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-content p {
    margin-top: 12px;
    font-size: 22px;
}

@media(max-width:768px) {
    .hero-slider {
        height: 85vh;
    }

    .hero-content {
        left: 5%;
        right: 5%;
        max-width: 100%;
    }
}


/* LUXURY HERO / BESPOKE SECTIONS */
.luxury-hero,
.bespoke-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 60px 8%;
}

.lux-left .main-title,
.bespoke-right h1 {
    font-size: 45px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 18px;
}

.lux-desc,
.bespoke-right p {
    color: #444;
    font-size: 17px;
    line-height: 1.6;
}

.lux-right img,
.bespoke-left img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.35s ease-in-out;
}

.lux-right img:hover,
.bespoke-left img:hover {
    transform: scale(1.02);
}

/* PRODUCT SECTION STYLING */
.product-section {
    padding: 60px 6%;
    background: #fff;
    text-align: center;
}

.product-section .title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #3a2f2f;
    font-family: 'Cinzel', serif;
    /* Premium look */
}

/* PRODUCT GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* PRODUCT BOX */
.product-box {
    overflow: hidden;
    border-radius: 0 40px 40px 0;
    /* top-right & bottom-left curved */
    background: #f3eee8;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.product-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.product-box img {
    aspect-ratio: 3 / 4;
}


/* ABOUT PRODUCTS SECTION */
.about-products {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    /* IMAGES LEFT — CONTENT RIGHT */
    gap: 50px;
    padding: 60px 6%;
    align-items: center;
    background: #fff;
}

@media(max-width:900px) {
    .about-products {
        grid-template-columns: 1fr;
    }

    .right-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:480px) {
    .right-gallery {
        grid-template-columns: 1fr;
    }
}


/* RIGHT SIDE CONTENT */
.left-content {
    padding-right: 20px;
}

.left-content .highlight {
    font-size: 22px;
    font-weight: 700;
    color: #00343e;
    font-family: 'Cinzel', serif;
    margin-bottom: 20px;
    line-height: 1.3;
    margin-top: 15px;
    /* adjust as you like */
}

.left-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #3a2f2f;
    margin-bottom: 18px;
}

/* LEFT IMAGE GRID (same as screenshot) */
.right-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.img-box {
    overflow: hidden;
}

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

/* EXACT CURVES */
.img1 {
    border-radius: 0 0 60px 0;
}

.img2 {
    border-radius: 40px 40px 0 0;
}

.img3 {
    border-radius: 0 50px 0 50px;
}

.img4 {
    border-radius: 70px 0 0 0;
}

.img5 {
    border-radius: 0 0 60px 0;
}



/* --------------------------- */
/* HOVER EFFECT */
/* --------------------------- */
.product-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.product-box:hover img {
    transform: scale(1.08);
}

/* Hover Effect */
.product-box:hover img {
    transform: scale(1.05);
}

/* COLLECTIONS SCROLL */
.collections-new {
    padding: 60px 6%;
    /* Background image lagana */
    background-image: url('images/premium-background-coloe.png');
    /* image ka path yaha lagayen */
    background-size: cover;
    /* poora section cover ho jaye */
    background-position: center;
    /* image center me rahe */
    background-repeat: no-repeat;
    /* repeat na ho */
    text-align: center;
}


.collections-new h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 30px;
    color: white;
}

.collections-wrapper {
    position: relative;
}

.collections-scroll {
    display: flex;
    gap: 25px;
    overflow-x: hidden;
    /* IMPORTANT */
    white-space: nowrap;
    /* IMPORTANT */
    padding-bottom: 40px;

}

.collections-scroll::-webkit-scrollbar {
    display: none;
}

.collections-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.collection-box {
    min-width: 300px;
    height: 360px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
}

.collection-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.collection-box:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 10px 14px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 5;
    transition: background 0.3s;
}

.scroll-btn:hover {
    background: rgba(214, 162, 78, 0.9);
    color: white;
}

.scroll-btn.left {
    left: -10px;
}

.scroll-btn.right {
    right: -10px;
}

/* FOLLOW INSTAGRAM / LINKEDIN */
.follow-instagram a {
    display: inline-block;
    padding: 14px 28px;
    font-size: 20px;
    font-weight: 600;
    background: #0077B5;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
}

.follow-instagram a:hover {
    transform: scale(1.05);
}

/* CONTACT & MAP */
.contact-map-clean {
    display: flex;
    gap: 40px;
    padding: 60px 60px;
    background: #fff;
}

.clean-contact-form {
    flex: 1;
}

.clean-contact-form h2 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.clean-contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.clean-contact-form input,
.clean-contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d8d8d8;
    border-radius: 6px;
    font-size: 16px;
    background: #fafafa;
    transition: 0.3s;
}

.clean-contact-form input:focus,
.clean-contact-form textarea:focus {
    border-color: #d6a24e;
    background: #fff;
}

.clean-contact-form button {
    width: 180px;
    padding: 12px 20px;
    background: #00343e;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    cursor: pointer;
    transition: 0.3s;
}

.clean-contact-form button:hover {
    background: #00343e;
}

.clean-contact-map {
    flex: 1;
    height: 440px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e3e3e3;
}
@media(max-width:768px) {
    .clean-contact-form h2 {
        font-size: 24px;
    }

    .clean-contact-form input,
    .clean-contact-form textarea {
        font-size: 15px;
    }
}


/* FOOTER */
.footer {
    background: #00343e;
    color: #e6e6e6;
    padding: 60px 40px 35px;
    margin-top: 60px;
    font-family: 'Cinzel', serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h3,
.footer-col h4 {
    color: #fff;
    margin-bottom: 18px;
    font-weight: 700;
    font-size: 18px;
}

.footer-logo {
    font-size: 26px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.footer-col p {
    color: #cfcfcf;
    margin-bottom: 18px;
    line-height: 1.65;
    font-size: 15px;
}

.footer-social a {
    color: #0077B5;
    font-size: 20px;
    margin-right: 14px;
    transition: 0.3s ease;
}

.footer-social a:hover {
    color: #0077B5;
}

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

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a {
    color: #d0d0d0;
    transition: 0.3s;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: #d6a24e;
}

.contact-form form {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.contact-form input {
    flex: 1;
    padding: 12px 14px;
    background: #0f2a30;
    border: 1px solid #39565b;
    border-radius: 6px;
    color: #fff;
    font-size: 15px;
}

.contact-form button {
    padding: 12px 24px;
    background: white;
    border: none;
    border-radius: 6px;
    color: #0d0d0d;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #00343e;
    color: #fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 35px;
    padding-top: 18px;
    border-top: 1px solid #34565e;
    color: #c1c1c1;
    font-size: 14px;
}

/* Align icons in Contact Info properly */
.footer-col ul li i {
    min-width: 18px;
    text-align: center;
}

@media(max-width:600px) {
    .contact-form form {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-form button {
        width: 100%;
    }
}


/* RESPONSIVE */
@media(max-width: 900px) {

    .luxury-hero,
    .bespoke-section {
        grid-template-columns: 1fr;
        padding: 40px 6%;
    }

    .lux-right img,
    .bespoke-left img {
        height: 320px;
    }

    .lux-left .main-title,
    .bespoke-right h1 {
        font-size: 32px;
    }

    .collections-new h2 {
        font-size: 34px;
    }

}

@media(max-width:768px) {
    .top-nav {
        flex-direction: column;
        padding: 16px 20px;
        gap: 10px;
    }

    .logo {
        position: relative;
        left: 0 !important;
        text-align: center;
        margin-bottom: 8px;
    }

    .menu {
        flex-direction: column !important;
        width: 100%;
        align-items: center;
        gap: 12px !important;
    }

    .menu li {
        width: 100%;
        text-align: center;
    }

    .menu li a {
        font-size: 18px;
        display: block;
        padding: 6px 0;
    }

    .dropdown-menu {
        left: 50% !important;
        transform: translateX(-50%);
        width: 200px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .lux-right img,
    .bespoke-left img {
        height: 250px;
    }

    .luxury-hero,
    .bespoke-section {
        padding: 20px 5%;
    }

    .collection-box {
        min-width: 220px;
        height: 280px;
    }

    .contact-map-clean {
        flex-direction: column;
        gap: 20px;
        padding: 20px 10px;
    }

    .clean-contact-map {
        height: 220px;
    }

    .clean-contact-form button {
        width: 100%;
    }

    /* Footer responsive */
    .footer-container {
        flex-direction: column !important;
        align-items: flex-start;
        gap: 25px;
    }

    .footer-col {
        width: 100%;
    }
}

/* Anchor Scroll Fix */
html {
    scroll-padding-top: 140px;
}

@media(max-width:768px) {
    html {
        scroll-padding-top: 180px;
    }
}