/* ============================================================
   AGRA EXPERT GUIDE — style.css
   ============================================================
   TABLE OF CONTENTS
   1.  CSS Variables (Design Tokens)
   2.  Reset & Base
   3.  Navigation
   4.  Mobile Menu
   5.  Hero Section
   6.  Shared Section Styles
   7.  About Section
   8.  Tour Packages Section
   9.  Gallery Section
   10. Reviews / Testimonials Section
   11. Contact / Booking Section
   12. Footer
   13. Scroll Reveal Animations
   14. Responsive (Tablet & Mobile)
   ============================================================ */


/* ── 1. CSS VARIABLES ──────────────────────────────────────── */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-pale:   #F5E8C0;
  --dark:        #1A1208;
  --dark2:       #2C1F0A;
  --dark3:       #3D2E12;
  --cream:       #FAF3E0;
  --cream2:      #F0E6C8;
  --text:        #3A2D0F;
  --text-light:  #6B5A30;
  --white:       #FFFDF5;
  --shadow:      0 20px 60px rgba(26,18,8,0.35);
}


/* ── 2. RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }


/* ── 3. NAVIGATION ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  
 padding: clamp(18px,2vw,28px) 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  background: transparent;
}

nav.scrolled {
  background: rgba(26,18,8,0.95);
  backdrop-filter: blur(12px);
  padding: 12px 5%;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
 font-size: clamp(1.8rem,2vw,2.3rem);
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
   max-width:220px;

  display:flex;
  flex-direction:column;
  line-height:0.95;
}
/* Logo layout */

.logo-the{
    display:block;
    color:#C9A84C !important;
     font-size:28px;
    font-weight:700;
    line-height:0.9;
}

.logo-title{
    display:block;
    white-space:nowrap;
   font-size:50px;
    font-weight:700;
    line-height:0.88;
}

.nav-logo small{
    font-family:'Jost',sans-serif;
    font-size:16px;
    letter-spacing:1.5px;
    color:rgba(255,255,255,.92);
    text-transform:uppercase;
    margin-top:14px;
    line-height:1.3;
    font-weight:600;
    white-space: nowrap;
}
.nav-logo span { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(22px,2vw,38px);
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 12px 26px;
  border-radius: 4px;
  font-weight: 600 !important;
  letter-spacing: 1px;
  transition: all 0.3s !important;
}
.nav-cta:hover {
  background: #D8B84C !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201,162,39,.35);
}

/* WhatsApp Button */
.whatsapp-btn{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.35);
    border-radius:50%;
    color:var(--white);
    font-size:20px;
    transition:all .3s;
}

.whatsapp-btn:hover{
    background:#25D366;
    border-color:#25D366;
    transform:translateY(-2px);
    box-shadow:0 8px 18px rgba(37,211,102,.35);

}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--white);
  display: block;
  transition: 0.3s;
}


/* ── 4. MOBILE MENU ────────────────────────────────────────── */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 999;
  align-items: center;
  justify-content: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  padding: 14px;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
}


/* ── 5. HERO SECTION ───────────────────────────────────────── */
#hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding:120px 5% 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(20,12,2,0.3) 0%,
      rgba(20,12,2,0.55) 60%,
      rgba(20,12,2,0.85) 100%),
    url('images/hero-bg.jpg')
    center / cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

/*
  ★ TO USE YOUR OWN HERO PHOTO:
  Save your image as  images/hero-bg.jpg
  Then replace the URL above with:  url('images/hero-bg.jpg')
*/

@keyframes heroZoom { to { transform: scale(1); } }

.hero-content {
  position: relative;
  z-index: 2;

  width:min(90%, 900px);
    margin:0 auto;
    text-align:center;
      padding: 0 20px;

  animation: heroFade 1.2s ease-out both;
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge{
    display:inline-block;
    padding:12px 24px;
    border:1px solid rgba(201,162,39,.8);
    background:rgba(18,18,18,.45);
    backdrop-filter:blur(10px);
    color:var(--gold);
    letter-spacing:3px;
    font-size:12px;
    text-transform:uppercase;
     margin-top:40px;   
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 5vw, 6rem);
  color: var(--white);
  text-shadow: 0 8px 30px rgba(0,0,0,.35);
  line-height: 1.1;
  margin-bottom: 20px;
  animation: heroFade 1s 0.5s both;
}
.hero-title em { color: var(--gold); font-style: italic; }

.hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  animation: heroFade 1s 0.7s both;
}

.hero-btns {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top:10px;
}

.hero-stats{
    position:absolute;
    bottom:35px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    justify-content:center;
    align-items:center;
    gap:90px;
    width:max-content;
    z-index:3;
}

.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  color: var(--gold);
  font-weight: 700;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.82);
  letter-spacing: 2px;
  text-transform: uppercase;
 }


/* ── 6. SHARED SECTION STYLES ──────────────────────────────── */
section { padding: 100px 5%; }

.section-label {
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title em { color: var(--gold); font-style: italic; }

.section-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-bottom: 30px;
}

/* Shared buttons */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 14px 36px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.4);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 14px 36px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 2px;
  transition: all 0.3s;
  cursor: pointer;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-sm {
  padding: 10px 20px !important;
  font-size: 0.78rem !important;
}


/* ── 7. ABOUT SECTION ──────────────────────────────────────── */
#about {
    padding:100px 5%;
    background-color:#f4efe3;

    background:
        linear-gradient(90deg,
            rgba(244,239,227,1) 0%,
            rgba(244,239,227,.98) 38%,
            rgba(244,239,227,.86) 60%,
            rgba(244,239,227,.45) 100%
        ),
        url("images/about-bg.png");
background-size:100% 100%, 68% auto;
    background-position:center, 125% 25%;
    background-repeat:no-repeat;
    
}
.about-grid 
{
  display: grid;
  grid-template-columns:0.95fr 1.15fr;
  gap: 70px;
  width:92%;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index:1;
}

/* Photo column */
.about-img-wrap { position: relative; }

.about-img-frame {
  position: relative;
  padding: 20px 20px 20px 0;
}
/* ---------- About Monument Slider ---------- */

.about-slider{

position:relative;
width:100%;
max-width:520px;
aspect-ratio:3/4;

border-radius:24px;
overflow:hidden;

box-shadow:0 25px 50px rgba(0,0,0,.18);

}

.about-slide{

position:absolute;
inset:0;
opacity:0;

transition:opacity .7s ease;

}

.about-slide.active{

opacity:1;

}

.about-slide img{

width:100%;
height:100%;

object-fit:cover;

}

.about-slide::after{

content:'';
position:absolute;
inset:0;

background:linear-gradient(
to top,
rgba(20,12,2,.72),
transparent 45%
);

}

.slide-label{

position:absolute;
left:24px;
bottom:30px;
z-index:2;

font-family:'Playfair Display',serif;
font-size:2rem;
font-weight: 600;

color:white;

text-shadow:0 4px 18px rgba(0,0,0,.45);
letter-spacing:.5px;
}

.slide-btn{

position:absolute;
top:50%;

transform:translateY(-50%);

width:46px;
height:46px;

border:none;
border-radius:50%;

background:rgba(18,18,18,.45);

color:white;

cursor:pointer;

backdrop-filter:blur(8px);

z-index:3;

transition:.25s;

}

.slide-btn:hover{

background:var(--gold);
color:#111;

}

.prev{left:18px;}

.next{right:18px;}

.slider-dots{

position:absolute;
bottom:14px;

width:100%;

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

z-index:3;

}

.dot{

width:8px;
height:8px;

border-radius:50%;

background:rgba(255,255,255,.35);

}

.dot.active{

width:24px;
border-radius:999px;

background:var(--gold);

}
/* ---------- About Features ---------- */

.about-features{

display:grid;
grid-template-columns:repeat(2,minmax(220px,1fr));

gap:20px 30px;

margin:34px 0;

}

.feature{

display:flex;
align-items:flex-start;

gap:14px;

}

.feature i{

font-size:1.6rem;

color:var(--gold);

width:34px;

margin-top:2px;

flex-shrink:0;
}

.feature span{

font-size:.98rem;

line-height:1.55;

color:var(--text);

font-weight:500;

}
.about-img-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 20px;
  right: 20px; bottom: 20px;
  border: 2px solid var(--gold);
  border-radius: 4px;
  z-index: 0;
}

