/* =========================
   GLOBAL STYLES
========================= */

:root {

  --primary: #0d1b2a;
  --secondary: #1b263b;
  --accent: #d4af37;
  --accent-light: #f4d67a;

  --white: #ffffff;
  --light: #f8f9fc;
  --text: hwb(216 36% 55%);
  --heading: #0b1320;
  --border: #e5e7eb;

  --shadow:
    0 10px 30px rgba(0,0,0,0.08);

  --radius: 18px;

  --transition: 0.35s ease;

}

/* =========================
   RESET
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html,
body{
  scroll-behavior:smooth;
  overflow-x:hidden;
  width:100%;
}

body{

  font-family:'Inter', sans-serif;
  background:var(--white);
  color:var(--text);
  line-height:1.7;
  overflow-x:hidden;

}

img{
  width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

ul{
  list-style:none;
}

/* =========================
   TYPOGRAPHY
========================= */

h1,h2,h3,h4{

  font-family:'Cormorant Garamond', serif;
  color:var(--heading);
  line-height:1.2;

}

h1{
  font-size:4rem;
}

h2{
  font-size:3rem;
}

h3{
  font-size:1.7rem;
}

p{
  font-size:1rem;
  color:var(--text);
}

/* =========================
   UTILITIES
========================= */

.container{

  width:min(1400px, 94%);
  margin:auto;

}

.section{
  padding:110px 0;
}

.center{
  text-align:center;
}

.center-button{
  text-align:center;
  margin-top:50px;
}

/* =========================
   HEADER
========================= */

.header{

  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  background:rgba(13, 27, 42, 0.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,0.08);

}

.nav-container{

  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;

}

.logo{
    display:flex;
    align-items:center;
    gap:16px;
    transform: translateY(2px);
}

.logo img{
  width:60px;
  height: 60px;
  object-fit: contain;
}

.logo-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    white-space: nowrap;
    min-width: max-content;
}

.main-title{
    font-family:"Cormorant Garamond", serif;
    font-size:2.25rem;
    font-weight:600;
    line-height:0.95;
    color:#d4a63c;

    margin-top:4px;   /* NEW */
}

.sub-title{
    display:flex;
    align-items:center;
    gap:5px;              /* increased */

    margin-top:4px;

    font-size:0.68rem;     /* slightly smaller */
    letter-spacing:5px;    /* reduced */
    color:#d4a63c;

    line-height:1;
}

.sub-title .line{
    width:30px;
    height:1px;
    background:#d4a63c;
}

.tagline{
    margin-top:4px;

    font-size:0.48rem;
    letter-spacing:1px;

    color:rgba(255,255,255,0.82); /* softer */

    line-height:1.1;
}

.nav{

  display:flex;
  gap:20px;

}

.nav a{

  color:var(--white);
  font-size:0.95rem;
  font-weight:500;
  position:relative;
  transition:var(--transition);

}

.nav a:hover,
.nav a.active{

  color:var(--accent);

}

.nav a::after{

  content:'';
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  background:var(--accent);
  transition:var(--transition);

}

.nav a:hover::after,
.nav a.active::after{

  width:100%;

}

.menu-toggle{

  display:none;
  background:none;
  border:none;
  color:var(--white);
  font-size:2rem;
  cursor:pointer;

}

/* =========================
   HERO SECTION
========================= */

.hero{

  position:relative;
  min-height:100vh;
  background:
  linear-gradient(
  135deg,
  rgba(13,27,42,0.95),
  rgba(27,38,59,0.92)),
  url("images/hero-bg.jpg")
  center/cover no-repeat;

  display:flex;
  align-items:center;
  padding-top:120px;

}

.hero-overlay{

  position:absolute;
  inset:0;
  background:
  radial-gradient(circle at top right,
  rgba(212,175,55,0.2),
  transparent 40%);

}

.hero-content{

  position:relative;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:70px;
  align-items:center;

}

.hero-text h1{

  color:var(--white);
  margin:25px 0;

}

.hero-text h1 span{
  color:var(--accent);
}

.hero-text p{

  color:#d8dce3;
  font-size:1.08rem;
  max-width:620px;

}

.hero-badge{

  display:inline-block;
  padding:12px 20px;
  border-radius:100px;
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.15);
  color:var(--accent-light);
  font-size:0.9rem;
  font-weight:600;
  letter-spacing:0.5px;

}

.hero-buttons{

  display:flex;
  gap:20px;
  margin-top:40px;
  flex-wrap:wrap;

}

/* =========================
   BUTTONS
========================= */

.btn{

  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 32px;
  border-radius:100px;
  font-weight:600;
  transition:var(--transition);
  cursor:pointer;

}

.btn-primary{

  background:var(--accent);
  color:#111;

}

.btn-primary:hover{

  transform:translateY(-4px);
  background:var(--accent-light);

}

.btn-secondary{

  border:1px solid rgba(255,255,255,0.3);
  color:var(--white);
  background:transparent;

}

.btn-secondary:hover{

  background:var(--white);
  color:var(--primary);

}

