* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    background: #dfe7dc; 
    font-family: 'Poppins', sans-serif;
}

.header {
    width: 100%;
    background: #113313; 
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

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

.logo-wrap {
    display: flex;
    height: 100%;
    align-items: center;
    flex-shrink: 0;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 220px;
    width: 322px;
    margin-left: -150px;
    margin-top: 30px;
    border-radius: 50%;
    object-fit: cover;
}

#navMenu {
    display: flex;
    gap: 48px; 
    margin-top: 10px;
    margin-right: -100px;
}

#navMenu a {
    text-decoration: none;
    color: #F5F5F5;
    font-size: 22px;
    font-family: "IBM Plex Serif", serif;;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    padding: 6px 0;
}

#navMenu a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #D4AF37;
    left: 0;
    bottom: -6px;
    transition: width 0.3s ease;
}

#navMenu a:hover {
    color: #D4AF37;
}

#navMenu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 32px; 
    color: #D4AF37;
    cursor: pointer;
    user-select: none;
}

@media (max-width: 1400px) {

    /* Reduce header height */
    .container.nav {
        height: 90px;
    }
    .logo-img {
        height: 130px;
    }
    .menu-toggle {
        display: block;
        z-index: 1100;
    }

    .logo-img {
        margin-left: -70px;
    }

    #navMenu {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: #113313;

        flex-direction: column;
        align-items: center;
        gap: 20px;

        padding: 30px 0;

        display: none; /* hidden initially */
    }

    /* Show nav when active */
    #navMenu.active {
        display: flex;
    }

    /* Mobile nav links */
    #navMenu a {
        font-size: 18px;
        color: #ffffff;
    }

    #navMenu a::after {
        display: none; /* remove underline on mobile */
    }
    
}

.hero-banner{
    width:100%;
    height:110vh;
    overflow:hidden;
    margin-top: 10px;
    position:relative;
}

.hero-banner .slide{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:top center;
    display:block;
}


/* Large Tablets */
@media (max-width: 1024px){

    .hero-banner{
        height:96vh;
    }

    .hero-banner .slide{
        object-position:center top;
    }
}


/* Tablets */
@media (max-width: 768px){

    .hero-banner{
        height:65vh;
        margin-top: 90px;
    }

    .hero-banner .slide{
        object-position:cover;
    }
}


/* Mobile */
@media (max-width: 576px){

    .hero-banner{
        height:55vh;
    }

    .hero-banner .slide{
        object-position:cover;
    }
}


/* Small Mobile */
@media (max-width: 400px){

    .hero-banner{
        height:50vh;
    }

    .hero-banner .slide{
        object-position:cover;
    }
}


.contact-section {
    padding: 100px 6%;
    background: #f5e6c8;
    color: #fff;
}

/* TITLE */
.contact-title {
    text-align: center;
    font-size: 65px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 10px;
}

.contact-subtitle {
    text-align: center;
    color: #cfcfcf;
    margin-bottom: 50px;
    font-size: 16px;
}

/* GRID */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* MAP */
.map-box {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: none;
}

/* FORM */
.form-box {
    background: #1b1b1b;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    align-items: stretch;
}

.form-box form {
    width: 100%;
}

/* INPUTS */
.input-group {
    margin-bottom: 18px;
}

input,
textarea {
    width: 100%;
    padding: 13px;
    background: #2a2a2a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

input:focus,
textarea:focus {
    border-color: #00e676;
}

/* BUTTON */
.btn-submit {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #f50000, #ffc400);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-title {
        font-size: 32px;
    }
}



.lux-service{
    position: relative;
    padding: 120px 8%;
    background: #dfe7dc;
    overflow: hidden;
    margin-top: -50px;
}

.lux-bg-circle{
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
}

.lux-bg-circle.one{
    width: 420px;
    height: 420px;
    background: rgba(255, 196, 0, 0.08);
    top: -120px;
    left: -120px;
}

.lux-bg-circle.two{
    width: 350px;
    height: 350px;
    background: rgba(255,255,255,0.04);
    bottom: -120px;
    right: -120px;
}