/* Real photo — uncomment and use when you have a photo */
.about-photo {
  width: 100%;
  height: 480px;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 4px;
  position: relative;
  z-index: 1;
  display: block;
}

/* Placeholder shown until real photo is added */
.about-photo-placeholder {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark3) 50%, var(--gold) 100%);
  border-radius: 4px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.about-photo-placeholder svg { opacity: 0.4; }
.about-photo-placeholder p {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.about-photo-placeholder small {
  color: rgba(255,255,255,0.3);
  font-size: 0.68rem;
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: 0;
  background: var(--gold);
  color: var(--dark);
  padding: 18px 22px;
  text-align: center;
  z-index: 2;
  box-shadow: var(--shadow);
}
.experience-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}
.experience-badge .lbl {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
}

/* Text column */
.about-text .section-title { margin-bottom: 8px; }

.about-desc{
    color: #4A4035;      /* Rich warm brown */
    line-height: 1.9;
    margin-bottom: 28px;
    font-weight: 400;
    font-size: 1.03rem;
}

.languages {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.lang-tag {
  background: var(--cream2);
  color: var(--text);
  padding: 5px 14px;
  font-size: 0.78rem;
  letter-spacing: 1px;
  font-weight: 500;
  border-radius: 2px;
  border: 1px solid var(--gold-pale);
}

.about-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 36px;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}
.about-features li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.5rem;
  flex-shrink: 0;
}
@media(max-width:900px){

    .about-grid{
        grid-template-columns:1fr;
        width:94%;
        gap:40px;
    }

    .about-image{
        max-width:380px;
    }

}

/* ── 8. TOUR PACKAGES SECTION ──────────────────────────────── */
#tours { background: var(--dark); }
#tours .section-label  { color: var(--gold); }
#tours .section-title  { color: var(--white); }
#tours .section-title em { color: var(--gold); }
#tours .section-line   { background: linear-gradient(to right, var(--gold), transparent); }

.tours-header{
    width:100%;
    max-width:520px;
    text-align:left;
    margin-bottom:48px;
}
.tours-header p {
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  line-height: 1.8;
}

.tours-grid{
    display:grid;
    grid-template-columns:1.15fr 1fr 1fr;
    gap:28px;
    max-width:1280px;
    margin:0 auto;
    align-items:start;
}

.tour-card {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.tour-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:linear-gradient(to right,var(--gold),transparent);
    z-index:2;
}
.tour-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 30px 60px rgba(0,0,0,0.55);
  border-color: var(--gold);
}

/* Compact Sunrise Card */

.compact-tour-card{
    cursor:pointer;
    min-height:auto !important;
    height:auto !important;
        align-self:start;

}

.compact-tour-card .tour-img{
    height:230px;
}

.compact-tour-card .tour-body{
    padding:14px 16px 16px;
}

.compact-tour-card .tour-rating{
    margin:2px 0 6px;
}

.compact-tour-card .tour-name{
    margin:0 0 10px;
    line-height:1.15;
     font-size:30px;
    min-height:64px;
}

.compact-tour-card .tour-footer{
    margin-top:6px;
    padding-top:10px;
    border-top:1px solid rgba(201,168,76,.18);
}

.compact-tour-card:hover{
    transform:translateY(-6px);
}
/* Featured Tour Ribbon */
.featured-tour{
    transform:scale(1.03);
    border:2px solid var(--gold);
    box-shadow:0 20px 45px rgba(201,168,76,.18);
}

.featured-ribbon{
    position:absolute;
    top:20px;
    right:20px;
    background:rgba(201,168,76,.92);
    color:var(--dark);
    padding:10px 18px;
    border-radius: 999px;
    font-size:.72rem;
    font-weight:700;
    letter-spacing:1px;
    z-index:20;
        box-shadow:0 10px 25px rgba(0,0,0,.25);

}

/* Tour card images
   ★ TO USE LOCAL IMAGES: replace URL with  url('../images/taj.jpg')  etc. */
.tour-img{
    position:relative;
    height:280px;
    overflow:hidden;
    border-radius:24px 24px 0 0;
}
.tour-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .5s ease;
}
.tour-card:hover .tour-img img{
    transform:scale(1.05);
}

.tour-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,  
    rgba(10,6,3,.78),
    rgba(10,6,3,.25) 45%,
    rgba(10,6,3,.05));
}

