body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    width: 100%;
}
a {
    text-decoration: none;
}

.site-logo{
    height:65px;
    width:auto;
}


.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}






/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    padding: 15px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    opacity: 80%;
    background: rgba(17,17,17,.95);
    backdrop-filter: blur(10px);
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #F8F4EC;
}

nav a:hover{
    color:#C8A45D;
}

.logo {
    color: #C8A45D;
}

/* BUTTON */
.btn-primary {
    background: #C8A45D;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 5px;
}

/* HERO */
/* SECTION */
.hero-video-section {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

/* VIDEO */
.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

/* UNIQUE OVERLAY */
.hero-video-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(
            rgba(0,0,0,.65),
            rgba(0,0,0,.45)
        );
}

/* CONTENT */
.hero-video-content {
    position: relative;
    color: #fff;
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

/* HEADING */
.hero-video-content h1 {
    font-size: 64px;
    font-weight: 500;
}

/* STATS */
.hero-video-stats {
    display: flex;
    gap: 60px;
    margin: 30px 0;
}

.hero-video-stats h3 {
    font-size: 28px;
}

.hero-video-stats p {
    font-size: 14px;
    opacity: 0.8;
}

/* BUTTON */
.hero-video-btn {
    background: linear-gradient(90deg, #A67C35, #C8A45D);
    color: white;
    border: none;
    padding: 16px 35px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
}

.hero-video-btn:hover {
    opacity: 0.9;
}

.hero-video-btn:hover,
.service-btn:hover,
.destination-btn:hover{
    background: linear-gradient(
        135deg,
        #8F6A2C,
        #B8924A
    );
}

/* SECTIONS */
.section {
    padding: 60px 40px;
    text-align: center;
}

.grey {
    background: #F8F4EC;
}

/* GRID */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

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

/* CARDS */
.card {
    padding: 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* VENDOR */
.vendor-card img {
    width: 100%;
    border-radius: 10px;
}

.vendor-info {
    text-align: left;
}

/* WEDDING */
.wedding-card img {
    width: 100%;
    border-radius: 10px;
}


/* HOW IT WORKS */
.steps .step {
    text-align: center;
}

.step span {
    font-size: 30px;
    color: #C8A45D;
    font-weight: bold;
}

/* CITY CARDS */
.city-card {
    padding: 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: 0.3s;
}

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

/* PROPOSAL */
.proposal-flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

.proposal-text {
    flex: 1;
    text-align: left;
}

.proposal-img img {
    width: 100%;
    border-radius: 10px;
}

/* ABOUT */
.about-flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-img img {
    width: 100%;
    border-radius: 10px;
}

.about-text {
    flex: 1;
    text-align: left;
}

/* HOW SECTION */
.how-section {
    background: #f5efe6;
    padding: 80px 40px;
}

.how-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* LEFT SIDE */
.how-left {
    flex: 1;
}

.how-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 10px;
}

.how-sub {
    color: #777;
    margin-bottom: 40px;
}

/* STEPS */
.steps-wrapper {
    position: relative;
    padding-left: 40px;
}

/* vertical line */
.steps-wrapper::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 10px;
    height: 100%;
    width: 2px;
    background: #ddd;
}

/* step item */
.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

/* circle */
.step-circle {
    width: 30px;
    height: 30px;
    background: #C8A45D;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: absolute;
    left: -40px;
}

.step-circle.grey {
    background: #ccc;
}

/* content */
.step-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.step-content h4 {
    color: #777;
}

.step-item.active .step-circle{
    background:#A67C35;
}

/* RIGHT SIDE */
.how-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* circle background */
.circle-bg {
    position: relative;
    width: 350px;
    height: 350px;
    background: #f0e3c2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* image */
.circle-bg img {
    width: 200px;
}

/* chat box */
.chat-box {
    position: absolute;
    top: 40px;
    right: -40px;
    background: #fff;
    padding: 12px 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 180px;
    font-size: 14px;
}


.step-item.active h3 {
    color: #000;
    font-weight: 600;
}

.step-item:not(.active) h3 {
    color: #aaa;
}

.step-item.active .step-circle {
    background: #A67C35;
}

.step-circle.grey {
    background: #ddd;
}


.proposal-slider {
    position: relative;
    width: 900px;
    margin: auto;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
}

.slide img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    color: #aaa;
    z-index: 10;
}

.arrow.left {
    left: -50px;
}

.arrow.right {
    right: -50px;
}

.arrow:hover {
    color: #000;
}


/* SECTION */
.about-section {
    position: relative;
    background: #F3E8D1;
    padding: 100px 20px 80px;
    overflow: hidden;
}

/* CURVE TOP */
.about-curve {
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 150px;
    background: #fff;
    border-bottom-left-radius: 50% 100%;
    border-bottom-right-radius: 50% 100%;
}

/* CONTAINER */
.about-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

/* TITLE */
.about-title {
    font-size: 48px;
    margin-bottom: 40px;
}

/* CONTENT */
.about-content {
    text-align: left;
}

/* SUBTITLE */
.about-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

/* TEXT */
.about-content p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-more-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease;
}