.lux-service-wrap{
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    margin-top: -50px;
    align-items: center;
}

.lux-tag{
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background: black;
    border: 1px solid rgba(255,255,255,0.08);
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 28px;
}

.lux-left h2{
    font-size: 54px;
    font-family: 'Playfair Display', sans-serif;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 28px;
    font-weight: 700;
}

.lux-desc{
    color: #000000;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 50px;
    max-width: 700px;
}

.lux-features{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 22px;
    margin-bottom: 45px;
}

.lux-card{
    display: flex;
    gap: 18px;
    padding: 28px;
    border-radius: 28px;
    background: rgba(1, 1, 1, 1);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(14px);
    transition: 0.4s ease;
}

.lux-icon{
    min-width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245,197,66,0.12);
    font-size: 24px;
}

.lux-card h3{
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}

.lux-card p{
    color: #f3d0d0;
    font-size: 14px;
    line-height: 1.7;
}

.lux-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 42px;
    border-radius: 60px;
    background: linear-gradient(135deg,#f5c542,#d89b00);
    color: #111;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.4s ease;
    box-shadow: 0 15px 40px rgba(245,197,66,0.25);
}

.lux-btn:hover{
    transform: translateY(-4px);
}

.lux-right{
    position: relative;
}

.lux-map-card{
    position: relative;
    height: 650px;
    border-radius: 36px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.lux-map-card iframe{
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1) contrast(1.1);
}

.lux-floating-card{
    position: absolute;
    padding: 24px 28px;
    border-radius: 24px;
    background: rgba(12,12,12,0.78);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.08);
}

.lux-floating-card.top{
    top: 25px;
    left: 25px;
}

.lux-floating-card.bottom{
    bottom: 25px;
    right: 25px;
}

.lux-floating-card h3{
    color: #fff;
    font-size: 34px;
    margin-bottom: 6px;
}

.lux-floating-card span{
    color: #cfcfcf;
    font-size: 14px;
}