.featured-tour .tour-img{
    height:320px;
}

.tour-duration {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  z-index: 1;
}
.tour-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(26,18,8,0.8);
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 1;
  border: 1px solid rgba(201,168,76,0.3);
}

.tour-body { padding: 30px; }
/* Tour Rating */
.tour-rating{
    color:var(--gold);
    font-size:.85rem;
    margin-bottom:12px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.tour-rating span{
    color:rgba(255,255,255,.75);
    font-size:.72rem;
}

.tour-name {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.tour-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 300;
}

.tour-includes {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tour-includes li {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tour-includes li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}

.tour-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(201,168,76,.12);
}

.tour-price {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.1rem;
}
.tour-price small {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  display: block;
}
/* Live WhatsApp Availability */

.whatsapp-live{
    max-width:1280px;
    margin:35px auto 0;
    padding:18px 24px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;

    background:linear-gradient(180deg,#1f1408,#181008);
    border:1px solid rgba(37,211,102,.25);
    border-radius:16px;

    box-shadow:0 12px 30px rgba(0,0,0,.25);
}

.consult-live{
    display:flex;
    align-items:center;
    margin:18px 0 10px;
}
.consult-heading{
    display:flex;
    align-items:center;
    gap:16px;
    margin:18px 0 14px;
}

.consult-heading h3{
    margin:0;
    font-family:'Playfair Display', serif;
    font-size:clamp(1.9rem,2.8vw,2.7rem);
    line-height:1.1;
    color:#fff;
}
.live-dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#25D366;
   box-shadow:0 0 0 rgba(37,211,102,.7);
    animation:livePulse 1.8s infinite;
    flex-shrink: 0;
}
@keyframes livePulse{
    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.7);
    }
    70%{
        box-shadow:0 0 0 12px rgba(37,211,102,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}
.live-text{
    display:flex;
    flex-direction:column;
    gap:4px;
    flex:1;
    color:white;
}

.live-text span{
    color:rgba(255,255,255,.7);
    font-size:.88rem;
}

.live-btn{
    background:#25D366;
    color:white;
    text-decoration:none;
    padding:12px 22px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.live-btn:hover{
    background:#1ebe5d;
}
@media(max-width:992px){

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

    .featured-tour{
        transform:none;
    }

    .featured-tour:hover{
        transform:translateY(-10px);
    }

    .featured-tour .tour-img{
        height:300px;
    }

}

/* ===================================================
PACKAGE SECTION EXTENSIONS
=================================================== */

.section-divider{
height:1px;
background:rgba(201,162,39,.18);
margin:80px 0 55px;
}
/* Scroll anchor for Explore Beyond the Classics */
#classics{
    display:block;
    position:relative;
    top:-90px;          /* offsets the fixed navbar */
    visibility:hidden;
}

.sub-section-header{
width:100%;
max-width:650px;
margin:0 0 40px;
}

.sub-section-header h3{
font-family:'Playfair Display',serif;
font-size:2.2rem;
color:white;
margin:10px 0 14px;
}

.sub-section-header p{
color:#bfae84;
line-height:1.8;
}

/* ---------- MINI CARDS ---------- */

.mini-card-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(260px,1fr));
    gap:28px;
    width:100%;
}

.mini-card{
background:#140800;
border:1px solid rgba(201,162,39,.35);
border-radius:22px;
overflow:hidden;
transition:.35s;
}

.mini-card:hover{
transform:translateY(-8px);
border-color:var(--gold);
box-shadow:0 22px 45px rgba(0,0,0,.35);
}

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

/* ---------- Individual monument image positioning ---------- */

/* Fatehpur Sikri */
.mini-sikri img{
    object-position:center 15%;
}

/* Itmad-ud-Daulah */
.mini-itmad img{
    object-position:center center;
}

/* Mehtab Bagh */
.mini-mehtab img{
    object-position:center center;
}

.mini-content{
padding:24px;
}

.mini-time{
display:inline-block;
padding:6px 12px;
background:rgba(201,162,39,.18);
color:var(--gold);
font-size:.75rem;
letter-spacing:1px;
border-radius:999px;
margin-bottom:15px;
}