.full-width{
  width:100%;
}

/* =========================
   HERO STATS
========================= */

.hero-stats{

  display:flex;
  gap:20px;
  margin-top:60px;
  flex-wrap:wrap;

}

.stat-card{

  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.1);
  padding:22px;
  border-radius:var(--radius);
  min-width:170px;
  backdrop-filter:blur(10px);

}

.stat-card h3{

  color:var(--accent);
  font-size:2rem;

}

.stat-card p{

  color:#dfe3ea;
  font-size:0.95rem;

}

/* =========================
   GLASS CARD
========================= */

.glass-card{

  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:30px;
  padding:40px;
  backdrop-filter:blur(18px);
  box-shadow:var(--shadow);

}

.glass-card h3{

  color:var(--white);
  margin-bottom:30px;

}

.glass-item{

  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 0;
  border-bottom:1px solid rgba(255,255,255,0.08);
  color:#f0f3f7;

}

/* =========================
   PAGE HERO
========================= */

.page-hero{

  padding:180px 0 110px;
  background:
  linear-gradient(
  135deg,
  var(--primary),
  var(--secondary));

  text-align:center;

}

.page-hero h1{

  color:var(--white);
  margin:25px 0;

}

.page-hero p{

  max-width:720px;
  margin:auto;
  color:#d9dde5;

}

/* =========================
   SECTION HEADINGS
========================= */

.section-heading{
  margin-bottom:55px;
}

.section-heading span{

  color:var(--accent);
  font-size:0.9rem;
  font-weight:700;
  letter-spacing:2px;

}

.section-heading h2{

  margin-top:15px;

}

/* =========================
   ABOUT GRID
========================= */

.about-grid{

  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;

}

.about-image img{

  border-radius:28px;
  box-shadow:var(--shadow);

}

.about-content p{
  margin-bottom:20px;
}

/* =========================
   FEATURE LIST
========================= */

.feature-list{

  margin-top:30px;
  display:grid;
  gap:18px;

}

.feature-item{

  padding:16px 22px;
  background:var(--light);
  border-radius:14px;
  font-weight:500;

}

/* =========================
   SERVICES GRID
========================= */

.services-grid{

  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:30px;

}

.service-card{

  background:var(--white);
  border-radius:24px;
  padding:40px 30px;
  box-shadow:var(--shadow);
  transition:var(--transition);
  border:1px solid transparent;

}

.service-card:hover{

  transform:translateY(-10px);
  border-color:rgba(212,175,55,0.3);

}

.service-icon{

  width:70px;
  height:70px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  background:rgba(212,175,55,0.12);
  font-size:2rem;
  margin-bottom:25px;

}

.service-card h3{
  margin-bottom:15px;
}

/* =========================
   DESTINATION GRID
========================= */

.destination-grid{

  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;

}

.destination-card{

  background:var(--white);
  padding:35px;
  border-radius:24px;
  box-shadow:var(--shadow);
  transition:var(--transition);

}

.destination-card:hover{
  transform:translateY(-8px);
}

.destination-card h3{

  margin-bottom:18px;

}

.destination-card p{
  margin-bottom:18px;
}

.destination-card ul{

  display:grid;
  gap:12px;

}

.destination-card li{

  position:relative;
  padding-left:22px;

}

.destination-card li::before{

  content:'•';
  position:absolute;
  left:0;
  color:var(--accent);

}

.destination-flag{
  font-size:3rem;
  margin-bottom:20px;
}

/* =========================
   TIMELINE
========================= */

.timeline{

  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;

}

.timeline-item{

  background:var(--white);
  padding:35px 28px;
  border-radius:24px;
  box-shadow:var(--shadow);
  text-align:center;

}

.timeline-number{

  width:70px;
  height:70px;
  margin:auto auto 25px;
  border-radius:50%;
  background:var(--accent);
  color:#111;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:1.5rem;

}

/* =========================
   VALUES / TESTIMONIALS
========================= */

.values-grid,
.testimonial-grid,
.blog-grid{

  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;

}

.value-card,
.testimonial-card{

  background:var(--white);
  padding:40px 32px;
  border-radius:24px;
  box-shadow:var(--shadow);

}

.value-card h3,
.testimonial-card h4{

  margin-bottom:15px;

}

.testimonial-card h4{
  color:var(--accent);
}

/* =========================
   BLOG
========================= */

.blog-card{

  background:var(--white);
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:var(--transition);

}

.blog-card:hover{
  transform:translateY(-8px);
}

.blog-image img{

  height:240px;
  object-fit:cover;

}

.blog-content{
  padding:30px;
}

.blog-category{

  display:inline-block;
  padding:8px 14px;
  background:rgba(212,175,55,0.12);
  color:var(--accent);
  border-radius:100px;
  font-size:0.8rem;
  font-weight:700;
  margin-bottom:18px;

}

.blog-content h3{

  margin-bottom:15px;

}

.read-more{

  display:inline-block;
  margin-top:18px;
  color:var(--accent);
  font-weight:600;

}