.lux-stat-banner{
    position: absolute;
    left: -50px;
    bottom: 40px;
    width: 240px;
    padding: 22px;
    border-radius: 30px;
    background: linear-gradient(135deg,#f5c542,#d89b00);
    box-shadow: 0 20px 50px rgba(245,197,66,0.25);
}

.lux-stat-banner h2{
    font-size: 35px;
    color: #111;
    margin-bottom: 14px;
}

.lux-stat-banner p{
    color: #222;
    line-height: 1.7;
    font-size: 15px;
}

/* =========================
   LARGE TABLETS (1024px)
========================= */
@media (max-width: 1024px){

  .lux-service-wrap{
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 0;
  }

  .lux-left{
    text-align: center;
  }

  .lux-desc{
    margin-left: auto;
    margin-right: auto;
  }

  .lux-features{
    grid-template-columns: 1fr 1fr;
    justify-content: center;
  }

  .lux-map-card{
    height: 500px;
  }

}


/* =========================
   TABLETS & MOBILE (768px)
========================= */
@media (max-width: 768px){

  .lux-service{
    padding: 90px 5%;
    margin-top: 0;
  }

  .lux-left h2{
    font-size: 36px;
  }

  .lux-desc{
    font-size: 15px;
    line-height: 1.7;
  }

  .lux-features{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .lux-card{
    flex-direction: column;
    text-align: center;
    padding: 22px;
  }

  .lux-icon{
    margin: 0 auto 10px;
  }

  .lux-card h3{
    font-size: 18px;
  }

  .lux-card p{
    font-size: 13px;
  }

  .lux-map-card{
    height: 380px;
    border-radius: 24px;
  }

}


/* =========================
   SMALL MOBILE (480px)
========================= */
@media (max-width: 480px){

  .lux-left h2{
    font-size: 28px;
    line-height: 1.2;
  }

  .lux-tag{
    font-size: 10px;
    padding: 8px 16px;
  }

  .lux-desc{
    font-size: 14px;
  }

  .lux-service-wrap{
    gap: 40px;
  }

  .lux-card{
    border-radius: 18px;
  }

  .lux-map-card{
    height: 300px;
  }

}

.contact-info h3{
  color: #d4af37;
  font-size: 28px;
  font-family: 'Playfair Display', sans-serif;
}

.contact-info p {
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.6;
  font-size: 20px;
}


.social-lux{
    position: relative;
    padding: 110px 8%;
    background: #efe2cf;
    overflow: hidden;
}

.social-container{
    position: relative;
    z-index: 2;
    margin-top: -50px;
}

.social-blur{
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.blur1{
    width: 450px;
    height: 450px;
    background: rgba(255, 196, 0, 0.08);
    top: -100px;
    left: -100px;
}

.blur2{
    width: 350px;
    height: 350px;
    background: rgba(255,255,255,0.04);
    bottom: -100px;
    right: -100px;
}

.social-header{
    text-align: center;
    margin-bottom: 70px;
}

.social-tag{
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background: black;
    border: 1px solid rgba(255,255,255,0.08);
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.social-header h2{
    font-size: 52px;
    line-height: 1.2;
    color: #020202;
    font-family: 'Playfair Display', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}

.social-header p{
    max-width: 760px;
    margin: auto;
    color: #000000;
    font-size: 17px;
    line-height: 1.8;
}

.social-stats{
    margin-top: 45px;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.stat-box{
    min-width: 180px;
    padding: 12px;
    border-radius: 24px;
    background: black;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
}

.stat-box h3{
    color: #fff;
    font-size: 25px;
    margin-bottom: 8px;
}

.stat-box span{
    color: #bdbdbd;
    font-size: 15px;
}

.social-grid{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    grid-auto-rows: 260px;
    gap: 24px;
}

.social-card{
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    cursor: pointer;
}

.social-card.large{
    grid-column: span 2;
    grid-row: span 2;
}

.social-card.wide{
    grid-column: span 2;
}

.social-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s ease;
}

.social-card::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.88),
        rgba(0,0,0,0.25),
        transparent
    );
}

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

.social-overlay{
    position: absolute;
    left: 28px;
    bottom: 28px;
    z-index: 3;
}

.social-overlay span{
    display: inline-block;
    padding: 7px 16px;
    border-radius: 40px;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 12px;
    margin-bottom: 14px;
}

.social-overlay h3{
    color: #fff;
    font-size: 28px;
    line-height: 1.4;
    max-width: 320px;
}

.social-cta{
    margin-top: 70px;
    text-align: center;
}

.social-cta a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 42px;
    border-radius: 60px;
    background: linear-gradient(135deg,#f5c542,#d89b00);
    color: #111;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(245,197,66,0.25);
}

.social-cta a:hover{
    transform: translateY(-4px);
}

/* =========================
   LARGE TABLETS (1024px)
========================= */
@media (max-width: 1024px){

  .social-grid{
    grid-template-columns: repeat(3,1fr);
    grid-auto-rows: 220px;
  }

  .social-card.large{
    grid-column: span 2;
    grid-row: span 1;
  }

  .social-card.wide{
    grid-column: span 2;
  }

  .social-header h2{
    font-size: 40px;
  }

}


/* =========================
   TABLETS & MOBILE (768px)
========================= */
@media (max-width: 768px){

  .social-lux{
    padding: 80px 5%;
  }

  .social-container{
    margin-top: 0;
  }

  .social-header{
    margin-bottom: 50px;
  }

  .social-header h2{
    font-size: 32px;
  }

  .social-header p{
    font-size: 15px;
  }

  .social-grid{
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
    gap: 16px;
  }

  .social-card.large,
  .social-card.wide{
    grid-column: span 2;
    grid-row: span 1;
  }

  .social-overlay{
    left: 18px;
    bottom: 18px;
  }

  .social-overlay h3{
    font-size: 20px;
  }

  .social-cta a{
    padding: 14px 30px;
    font-size: 14px;
  }

}


/* =========================
   SMALL MOBILE (480px)
========================= */
@media (max-width: 480px){

  .social-header h2{
    font-size: 26px;
  }

  .social-tag{
    font-size: 11px;
    padding: 8px 16px;
  }

  .social-header p{
    font-size: 14px;
  }

  .social-grid{
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .social-card.large,
  .social-card.wide{
    grid-column: span 1;
  }

  .social-overlay h3{
    font-size: 18px;
  }

  .stat-box{
    min-width: 140px;
    padding: 14px;
  }

  .stat-box h3{
    font-size: 20px;
  }

  .stat-box span{
    font-size: 13px;
  }

}


.nova-luxury{
    position: relative;
    padding: 130px 8%;
    margin-top: -50px;
    background: #efe2cf;
    overflow: hidden;
}

.nova-glow{
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
}

.glow-1{
    width: 450px;
    height: 450px;
    background: rgba(255, 196, 0, 0.08);
    top: -120px;
    left: -120px;
}

.glow-2{
    width: 350px;
    height: 350px;
    background: rgba(255,255,255,0.03);
    bottom: -100px;
    right: -100px;
}

.nova-wrapper{
    position: relative;
    z-index: 2;
    margin-top: -50px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 80px;
}

.nova-mini-tag{
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background: black;
    border: 1px solid rgba(255,255,255,0.08);
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.nova-content h2{
    color: #000000;
    font-family: 'Playfair Display', sans-serif;
    font-size: 54px;
    line-height: 1.08;
    margin-bottom: 28px;
    font-weight: 700;
}

.nova-text{
    color: #080808;
    font-size: 17px;
    line-height: 1.9;
    max-width: 680px;
    margin-bottom: 50px;
}

.nova-features{
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 45px;
}

.nova-feature{
    display: flex;
    gap: 20px;
    padding: 26px;
    border-radius: 28px;
    background: black;
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(14px);
    transition: 0.4s ease;
}


.nova-icon{
    min-width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245,197,66,0.12);
    font-size: 24px;
}

.nova-feature h3{
    color: #fff;
    font-size: 21px;
    margin-bottom: 10px;
}

.nova-feature p{
    color: #bdbdbd;
    line-height: 1.7;
    font-size: 14px;
}

.nova-premium-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border-radius: 60px;
    background: linear-gradient(135deg,#f5c542,#d89b00);
    color: #111;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: 0.4s ease;
    box-shadow: 0 18px 40px rgba(245,197,66,0.25);
}

.nova-premium-btn:hover{
    transform: translateY(-4px);
}

.nova-visual{
    position: relative;
}

.nova-image-wrap{
    position: relative;
    height: 760px;
    border-radius: 42px;
    background: rgb(129, 129, 129);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.nova-image-wrap::before{
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(245,197,66,0.08);
    border-radius: 50%;
    filter: blur(80px);
}

.nova-image-wrap img{
    position: relative;
    width: 100%;
    z-index: 2;
    object-fit: cover;
    filter: drop-shadow(0 40px 60px rgba(0,0,0,0.5));
}

.nova-float{
    position: absolute;
    padding: 24px 30px;
    border-radius: 24px;
    background: rgba(12,12,12,0.78);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.08);
    z-index: 3;
    margin-right: 50px;
}

.nova-float h3{
    color: #fff;
    font-size: 36px;
    margin-bottom: 6px;
}

.nova-float span{
    color: #cfcfcf;
    font-size: 14px;
}

.top-card{
    top: 40px;
    left:20px;
}

.middle-card{
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
}

.bottom-card{
    bottom: 40px;
    left: 20px;
}

/* =========================
   LARGE TABLETS (1024px)
========================= */
@media (max-width: 1024px){

  .nova-wrapper{
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 0;
  }

  .nova-content{
    text-align: center;
  }

  .nova-text{
    margin-left: auto;
    margin-right: auto;
  }

  .nova-features{
    align-items: center;
  }

  .nova-feature{
    max-width: 600px;
    width: 100%;
  }

  .nova-image-wrap{
    height: auto;
    padding: 60px 20px;
  }

  .nova-image-wrap img{
    max-width: 80%;
  }

  .nova-float{
    position: relative;
    margin-top: 20px;
    left: auto;
    right: auto;
    bottom: auto;
  }

}


/* =========================
   TABLETS & MOBILE (768px)
========================= */
@media (max-width: 768px){

  .nova-luxury{
    padding: 90px 5%;
  }

  .nova-content h2{
    font-size: 38px;
  }

  .nova-text{
    font-size: 15px;
    line-height: 1.7;
  }

  .nova-feature{
    flex-direction: column;
    text-align: center;
    padding: 22px;
  }

  .nova-icon{
    margin: 0 auto 10px;
  }

  .nova-feature h3{
    font-size: 18px;
  }

  .nova-feature p{
    font-size: 13px;
  }

  .nova-premium-btn{
    padding: 14px 28px;
    font-size: 14px;
  }

  .nova-image-wrap img{
    max-width: 100%;
  }

}


/* =========================
   SMALL MOBILE (480px)
========================= */
@media (max-width: 480px){

  .nova-content h2{
    font-size: 30px;
    line-height: 1.2;
  }

  .nova-mini-tag{
    font-size: 10px;
    padding: 8px 16px;
  }

  .nova-text{
    font-size: 14px;
  }

  .nova-wrapper{
    gap: 40px;
  }

  .nova-feature{
    border-radius: 18px;
  }

  .nova-image-wrap{
    border-radius: 24px;
  }

}

@media (max-width: 1026px){
  .nova-image-wrap {
    display: none;
  }
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10%;
    background: #113313; 
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0.5px;

    border-top: 1px solid rgba(255,255,255,0.08);
}


.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: 0.3s ease;
}

/* underline animation */
.footer-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 1px;
    background: #d4af37;
    transition: 0.3s ease;
}