.mini-content h4{
font-family:'Playfair Display',serif;
color:white;
font-size:1.55rem;
margin-bottom:12px;
}

.mini-content p{
color:#c5b58e;
line-height:1.7;
}

.mini-tag{
display:inline-block;
margin-top:18px;
padding:8px 14px;
border:1px solid rgba(201,162,39,.45);
color:var(--gold);
border-radius:999px;
font-size:.78rem;
}

/* ---------- EXPERIENCE CARDS ---------- */

.experience-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:28px;
margin-top:40px;
}

.experience-card{
background:#140800;
border:1px solid rgba(201,162,39,.35);
border-radius:22px;
overflow:hidden;
transition:.35s;
display:flex;
flex-direction:column;
}

.experience-card:hover{
transform:translateY(-8px);
box-shadow:0 22px 45px rgba(0,0,0,.35);
border-color:var(--gold);
}

.featured-card{
border-color:var(--gold);
}

.experience-card img{
width:100%;
height:180px;
object-fit:cover;
display: block;
}

.experience-content{
padding:26px;
 display:flex;
    flex-direction:column;
    gap:18px;
}

/* Icon + title on the same line */
.experience-header{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:20px;
}

.experience-icon{
width:52px;
height:52px;
border-radius:16px;
background:rgba(201,162,39,.12);
display:flex;
align-items:center;
justify-content:center;
flex-shrink:0;
}

.experience-icon i{
    font-size:24px;
    color:var(--gold);
}

.experience-header h4{
    margin:0;
    font-family:'Playfair Display', serif;
    font-size:2rem;
    line-height:1.1;
    color:var(--white);
}

.experience-content p{
    margin:0;
    color:#d7b878;
    line-height:1.8;
}

.experience-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.experience-card li{
    position:relative;
    padding-left:18px;
    margin-bottom:10px;
    color:#f1d08c;
}

.experience-card li::before{
    content:"✦";
    position:absolute;
    left:0;
    color:var(--gold);
}

/* Mobile */

@media(max-width:900px){

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

    .experience-header h4{
        font-size:1.7rem;
    }
}

/* ---------- CONSULT BANNER ---------- */

.consult-banner{
max-width: 1280px;
margin:70px auto;
padding:34px 36px;
display:flex;
justify-content:space-between;
align-items:center;
gap:28px;
flex-wrap:wrap;

background:linear-gradient(90deg, #3a2400, #120703);

border:1px solid rgba(201,162,39,.45);
border-radius: 28px;
}

.consult-pill{
display:inline-flex;
align-items:center;
gap:10px;
padding:8px 16px;
border-radius:999px;
background:rgba(201,162,39,.18);
color:var(--gold);
font-size:.78rem;
letter-spacing:1px;
margin-bottom:18px;
}

.consult-banner h3{
font-family:'Playfair Display',serif;
font-size:2rem;
color:white;
margin-bottom:12px;
}

.consult-banner p{
color:#c8b78f;
line-height:1.8;
max-width:600px;
}

.consult-btn{
background:var(--gold);
color:#111;
padding:18px 34px;
border-radius:18px;
min-width: 170px;
font-weight:700;
text-decoration:none;
transition:.3s;
white-space:nowrap;
}

.consult-btn:hover{
transform:translateY(-3px);
box-shadow:0 12px 25px rgba(201,162,39,.35);
}

/* ---------- MOBILE ---------- */

@media(max-width:900px){

.mini-card-grid,
.experience-grid{
grid-template-columns:1fr;
}

.consult-banner{
flex-direction:column;
align-items:flex-start;
padding:30px;
}

.consult-btn{
width:100%;
text-align:center;
}

.sub-section-header h3{
font-size:1.9rem;
}

}
/* ── 9. GALLERY SECTION ────────────────────────────────────── */
#gallery { 
    background: var(--cream); 
  }

.gallery-header {
  max-width: 560px;
  margin-bottom: 50px;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Gallery Card */
.g-item{
    position:relative;
    overflow:hidden;
    border-radius:10px;
    box-shadow:0 8px 25px rgba(26,18,8,.12);
    transition:transform .35s ease, box-shadow .35s ease;
}

.g-item:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(26,18,8,.22);
}

/* IMPORTANT: Style every image inside the card */
.g-item img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
    transition:transform .5s ease;
}