.about-more-content.active {
    max-height: 500px;
}

.about-read-btn {
    background: none;
    border: none;
    color: #c2185b;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    padding: 0;
}

.about-read-btn:hover {
    text-decoration: none;
    color: #A67C35;

}

/* HIGHLIGHT */
.highlight {
    color: #A67C35;
    font-weight: 500;
}

/* READ MORE */
.read-more {
    display: inline-block;
    margin-top: 20px;
    color: #A67C35;
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}


.end-section {
    background: #f5f5f5;
    padding: 80px 20px;
}

/* BRAND */
.end-brand {
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.end-logo {
    width: 100px;
    /* margin-bottom: 10px; */
}

.end-brand h2 {
    color: #A67C35;
    margin-bottom: 10px;
}

.end-brand h3 {
    font-size: 32px;
    margin: 20px 0 10px;
}

.end-brand p {
    color: #666;
    line-height: 1.6;
}

/* GRID */
.end-grid {
    max-width: 1200px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

/* HEADINGS */
.end-grid h4 {
    margin-bottom: 15px;
    color: #999;
}

/* LIST */
.end-grid ul {
    list-style: none;
    padding: 0;
}

.end-grid li {
    margin-bottom: 10px;
    color: #222;
    cursor: pointer;
    transition: 0.2s;
}

.end-grid li:hover {
    color: #A67C35;
}

/* CONTACT */
.end-grid p {
    margin: 8px 0;
    color: #444;
}

/* SOCIAL */
.social li {
    display: flex;
    align-items: center;
    gap: 10px;
}


.service-section {
    padding: 80px 20px;
    background: #F8F4EC;
}

/* CARD */
.service-card {
    max-width: 1200px;
    margin: auto;
    background: #fff;
    border-radius: 20px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}

/* LEFT */
.service-left {
    flex: 1;
}

.service-left h2 {
    font-size: 48px;
    margin-bottom: 15px;
}

.subtitle {
    color: #777;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* LIST */
.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-list li {
    margin-bottom: 15px;
    font-size: 18px;
    position: relative;
    padding-left: 35px;
}

/* CHECK ICON */
.service-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    background: #C8A45D;
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* BUTTON */
.service-btn {
    background: linear-gradient(90deg, #A67C35, #C8A45D);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
}

.service-btn:hover {
    opacity: 0.9;
}

/* RIGHT */
.service-right {
    flex: 1;
    text-align: center;
}

.service-right img {
    max-width: 100%;
    height: auto;
}





.proposal-section {
    padding: 80px 20px;
    text-align: center;
    background: #f5f5f5;
}

/* HEADING */
.proposal-heading {
    font-size: 48px;
    margin-bottom: 40px;
    font-weight: 500;
}

/* CAROUSEL */
.proposal-carousel {
    position: relative;
    max-width: 1000px;
    margin: auto;
    overflow: visible;
}

/* TRACK */
.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

/* SLIDES */
.carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
}

.carousel-slide img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ARROWS */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    border: none;
    background: none;
    cursor: pointer;
    color: #aaa;
}

.carousel-btn.left {
    left: -40px;
}

.carousel-btn.right {
    right: -40px;
}

.carousel-btn:hover {
    color: #000;
}

/* NOTE */
.proposal-note {
    margin-top: 30px;
    color: #777;
}

.carousel-window {
    overflow: hidden;
}





.destination-section {
    /* padding: 50px 20px; */
    /* background: #faf8f5; */
}

.destination-container {
    /* max-width: 1200px; */
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    background:#fff;
    border:1px solid rgba(200,164,93,.2);
    border-radius:15px;
    padding:30px;
    box-shadow:0 10px 40px rgba(0,0,0,.06);
    transition:.3s;
}

.destination-container:hover{
    box-shadow:0 20px 60px rgba(166,124,53,.15);
}

.destination-image {
    flex: 1;
}

.destination-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.destination-content {
    flex: 1;
}

.destination-tag {
    display: inline-block;
    padding: 8px 18px;
    background:rgba(200,164,93,.12);
    color: #A67C35;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
    border:1px solid rgba(200,164,93,.25);
}

.destination-content h1 {
    font-size: 52px;
    margin-bottom: 25px;
    color: #111;
    font-weight:700;
    letter-spacing:-1px;
}
}

.destination-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}