.footer-link:hover {
    color: #f5d77a;
}

.footer-link:hover::after {
    width: 100%;
}

/* LEFT */
.footer-left {
    text-align: left;
    opacity: 0.9;
}

/* RIGHT */
.footer-right {
    text-align: right;
    opacity: 0.7;
    transition: 0.3s;
}

/* HOVER (premium subtle touch) */
.footer-right:hover {
    opacity: 1;
    color: #d4af37;
}

/* =========================
   TABLETS (768px)
========================= */
@media (max-width: 768px){

  .footer{
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 24px 6%;
  }

  .footer-left,
  .footer-right{
    text-align: center;
    opacity: 0.9;
  }

  .footer-right{
    opacity: 0.8;
  }

}


/* =========================
   SMALL MOBILE (480px)
========================= */
@media (max-width: 480px){

  .footer{
    font-size: 14px;
    padding: 20px 5%;
  }

  .footer-left,
  .footer-right{
    line-height: 1.6;
  }

}

.lux-contact{
    position: relative;
    padding: 130px 8%;
    background: #efe2cf;
    overflow: hidden;
    margin-top: -50px;
}

.contact-glow{
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
}

.glow-left{
    width: 450px;
    height: 450px;
    background: rgba(255, 196, 0, 0.08);
    top: -100px;
    left: -100px;
}