.g-item:hover img{
    transform:scale(1.06);
}

/* Overlay */
.g-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(26,18,8,.55), transparent 60%);
    opacity:0;
    display:flex;
    justify-content:center;
    align-items:flex-end;
    padding-bottom:18px;
    transition:opacity .35s ease;
}

.g-item:hover .g-overlay{
    opacity:1;
}

.g-icon{
    color:var(--gold);
    font-size:1.2rem;
}

/* Tablet */
@media(max-width:900px){
    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */
@media(max-width:600px){
    .gallery-grid{
        grid-template-columns:1fr;
    }

    .g-item img{
        height:220px;
    }
}

/* ── 10. REVIEWS SECTION ───────────────────────────────────── */
#reviews { background: var(--dark2); }
#reviews .section-label   { color: var(--gold); }
#reviews .section-title   { color: var(--white); }
#reviews .section-title em { color: var(--gold); }
#reviews .section-line    { background: linear-gradient(to right, var(--gold), transparent); }

.reviews-header {
  max-width: 560px;
  margin-bottom: 55px;
  color: white;
}
.testimonial-card p{
    color: rgba(255,255,255,.82);
    line-height: 1.75;
    font-size: 14px;
}

/* ===== Testimonial Slider ===== */

.testimonial-slider-wrapper{
    position:relative;
    max-width:1280px;
    margin:40px auto 80px;
    overflow:hidden;
    padding:0 50px;
}

.testimonial-slider{
    display:flex;
    gap:20px;
    transition:transform .45s ease;
}

.testimonial-card{
    min-width:calc((100% - 60px)/4);
    background:rgba(255,255,255,.03);
    border:1px solid rgba(201,168,76,.18);
    border-radius:16px;
    padding:22px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    min-height:240px;
}
@media (max-width:1024px) {

    .testimonial-card{
        min-width:calc((100% - 20px)/2);
    }

}
@media (max-width:768px) {

    .testimonial-slider-wrapper{
        padding:0 40px;
    }

    .testimonial-card{
        min-width:100%;
    }

    .testimonial-arrow{
        width:36px;
        height:36px;
    }

}
.stars{
    color:var(--gold);
    letter-spacing:2px;
    margin-bottom:10px;
}

.review-author{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:15px;
    color: var(--white);
    font-weight: 600;
}

.avatar{
    width:38px;
    height:38px;
    border-radius:50%;
    background:linear-gradient(135deg,#c9a84c,#8b6b1b);
    color:var(--dark);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.testimonial-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:42px;
    height:42px;
    border-radius:50%;
    border:1px solid rgba(201,168,76,.35);
    background:rgba(27,18,8,.95);
    color:var(--gold);
    cursor:pointer;
    font-size:20px;
    transition:.3s;
    z-index:5;
}

.testimonial-arrow:hover{
    background:var(--gold);
    color:var(--dark);
}

.testimonial-arrow.left{ left:0; }
.testimonial-arrow.right{ right:0; }


/* ── 11. CONTACT / BOOKING SECTION ────────────────────────── */
#contact { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

/* Left column */
.contact-info .section-title { margin-bottom: 8px; }
.contact-info > p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ci-icon {
  width: 44px; height: 44px;
  background: var(--dark);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ci-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3px;
}
.ci-value {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
}

.contact-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: white;
  padding: 14px 28px;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}
.contact-whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37,211,102,0.4);
}
.whatsapp-btn svg { flex-shrink: 0; }

/* Right column: form */
.contact-form {
  background: var(--white);
  padding: 44px;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(26,18,8,0.08);
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-sub {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--cream);
  border: 1.5px solid var(--cream2);
  color: var(--dark);
  padding: 12px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { height: 110px; }

.form-submit {
  width: 100%;
  background: var(--dark);
  color: var(--gold);
  border: none;
  padding: 15px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
  margin-top: 6px;
}
.form-submit:hover {
  background: var(--gold);
  color: var(--dark);
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px 20px;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  line-height: 1.7;
}
.success-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
}
.success-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  color: var(--text-light);
  display: block;
  margin-top: 8px;
}


/* ── 12. FOOTER ────────────────────────────────────────────── */
footer {
  background: var(--dark);
  padding: 60px 5% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto 50px;
}

