





   /* background: linear-gradient(to right, #f9f7f3, #e0c3fc); */
      /* background: linear-gradient(135deg, #ffecd2, #fcb69f); */
        /* background: linear-gradient(to right, #74ebd5, #9face6); */
         /* background: linear-gradient(to right, #fdfbfb, #ebedee); */
          /* background: linear-gradient(to right, #f8fbff, #e6f0ff); */
           /* background: linear-gradient(to right, #f0fdf4, #dcfce7); */
              /* background: linear-gradient(120deg, #f9f7f3, #eef1f5); */
.hero {
 
    padding: 50px 20px;
    text-align: center;
} 
.hero-bg1{
     background: linear-gradient(120deg, #f9f7f3, #eef1f5);
}
.bg2{
        background: linear-gradient(to right, #74ebd5, #9face6);

}
.bg3{
        background: linear-gradient(135deg, #ffecd2, #fcb69f);
}
.bg4{
    background: linear-gradient(120deg, #f0fdf4, #e6f4ea);
}
.bg5{
    background: linear-gradient(120deg, #d4fc79, #96e6a1);
}
.hero-bg {
    background: linear-gradient(-45deg, #ff9a9e, #fad0c4, #fad0c4, #a18cd1);
    background-size: 400% 400%;
    animation: gradientMove 8s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.hero h3{
    font-size:36px;
    margin-bottom:15px;
    color:#1a1a1a;
}

.hero p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.7;
}

/* CONTAINER */
.container{
    width:96%;
    max-width:1200px;
    margin:auto;
    padding:30px 0;
}

/* GRID */
/* .card-container{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
    gap:30px;
} */
.card-container{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
    justify-content:center;
    gap:30px;
}

/* CARD */
.card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.4s;
    border:1px solid #eee;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

/* IMAGE */
.card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

/* CONTENT */
.card-content{
    padding:22px;
}

.card-content h3{
    font-family:'Playfair Display', serif;
    font-size:22px;
    margin-bottom:10px;
}

.card-content p{
    font-size:14px;
    color:#555;
    line-height:1.6;
}

/* GOLD LINE (Luxury Touch) */
.card-content::before{
    content:'';
    display:block;
    width:50px;
    height:3px;
    background:linear-gradient(to right, #c9a45c, #e6c97a);
    margin-bottom:12px;
}

/* RESPONSIVE */
@media(max-width:600px){
    .hero h1{
        font-size:32px;
    }
}
.gradient-bar {
    display: block;
    width: 90px;
    height: 5px;
    margin: 0 auto 12px;
    border-radius: 50px;

    background: linear-gradient(270deg, #a18cd1, #fbc2eb, #fad0c4);
    background-size: 300% 300%;

    animation: gradientMove 4s ease infinite;
}

/* Smooth animation */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.gradient-bar {
    box-shadow: 0 0 10px rgba(161, 140, 209, 0.4);
}
.gradient-bar:hover {
    width: 120px;
    transition: 0.3s;
}
/* --------------- */

/* SECTION */
.section{
    max-width:1100px;
    margin:auto;
    padding:100px 20px;
}

/* HEADING */
.section h1{
    font-family:'Playfair Display', serif;
    font-size:48px;
    font-weight:600;
    margin-bottom:15px;
    letter-spacing:0.5px;
}

.section .desc{
    max-width:650px;
    color:#6b6b6b;
    line-height:1.7;
    margin-bottom:70px;
}

/* LIST */
.list{
    border-top:1px solid #eee;
}

/* ITEM */
.item{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    padding:30px 0;
    border-bottom:1px solid #eee;
    transition:all 0.4s ease;
}

/* LEFT SIDE */
.left{
    display:flex;
    gap:25px;
}

/* NUMBER */
.number{
    font-size:14px;
    letter-spacing:2px;
    color:#c9a34e;
    margin-top:5px;
}

/* TITLE */
.title{
    font-size:20px;
    font-weight:500;
    margin-bottom:8px;
}

/* TEXT */
.text{
    font-size:14px;
    color:#777;
    max-width:500px;
    line-height:1.6;
}

/* RIGHT ARROW */
.arrow{
    font-size:18px;
    color:#aaa;
    transition:0.3s;
}

/* HOVER EFFECT */
.item:hover{
    padding-left:10px;
}

.item:hover .arrow{
    color:#c9a34e;
    transform:translateX(6px);
}

.item:hover .title{
    color:#c9a34e;
}
.tour-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tour-highlights li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
}

.tour-highlights li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff6600;
  font-weight: bold;
}
/* -------------- */
/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600&family=Poppins:wght@300;400;500&display=swap');



/* SECTION */
.luxury-services{
    padding:90px 20px;
    /* background:linear-gradient(to bottom, #ffffff, #f6f6f6); */
    overflow:hidden; /* prevents scroll glitch */
}

/* HEADER */
.luxury-header{
    text-align:center;
    margin-bottom:60px;
}

.luxury-header h2{
    font-size:42px;
    font-family:'Playfair Display', serif;
    margin:0;
}

.divider{
    width:60px;
    height:2px;
    background:#c8a96a;
    margin:15px auto 0;
}

/* 🔥 GRID FIX (NO FLEX BUGS) */
.luxury-container{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap:40px;
    max-width:1200px;
    margin:auto;
}

/* BOX */
.luxury-box{
    padding:35px;
    border-radius:22px;
    background:rgba(255,255,255,0.85);
    
    /* blur fix for mobile */
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);

    border:1px solid rgba(200,169,106,0.2);
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
    transition:all 0.35s ease;
}

/* HOVER */
.luxury-box:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,0.08);
}

/* TITLE */
.luxury-box h3{
    font-size:22px;
    margin-bottom:20px;
    font-family:'Playfair Display', serif;
}

/* LIST */
.luxury-box ul{
    list-style:none;
    padding:0;
    margin:0;
}

.luxury-box ul li{
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px 0;
    border-bottom:1px solid rgba(0,0,0,0.06);
    font-size:15px;
    color:#444;
    transition:0.25s;
}

/* NUMBER */
.luxury-box ul li span{
    color:#c8a96a;
    font-weight:600;
    min-width:28px;
}

/* HOVER ITEM */
.luxury-box ul li:hover{
    transform:translateX(6px);
    color:#000;
}

/* ======================= */
/* 📱 TABLET */
/* ======================= */
@media(max-width:992px){

    .luxury-container{
        grid-template-columns: 1fr; /* stack */
        gap:30px;
    }

    .luxury-header h2{
        font-size:34px;
    }
}

/* ======================= */
/* 📱 MOBILE */
/* ======================= */
@media(max-width:600px){

    .luxury-services{
        padding:60px 15px;
    }

    .luxury-header{
        margin-bottom:40px;
    }

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

    .divider{
        width:40px;
    }

    .luxury-box{
        padding:22px;
        border-radius:16px;
    }

    .luxury-box h3{
        font-size:18px;
    }

    .luxury-box ul li{
        font-size:14px;
        padding:10px 0;
    }
}