/* =========================
   CONTACT
========================= */

.contact-grid{

  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:40px;

}

.contact-info-box,
.contact-form-wrapper{

  background:var(--white);
  padding:45px;
  border-radius:28px;
  box-shadow:var(--shadow);

}

.contact-info-item{

  display:flex;
  gap:18px;
  margin-bottom:30px;

}

.contact-icon{

  width:55px;
  height:55px;
  border-radius:16px;
  background:rgba(212,175,55,0.15);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.3rem;

}

.form-group{
  margin-bottom:22px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{

  width:100%;
  padding:16px 18px;
  border-radius:14px;
  border:1px solid var(--border);
  font-family:'Inter', sans-serif;
  outline:none;
  transition:var(--transition);

}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{

  border-color:var(--accent);

}

/* =========================
   FAQ
========================= */

.faq-container{
  max-width:850px;
  margin:auto;
}

.faq-item{

  background:var(--white);
  margin-bottom:20px;
  border-radius:20px;
  box-shadow:var(--shadow);
  overflow:hidden;

}

.faq-question{

  width:100%;
  background:none;
  border:none;
  padding:25px 30px;
  text-align:left;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  font-size:1rem;
  font-weight:600;

}

.faq-answer{

  padding:0 30px 25px;
  color:var(--text);

}

/* =========================
   MAP
========================= */

.map-section iframe{

  width:100%;
  height:450px;
  border:none;

}

/* =========================
   CTA
========================= */

.cta-section{

  background:
  linear-gradient(
  135deg,
  var(--primary),
  var(--secondary));

  padding:110px 0;
  text-align:center;

}

.cta-content h2{

  color:var(--white);
  margin-bottom:20px;

}

.cta-content p{

  color:#dce1ea;
  max-width:700px;
  margin:0 auto 35px;

}

/* =========================
   FOOTER
========================= */

.footer{

  background:#08111d;
  padding:35px 0 20px;

}

.footer-content{

  display:grid;
  grid-template-columns:1fr auto auto;
  gap:25px;
  align-items:center;

}

.footer-logo{
  width:70px;
  height:auto;
}

.footer-brand p{
  color:#c3cad4;
  margin-top:18px;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:18px;
}

.footer-brand p{
  margin-top:0;
}

.footer-links{

  display:flex;
  gap:25px;
  flex-wrap:wrap;

}

.footer-links a{

  color:#d9dfe7;
  transition:var(--transition);

}

.footer-links a:hover{
  color:var(--accent);
}

.footer-copy p{
  color:#9ba6b5;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

  .services-grid,
  .timeline,
  .destination-grid,
  .values-grid,
  .testimonial-grid,
  .blog-grid{

    grid-template-columns:repeat(2,1fr);

  }

  .hero-content,
  .about-grid,
  .contact-grid{

    grid-template-columns:1fr;

  }

  .about-grid{
      grid-template-columns:1fr;
      gap:36px;
      align-items:flex-start;
  }

  .about-content{
    text-align:center;
  }

  .about-image img{
    border-radius:20px;
  }

}

@media(max-width:768px){

  h1{
    font-size:2.4rem;
  }

  h2{
    font-size:2.3rem;
  }

  .section{
    padding:60px 0;
  }

  .page-hero{
    padding:140px 0 70px;
  }

  .hero-text p,
  .page-hero p{
      font-size:0.95rem;
  }

  .about-content{
    text-align:center;
  }

  .container{
    width:92%;
  }

  

  .nav{

    position:absolute;
    top:100%;
    right:0;
    background:var(--primary);
    width:100%;
    flex-direction:column;
    padding:30px;
    display:none;
    align-items: center;
    gap: 22px;

  }

    .nav-container{

    padding:14px 0;

  }

  .logo{

    gap:12px;

    transform:none;

  }

  .logo img{

    width:48px;
    height:48px;

  }

  .logo-text{
    min-width:unset;
    white-space:normal;
  }

  .main-title{

    font-size:1.5rem;
    line-height:0.95;

    margin-top:2px;

  }

  .sub-title{

    gap:8px;

    margin-top:3px;

    font-size:0.5rem;

    letter-spacing:3px;

  }

  .sub-title .line{

    width:18px;

  }

  .tagline{

    margin-top:3px;

    font-size:0.34rem;

    letter-spacing:0.7px;

    line-height:1;

  }

  .nav.active{
    display:flex;
  }

  .menu-toggle{
    display:block;
  }

  .hero-stats{
    flex-direction:column;
  }

  .services-grid,
  .timeline,
  .destination-grid,
  .values-grid,
  .testimonial-grid,
  .blog-grid{

    grid-template-columns:1fr;

  }

  .footer-content{

    grid-template-columns:1fr;
    text-align:center;

  }

}

@media(max-width:500px){

  .hero{
    padding-top:150px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .contact-info-box,
  .contact-form-wrapper,
  .service-card,
  .destination-card,
  .value-card,
  .testimonial-card{
    padding:30px 22px;
  }

}