.glow-right{
    width: 380px;
    height: 380px;
    background: rgba(255,255,255,0.03);
    bottom: -120px;
    right: -120px;
}

.lux-contact-wrapper{
    position: relative;
    z-index: 2;
    display: grid;
    margin-top: -80px;
    grid-template-columns: 1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.lux-contact-tag{
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background: black;
    border: 1px solid rgba(255,255,255,0.08);
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.lux-contact-info h2{
    color: #000000;
    font-size: 54px;
    font-family: 'Playfair Display', sans-serif;
    line-height: 1.08;
    margin-bottom: 28px;
    font-weight: 700;
}

.lux-contact-text{
    color: #050505;
    font-size: 17px;
    line-height: 1.9;
    max-width: 650px;
    margin-bottom: 50px;
}

.lux-info-grid{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lux-info-card{
    display: flex;
    gap: 20px;
    padding: 28px;
    border-radius: 28px;
    background: black;
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(14px);
    transition: 0.4s ease;
}

.lux-info-card:hover{
    transform: translateY(-5px);
    background: black;
}

.lux-info-icon{
    min-width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245,197,66,0.12);
    font-size: 24px;
}

.lux-info-card span{
    display: block;
    color: #f5c542;
    font-size: 13px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.lux-info-card h4{
    color: #fff;
    font-size: 19px;
    line-height: 1.6;
    font-weight: 500;
}

/* FORM BOX */
.lux-form-box{
    background: linear-gradient(145deg,#0b0b0b,#151515);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

/* GOLD TOP GLOW */
.lux-form-box::before{
    content:"";
    position:absolute;
    top:-100px;
    right:-100px;
    width:250px;
    height:250px;
    background: radial-gradient(circle,#d2a94033 0%,transparent 70%);
    z-index:0;
}

/* CONTENT ABOVE GLOW */
.lux-form-box *{
    position: relative;
    z-index: 2;
}


/* HEADING */
.lux-form-head span{
    color:#d2a940;
    font-size:14px;
    letter-spacing:3px;
    font-weight:600;
    display:block;
    margin-bottom:12px;
}

.lux-form-head h3{
    color:#fff;
    font-size:42px;
    font-family: 'Playfair Display', sans-serif;
    font-weight:700;
    margin-bottom:12px;
}

.lux-form-head p{
    color:#bdbdbd;
    font-size:16px;
    margin-bottom:35px;
}


/* INPUTS */
.lux-form-box .form-control{
    background:#111;
    border:1px solid rgba(255,255,255,0.08);
    height:58px;
    border-radius:14px;
    color:#fff;
    padding:0 20px;
    font-size:15px;
    transition:0.3s ease;
    box-shadow:none;
}

.lux-form-box textarea.form-control{
    height:160px;
    padding-top:18px;
    resize:none;
}

/* PLACEHOLDER */
.lux-form-box .form-control::placeholder{
    color:#8a8a8a;
}

/* FOCUS EFFECT */
.lux-form-box .form-control:focus{
    border-color:#d2a940;
    background:#151515;
    box-shadow:0 0 15px rgba(210,169,64,0.2);
    color:#fff;
}


/* BUTTON */
.lux-form-box button{
    width:100%;
    height:58px;
    border:none;
    border-radius:14px;
    background: linear-gradient(135deg,#d2a940,#b8912f);
    color:#000;
    font-size:16px;
    font-weight:700;
    letter-spacing:1px;
    transition:0.3s ease;
    margin-top:10px;
}

.lux-form-box button:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(210,169,64,0.35);
}


/* SUCCESS MESSAGE */
.sent-message{
    margin-bottom:15px;
    background:#069043;
    padding:14px;
    border-radius:10px;
    font-size:14px;
}

/* LOADING */
.loading{
    color:#d2a940;
    margin-bottom:15px;
}


/* MOBILE */
@media(max-width:768px){

    .lux-form-box{
        padding:30px 22px;
        border-radius:18px;
    }

    .lux-form-head h3{
        font-size:30px;
    }

}

/* =========================
   LARGE TABLETS (1024px)
========================= */
@media (max-width: 1024px){

  .lux-contact-wrapper{
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 0;
  }

  .lux-contact-info{
    text-align: center;
  }

  .lux-contact-text{
    margin-left: auto;
    margin-right: auto;
  }

  .lux-info-card{
    max-width: 600px;
    margin: auto;
  }

  .lux-form-box{
    max-width: 650px;
    margin: auto;
  }

}


/* =========================
   TABLETS & MOBILE (768px)
========================= */
@media (max-width: 768px){

  .lux-contact{
    padding: 90px 5%;
    margin-top: 0;
  }

  .lux-contact-info h2{
    font-size: 36px;
  }

  .lux-contact-text{
    font-size: 15px;
    line-height: 1.7;
  }

  .lux-info-card{
    flex-direction: column;
    text-align: center;
    padding: 22px;
  }

  .lux-info-icon{
    margin: 0 auto 10px;
  }

  .lux-info-card h4{
    font-size: 16px;
  }

  .lux-form-box{
    padding: 35px 25px;
    border-radius: 28px;
  }

  .lux-form-head h3{
    font-size: 30px;
  }

  .lux-input-group input,
  .lux-input-group textarea{
    padding: 18px 16px;
    font-size: 14px;
  }

  .lux-submit-btn{
    height: 55px;
    font-size: 14px;
  }

}


/* =========================
   SMALL MOBILE (480px)
========================= */
@media (max-width: 480px){

  .lux-contact-info h2{
    font-size: 28px;
    line-height: 1.2;
  }

  .lux-contact-tag{
    font-size: 10px;
    padding: 8px 16px;
  }

  .lux-contact-text{
    font-size: 14px;
  }

  .lux-contact-wrapper{
    gap: 40px;
  }

  .lux-form-head h3{
    font-size: 24px;
  }

  .lux-info-card{
    border-radius: 18px;
  }

  .lux-form-box{
    border-radius: 20px;
  }

}

.about-x {
  padding: 120px 8%;
  margin-top: -100px;
  background: #dfe7dc;
  color: white;
  position: relative;
  overflow: hidden;
}

/* GLOW */
.about-x::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,122,0,0.2), transparent);
  top: -100px;
  left: -100px;
  filter: blur(120px);
}

/* LAYOUT */
.about-x-container {
  display: flex;
  gap: 80px;
  margin-top: -50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

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

.about-x-tag {
  color: #ff0000;
  letter-spacing: 2px;
  font-size: 24px;
  font-weight: 600;
}

.about-x-title {
  font-size: 60px;
  font-family: 'Playfair Display', sans-serif;
  color: #000000;
  margin: 15px 0;
  font-weight: 800;
}

.about-x-desc {
  color: #000000;
  line-height: 1.7;
  font-size: 18px;
  margin-bottom: 15px;
}

/* FEATURES */
.about-x-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  font-size: 27px !important;
  color: #000;
}

.ax-item {
  font-size: 16px;
}

/* STATS */
.about-x-stats {
  display: flex;
  gap: 40px;
  margin: 25px 0;
  color: #000;
}

.about-x-stats h2 {
  color: #ff7a00;
}

/* BUTTON */
.about-x-btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  background: #d39a2c;
  color: rgb(0, 0, 0);
  text-decoration: none;
}

.about-x-btn:hover{
  background-color: white;
  color: #000;
}

.about-x-right {
  flex: 1;
  position: relative;
}

/* MAIN IMAGE */
.about-x-image-main img {
  width: 100%;
  height: 510px;
  border-radius: 25px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

/* SMALL IMAGE */
.about-x-image-small {
  position: absolute;
  bottom: -40px;
  left: -60px;
}

.about-x-image-small img {
  width: 180px;
  border-radius: 20px;
  border: 5px solid #fff;
}

/* FLOATING CARD */
.about-x-card {
  position: absolute;
  top: 20px;
  right: -40px;
  background: rgba(0,0,0,0.7);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  width: 200px;
}

/* =========================
   TABLETS (1024px and below)
========================= */
@media (max-width: 1024px) {

  .about-x-container {
    flex-direction: column;
    gap: 50px;
    margin-top: 0;
  }

  .about-x-title {
    font-size: 42px;
    text-align: center;
  }

  .about-x-desc {
    text-align: center;
  }

  .about-x-left {
    text-align: center;
  }

  .about-x-features {
    grid-template-columns: 1fr 1fr;
    justify-content: center;
  }

  .about-x-stats {
    justify-content: center;
  }

  .about-x-right {
    width: 100%;
  }

  .about-x-image-main img {
    height: auto;
  }

  .about-x-image-small {
    left: 0;
    bottom: -30px;
  }

  .about-x-card {
    right: 0;
  }
}


/* =========================
   MOBILE (768px and below)
========================= */
@media (max-width: 768px) {

  .about-x {
    padding: 80px 5%;
    margin-top: 0;
  }

  .about-x-title {
    font-size: 34px;
  }

  .about-x-tag {
    font-size: 18px;
  }

  .about-x-desc {
    font-size: 16px;
  }

  .about-x-features {
    grid-template-columns: 1fr;
    font-size: 18px !important;
  }

  .ax-item {
    font-size: 15px;
  }

  .about-x-stats {
    flex-direction: column;
    gap: 15px;
  }

  .about-x-btn {
    padding: 12px 24px;
  }

  .about-x-image-small {
    display: none; /* cleaner mobile look */
  }

  .about-x-card {
    position: relative;
    margin-top: 15px;
    width: 100%;
  }
}


/* =========================
   SMALL MOBILE (480px)
========================= */
@media (max-width: 480px) {

  .about-x-title {
    font-size: 28px;
  }

  .about-x-desc {
    font-size: 15px;
  }

  .about-x-features {
    gap: 8px;
  }

  .about-x-container {
    gap: 30px;
  }

  .about-x-image-main img {
    border-radius: 15px;
  }

}

.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background-color: #ff0000;
  color: #ffc400;
  font-size: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  z-index: 1000;
  text-decoration: none;
}

.back-to-top:hover {
  background-color: #ffc400;
  color: #ff0000;
}

/* Show button when scrolling down */
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.recipes-section{
    position: relative;
    padding: 100px 8%;
    margin-top: -80px;
    background: #dfe7dc;
    overflow: hidden;
}

.recipes-overlay{
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 196, 0, 0.08);
    filter: blur(120px);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.recipes-head{
    position: relative;
    text-align: center;
    margin-top: -50px;
    z-index: 2;
}

.recipes-head .tag{
    display: inline-block;
    padding: 10px 24px;
    background: black;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.recipes-head h2{
    font-size: 52px;
    color: #000000;
    font-weight: 700;
    font-family: 'Playfair Display', sans-serif;
    margin-bottom: 18px;
    line-height: 1.2;
}

.recipes-head p{
    color: #000000;
    font-size: 17px;
    max-width: 700px;
    margin: auto;
    line-height: 1.7;
}

.recipes-grid{
    position: relative;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
    z-index: 2;
}

.recipe-card{
    position: relative;
    height: 320px;
    border-radius: 28px;
    overflow: hidden;
    cursor: pointer;
    background: #1a1a1a;
}

.recipe-card.featured{
    grid-column: span 2;
    grid-row: span 2;
    height: 664px;
}

.recipe-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.recipe-card::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.15),
        transparent
    );
}