.footer-brand .nav-logo {
  display: block;
  margin-bottom: 16px;
  font-size: 1.6rem;
}
.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  line-height: 1.8;
  font-weight: 300;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
}
/* Footer Bottom Buttons */

.footer-bottom-links{
    display:flex;
    justify-content:flex-end;
    gap:10px;
    flex-wrap:wrap;
}

.footer-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 18px;
    background:rgba(201,168,76,.12);
    border:1px solid rgba(201,168,76,.35);
    border-radius:999px;
    color:var(--gold);
    text-decoration:none;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    transition:.3s;
}

.footer-btn:hover{
    background:var(--gold);
    color:var(--dark);
    transform:translateY(-2px);
}
@media(max-width:768px){

.footer-bottom-links{
    justify-content:center;
    margin-top:16px;
}

.footer-btn{
    font-size:11px;
    padding:8px 14px;
}

}

/* ── 13. SCROLL REVEAL ANIMATIONS ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}


/* ── 14. RESPONSIVE ────────────────────────────────────────── */

/* Tablet */
@media (max-width: 900px) {
  .about-grid     { grid-template-columns: 1fr; gap: 50px; }
  .contact-grid   { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }

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

/* Mobile */
@media (max-width: 680px) {
  nav { padding: 16px 5%; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  section { padding: 70px 5%; }

  .hero-stats { gap: 30px; }
  .about-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .g-img { height: 160px; }
}
/* ===== Desktop & Tablet Scaling ===== */

@media (max-width:1200px){

  .hero-content{
    width:min(92%,800px);
  }

  .hero-title{
    font-size:clamp(3rem,6vw,5.2rem);
  }

  .hero-stats{
    gap:40px;
  }

  .nav-links{
    gap:24px;
  }
}

@media (max-width:992px){

  #hero{
    min-height:90vh;
    padding:100px 4% 70px;
  }

  .hero-content{
    width:min(94%,700px);
  }

  .hero-title{
    font-size:clamp(2.8rem,7vw,4.8rem);
  }

  .hero-sub{
    font-size:1rem;
  }

  .hero-btns{
    flex-wrap:wrap;
    justify-content:center;
  }

  .hero-stats{
    gap:26px;
    flex-wrap:wrap;
  }
}
@media (max-width:1200px){

    .hero-content{
        width:min(92%,820px);
    }

    .hero-title{
        font-size:clamp(2.8rem,5vw,5rem);
    }

    .hero-stats{
        gap:36px;
    }
}
/* =====================================
   THE HERITAGE CIRCLE PROMISE
===================================== */

#philosophy{
    background:#ede7d8;
    padding:100px 5%;
}

.philosophy-container{
    width:92%;
    max-width:1300px;
    margin:0 auto;
}

.philosophy-header{
    max-width:720px;
    margin-bottom:60px;
}

#philosophy .section-label{
    color:var(--gold);
    letter-spacing:4px;
    font-size:.8rem;
    font-weight:700;
    text-transform:uppercase;
}

#philosophy .section-title{
    margin:14px 0;
    font-size:clamp(2rem,4vw,3rem);
    line-height:1.08;
    color:#111;
    font-family:'Playfair Display',serif;
}

#philosophy .section-title em{
    color:var(--gold);
    font-style:italic;
}

#philosophy .section-line{
    width:70px;
    height:3px;
    background:var(--gold);
    margin:20px 0;
}

#philosophy .section-sub{
    color:#4f4a40;
    line-height:1.9;
}

/* ---------- GRID ---------- */

.promise-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
    margin-bottom:50px;
}

/* ---------- CARD ---------- */

.promise-card{
    background:#fffdf9;
    border:1px solid rgba(201,162,39,.18);
    border-radius:24px;
    padding:30px;
    transition:.35s;
}

.promise-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(0,0,0,.08);
}

/* Icon + Heading on SAME LINE */

.promise-heading{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:18px;
}