.destination-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0;
}

.destination-locations span {
    padding: 10px 18px;
    background: #fff;
    border: 1px solid #d8c39a;
    border-radius: 30px;
    font-size: 14px;
    transition: 0.3s;
    color: #7d5f27;
    font-weight:500;
}

.destination-locations span:hover {
    background: #C8A45D;
    color: #fff;
    border-color: #C8A45D;
}

.destination-btn {
    display: inline-block;
    text-decoration: none;
    padding: 14px 30px;
    background: linear-gradient(90deg, #A67C35, #C8A45D);
    color: #fff;
    border-radius: 40px;
    font-weight: 500;
    transition: 0.3s;
}

.destination-btn:hover {
    transform: translateY(-2px);
}

.process-section {
    padding: 100px 20px;
    background: #faf8f5;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(194,24,91,0.08);
    color: #A67C35;
    font-size: 14px;
}

.process-heading {
    font-size: 54px;
    margin: 15px 0;
}

.process-description {
    color: #777;
}

.process-layout {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.process-visual {
    flex: 1;
}

.process-visual img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.process-flow {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.process-card {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s;
}

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

.process-count {
    min-width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg,#A67C35,#C8A45D);
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-content h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

.process-content p {
    color: #666;
    line-height: 1.7;
}




.end-section{
    background:#111111;
}

.end-section h2,
.end-section h3,
.end-section h4,
.end-section li,
.end-section p{
    color:#F8F4EC;
}

.end-grid li:hover{
    color:#C8A45D;
}


.card,
.city-card,
.process-card,
.service-card {
    background: #fff;
    border: 1px solid rgba(200,164,93,0.25);
    border-radius: 20px;
    transition: all .35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.card:hover,
.city-card:hover,
.process-card:hover,
.service-card:hover {
    transform: translateY(-8px);
    border-color: #C8A45D;
    box-shadow: 0 20px 60px rgba(166,124,53,0.18);
}



.service-item{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    border:1px solid rgba(200,164,93,.15);
    transition:all .35s ease;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.service-item:hover{
    transform:translateY(-10px);
    border-color:#C8A45D;
    box-shadow:0 25px 60px rgba(166,124,53,.18);
}

.service-item img{
    width:100%;
    display:block;
    transition:transform .5s ease;
}

.service-item:hover img{
    transform:scale(1.05);
}

.service-item h3{
    padding:10px;
    margin:0;
    color:#111;
    font-size:18px;
    font-weight:300;
}




/* ==========================
   TABLET RESPONSIVE
========================== */

@media (max-width: 1024px) {

    .hero-video-content h1,
    .process-heading,
    .destination-content h1,
    .service-left h2,
    .proposal-heading,
    .about-title {
        font-size: 42px;
    }

    .hero-video-stats {
        gap: 30px;
    }

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

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

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

    .service-card,
    .destination-container,
    .process-layout,
    .about-flex,
    .proposal-flex,
    .how-flex {
        flex-direction: column;
    }

    .proposal-slider,
    .proposal-carousel {
        width: 100%;
        max-width: 100%;
    }

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

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



/* ==========================
   MOBILE RESPONSIVE
========================== */

@media (max-width: 767px) {

    body {
        overflow-x: hidden;
    }


    .navbar {
        padding: 12px 15px;
    }

    .nav-flex {
        /* flex-direction: column; */
        flex-direction: row !important;
        align-items: center;
    }

    .logo {
        font-size: 24px;
        text-align: center;
    }
    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        width: 100%;
    }

    nav a {
        margin: 0;
        font-size: 13px;
        padding: 6px 8px;
    }

    /* NAVBAR
    .navbar {
        padding: 15px;
    }

    .nav-flex {
        flex-direction: column;
        gap: 15px;
    } */

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    /* nav a {
        margin: 0 5px;
        font-size: 14px;
    } */

    /* HERO */
    .hero-video-section {
        height: 70vh;
    }

    .hero-video-content {
        text-align: center;
    }

    .hero-video-content h1 {
        font-size: 36px;
        line-height: 1.2;
    }

    .hero-video-stats {
        flex-direction: column;
        gap: 15px;
    }

    .hero-video-btn {
        width: 100%;
        max-width: 300px;
    }

    /* COMMON HEADINGS */
    .process-heading,
    .destination-content h1,
    .service-left h2,
    .proposal-heading,
    .about-title,
    .how-title {
        font-size: 32px;
    }

    /* GRIDS */
    .grid-4,
    .grid-3,
    .grid-1,
    .end-grid {
        grid-template-columns: 1fr;
    }

    /* FLEX LAYOUTS */
    .service-card,
    .destination-container,
    .process-layout,
    .about-flex,
    .proposal-flex,
    .how-flex {
        flex-direction: column;
    }

    /* SECTIONS */
    .section,
    .service-section,
    .destination-section,
    .process-section,
    .proposal-section,
    .about-section,
    .end-section {
        padding: 60px 15px;
    }

    /* PROCESS */
    .process-card {
        flex-direction: column;
        text-align: center;
    }

    .process-count {
        margin: auto;
    }

    /* SERVICE */
    .service-card {
        padding: 25px;
    }

    /* DESTINATION */
    .destination-locations {
        justify-content: center;
    }

    /* HOW SECTION */
    .circle-bg {
        width: 280px;
        height: 280px;
    }

    .circle-bg img {
        width: 160px;
    }

    .step-content h3 {
        font-size: 22px;
    }

    /* ABOUT */
    .about-content {
        text-align: center;
    }

    /* PROPOSAL SLIDER */
    .proposal-slider,
    .proposal-carousel {
        width: 100%;
    }

    .carousel-btn {
        font-size: 22px;
    }

    .carousel-btn.left {
        left: 5px;
    }

    .carousel-btn.right {
        right: 5px;
    }

    /* FOOTER SECTION */
    .end-brand h3 {
        font-size: 28px;
    }

    .end-grid {
        gap: 30px;
    }
}

@media (max-width: 767px) {

    .dropdown-content,
    .mega {
        position: static;
        width: 100%;
        box-shadow: none;
    }

    .dropdown:hover .dropdown-content {
        display: none;
    }
}




/* ==========================
   MOBILE MENU
========================== */

.logo-wrap{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.logo-wrap img{
    width:45px;
    height:45px;
    object-fit:contain;
}

.logo-wrap span{
    font-size:20px;
    font-weight:700;
    color:#c8a45d;
}


/* HAMBURGER */

.hamburger-btn{

    width:42px;
    height:42px;

    display:none;
    flex-direction:column;
    justify-content:center;
    gap:5px;

    background:none;
    border:none;

    cursor:pointer;
}

.hamburger-btn span{

    width:26px;
    height:2px;

    background:#c8a45d;

    border-radius:50px;

    transition:.3s;
}


/* BACKDROP */

.mobile-backdrop{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.55);

    backdrop-filter:blur(5px);

    opacity:0;
    visibility:hidden;

    transition:.35s;

    z-index:99998;
}

.mobile-backdrop.active{
    opacity:1;
    visibility:visible;
}


/* SIDEBAR */

.mobile-nav{

    position:fixed;
    top:0;
    right:0;

    width:340px;
    max-width:90%;

    height:100vh;

    background:
    linear-gradient(
        180deg,
        #fffdf8 0%,
        #f7f1e7 100%
    );

    transform:translateX(100%);

    transition:.35s ease;

    z-index:99999;

    display:flex;
    flex-direction:column;

    box-shadow:
    -20px 0 60px rgba(0,0,0,.15);
}

.mobile-nav.active{
    transform:translateX(0);
}


/* CLOSE */

.mobile-close{

    position:absolute;
    top:20px;
    right:20px;

    width:42px;
    height:42px;

    border:none;
    border-radius:50%;

    background:#fff;

    box-shadow:
    0 10px 20px rgba(0,0,0,.1);

    cursor:pointer;
}


/* HEADER */

.mobile-menu-header{

    text-align:center;

    padding:50px 25px 35px;

    border-bottom:
    1px solid rgba(200,164,93,.2);
}

.mobile-menu-header img{

    width:90px;

    margin-bottom:15px;
}

.mobile-menu-header h3{

    margin:0;

    font-size:22px;

    color:#111;
}

.mobile-menu-header p{

    margin-top:10px;

    color:#b8893b;

    font-size:13px;

    letter-spacing:1px;
}


/* LINKS */

.mobile-menu-links{

    flex:1;

    padding:20px 30px;
}

.mobile-menu-links a{

    display:flex;
    align-items:center;
    gap:15px;

    padding:18px 0;

    text-decoration:none;

    color:#222;

    font-size:17px;
    font-weight:500;

    border-bottom:
    1px solid rgba(0,0,0,.05);

    transition:.3s;
}

.mobile-menu-links a:hover{

    color:#c8a45d;

    padding-left:8px;
}

.mobile-menu-links i{

    color:#c8a45d;

    width:20px;
}

/* MOBILE */

@media(max-width:767px){

    .desktop-nav{
        display:none;
    }

    .hamburger-btn{
        display:flex;
    }

    .nav-flex{
        justify-content:space-between;
        align-items:center;
    }

    .logo-wrap span{
        font-size:16px;
    }

    body.menu-open{
        overflow:hidden;
    }
}





/* ==========================
   LUXURY MODAL
========================== */

.venue-modal {
    border-top: 4px solid #c8a45d;
}

.venue-modal-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,.65);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;

    transition: .3s ease;

    z-index: 999999;
}

.venue-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.venue-modal {
    width: 90%;
    max-width: 750px;

    background:
    linear-gradient(
    180deg,
    #fffdf9 0%,
    #f8f4eb 100%
    );

    border: 2px solid rgba(200,164,93,.25);

    box-shadow:
    0 30px 80px rgba(0,0,0,.18);

    border-radius: 24px;

    padding: 40px;

    position: relative;

    transform: translateY(20px);

    transition: .3s ease;
}

.venue-modal-overlay.active .venue-modal {
    transform: translateY(0);
}

.venue-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;

    border: none;
    background: none;

    font-size: 20px;
    cursor: pointer;
}

.venue-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.venue-modal-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.venue-modal-header p {
    color: #666;
}

.venue-form-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.venue-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.venue-field input,
.venue-field select {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    box-sizing: border-box;
    background:#fff;
    border:1px solid #e8dfcf;
    transition:.3s;
}

.venue-field input:focus,
.venue-field select:focus {

    border-color:#c8a45d;

    box-shadow:
    0 0 0 4px rgba(200,164,93,.15);

    outline:none;
}

.venue-field label i{
    color:#b78b3d;
    margin-right:8px;
}

.venue-trust-strip {

    display:flex;
    justify-content:center;
    gap:30px;

    margin:30px 0;

    color:#7b6b52;
}

.venue-submit-btn {
    width: 100%;

    margin-top: 25px;

    border: none;

    padding: 16px;

    border-radius: 40px;

    background: linear-gradient(135deg, #A67C35, #C8A45D);

    color: white;

    font-size: 16px;

    cursor: pointer;
}

@media (max-width: 768px) {

    .venue-modal {
        width: 80%;
        height: 80vh;
        max-width: 80%;
        border-radius: 0;
        margin: 0;
        overflow-y: auto;
    }

    .venue-modal-wrapper {
        display: block;
        height: auto;
    }

    .venue-modal-left {
        width: 100%;
        padding: 20px;
    }

    .venue-modal-right {
        display: none;
    }

    .venue-modal-subtitle {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .venue-modal-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .venue-modal-description {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 25px;
    }

    .venue-form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .venue-form-group label {
        font-size: 14px;
    }

    .venue-form-group input,
    .venue-form-group select {
        height: 55px;
        font-size: 15px;
    }

    .venue-modal-features {
        display: none;
    }

    .venue-submit-btn {
        width: 100%;
        height: 58px;
        font-size: 17px;
        margin-top: 25px;
    }

    .venue-modal-close {
        top: 15px;
        right: 15px;
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .venue-modal-title{
        font-size:28px;
    }

    .venue-logo{
        display:none;
    }
}