.recipe-card:hover img{
    transform: scale(1.08);
}

.card-content{
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 3;
}

.recipe-category{
    display: inline-block;
    padding: 7px 16px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 12px;
    border-radius: 30px;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.card-content h3{
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.3;
}

.recipe-card:not(.featured) .card-content h3{
    font-size: 22px;
}

/* =========================
   LARGE TABLETS (1024px)
========================= */
@media (max-width: 1024px){

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

  .recipe-card.featured{
    grid-column: span 2;
    grid-row: span 1;
    height: 420px;
  }

  .recipes-head h2{
    font-size: 40px;
  }

}


/* =========================
   TABLETS & MOBILE (768px)
========================= */
@media (max-width: 768px){

  .recipes-section{
    padding: 80px 5%;
    margin-top: 0;
  }

  .recipes-head{
    margin-top: 0;
  }

  .recipes-head h2{
    font-size: 32px;
  }

  .recipes-head p{
    font-size: 15px;
  }

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

  .recipe-card,
  .recipe-card.featured{
    grid-column: span 1;
    grid-row: span 1;
    height: 260px;
  }

  .card-content{
    bottom: 18px;
    left: 18px;
  }

  .card-content h3{
    font-size: 20px;
  }

}


/* =========================
   SMALL MOBILE (480px)
========================= */
@media (max-width: 480px){

  .recipes-head h2{
    font-size: 26px;
    line-height: 1.3;
  }

  .recipes-head p{
    font-size: 14px;
  }

  .recipe-card{
    height: 220px;
    border-radius: 18px;
  }

  .recipe-category{
    font-size: 10px;
    padding: 5px 12px;
  }

  .card-content h3{
    font-size: 18px;
  }

}