.promise-icon{
    width:56px;
    height:56px;
    border-radius:16px;
    background:rgba(201,162,39,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.promise-icon i{
    font-size:1.5rem;
    color:var(--gold);
}

.promise-heading h3{
    margin:0;
    font-family:'Playfair Display',serif;
    font-size:1.7rem;
    color:#111;
    line-height:1.1;
}

.promise-card p{
    color:#555;
    line-height:1.8;
}

/* ---------- QUOTE ---------- */

.promise-quote{
    background:rgba(201,162,39,.12);
    border:1px solid rgba(201,162,39,.35);
    border-radius:24px;
    padding:30px;
    text-align:center;
}

.promise-quote i{
    color:var(--gold);
    font-size:1.5rem;
    margin-bottom:14px;
}

.promise-quote p{
    margin:0;
    font-size:1.15rem;
    line-height:1.8;
    color:#3a2a00;
    font-weight:600;
}

/* ---------- MOBILE ---------- */

@media(max-width:768px){

    #philosophy{
        padding:70px 5%;
    }

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

    .promise-card{
        padding:26px;
    }

    .promise-heading h3{
        font-size:1.45rem;
    }

    .promise-icon{
        width:50px;
        height:50px;
    }
}

/* ---------- Section Divider ---------- */

.section-divider-dark{
    width:100%;
    height:8px;
    background:linear-gradient(to right,#120703,#2b1708,#120703);
    box-shadow:
        0 1px 0 rgba(201,162,39,.35),
        0 -1px 0 rgba(201,162,39,.15);
}
/* ---------- Guide Header ---------- */

.header-actions{
    display:flex;
    align-items:center;
    gap:18px;
}

.whatsapp-btn{
    width:54px;
    height:54px;
    border-radius:12px;
    background:#25D366;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    box-shadow:0 8px 24px rgba(37,211,102,.35);
    transition:.3s;
}

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

/* ---------- Guide Hero ---------- */

.guide-hero{
    height:75vh;
    background:url("images/taj-sunrise.jpg") center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.guide-overlay{
    position:absolute;
    inset:0;
    background:rgba(20,8,0,.55);
}

.guide-hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    padding:40px;
    color:white;
}

.guide-hero h1{
    font-family:"Playfair Display",serif;
    font-size:4rem;
    margin-bottom:18px;
}

.guide-hero h1 span{
    color:var(--gold);
    font-style:italic;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
    margin-top:28px;
}
/* Dedicated Tour Page */

.tour-page-hero{
    margin-bottom:0;
    line-height:0;
}
/* Dedicated Tour Page Background */

body.tour-page{
    background: linear-gradient(180deg, #0B0704 0%, #1A1208 55%, #221406 100%);
    color: var(--white);
}
.tour-page-hero img{
    width:100%;
    height:480px;
    object-fit:cover;
    display: block;
}

.tour-page-content{
    max-width:900px;
    margin:0 auto;
    padding:24px 6% 70px; 
    
}

.tour-page-content h1{
    margin:18px 0;
}

.tour-page-content h2{
    margin:40px 0 20px;
    color:var(--gold);
}

.itinerary{
    display:grid;
    gap:18px;
}

.itinerary div{
    padding:16px;
    border-left:3px solid var(--gold);
    background:rgba(201,168,76,.05);
}

.tour-page-content .tour-features{
    display:grid;
    gap:12px;
 margin-bottom:32px;
}
.tour-page-content{
    color: var(--white);
}

.tour-page-content p,
.tour-page-content li{
    color: rgba(255,255,255,0.82);
}
/* More Ways to Explore Agra */

#popular-tours{
    padding:80px 0 30px;
}

#popular-tours .section-header{
    margin-bottom:40px;
}

#popular-tours .section-tag{
    display:inline-block;
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:12px;
    font-weight:700;
    margin-bottom:14px;
}

#popular-tours .section-header h2{
    font-family:"Playfair Display", serif;
    font-size:36px;
    font-weight:700;
    color:var(--white);
    line-height:1.1;
    margin:0 0 18px;
}

#popular-tours .section-header p{
    color:rgba(255,255,255,.72);
    font-size:16px;
    line-height:1.8;
    max-width:620px;
}

#popular-tours .tours-grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(260px,1fr));
    gap:16px;
    width:100%;
    max-width:1500px;
    margin:42px auto 0;
    align-items:start;
}

@media (max-width:1100px){
    #popular-tours .tours-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (max-width:700px){
    #popular-tours .tours-grid{
        grid-template-columns:1fr;
    }
}