/* ========================================
   Century Vision Projects - PROFESSIONAL STYLESHEET
   Clean, Modern & Professional Design
   ======================================== */

/* ===== ROOT & VARIABLES ===== */
:root {
  --primary-green: #1a5d1a;
  --light-green: #2e7d32;
  --dark-green: #0d3d0d;
  --accent-green: #4caf50;
  --cream: #f9f9f6;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-medium: #444444;
  --text-light: #666666;
  --border-color: #e0e0e0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  padding: 0;
  margin: 0;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75em;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  color: var(--text-medium);
  font-size: 1rem;
  margin-bottom: 1rem;
}

a {
  color: var(--primary-green);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--light-green);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  padding: 0 2rem;
  height: 96px;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 76px !important;
  width: auto;
  margin-top: -5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* NORMAL LINKS */
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.5rem 0;
  position: relative;
  transition: 0.3s;
}

/* Active link (non-CTA) */
.nav-links a:not(.nav-cta).active {
  color: #2F5D82; /* Steel Blue */
  font-weight: 600;
}

/* Contact CTA stays white when active */
.nav-links a.nav-cta.active {
  color: #FFFFFF;
}

/* 🔥 CTA BUTTON (Contact) */
.nav-links .nav-cta {
  background: linear-gradient(135deg, #0F2A44, #2F5D82);
  color: #FFFFFF;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  display: inline-block;
}

/* CTA Hover */
.nav-links .nav-cta:hover {
  background: linear-gradient(135deg, #2F5D82, #2F5D82);
  color: #FFFFFF;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--primary-green);
  transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  background: linear-gradient(
      rgba(10, 31, 44, 0.75),
      rgba(10, 31, 44, 0.75)
    ),
    url('../images/hero.avif') center/cover no-repeat;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
  margin: 0;
}

/* HEADING */
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 80px 0 1rem;

  background: linear-gradient(90deg, #ffffff, #d6eaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TAGLINES */
.hero-tagline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.6;
}

/* CTA BUTTON WRAPPER */
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* WHATSAPP BUTTON */
.hero-cta a:first-child {
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;

  background: #ffffff;
  color: #2b7dbd;

  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.hero-cta a:first-child:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

/* SECONDARY BUTTON */
.btn-secondary {
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-size: 0.95rem;
  text-decoration: none;

  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.7);

  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #0a1f2c;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }
}

:root {
  --primary: #0f172a;        /* Navy */
  --secondary: #1e3a5f;      /* Steel blue */
  --light: #e2e8f0;
  --card-bg: #1e293b;
  --accent: #94a3b8;
}

.services-section {
  background: linear-gradient(#ffffff);
  padding: 80px 20px;
  color: var(--primary); /* FIX: white se change */
}

.container {
  max-width: 1100px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;

  background: linear-gradient(90deg, #0a1f2c, #2b7dbd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* NEW subtitle */
.section-subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: #475569;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* 🔥 CHANGE: horizontal grid */
.services-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  display: flex;
  flex-direction: column; /* vertical content */
  background: #eef0f1;
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s ease;
  border-left: 4px solid #33718b;
}

.service-card:hover {
  transform: translateY(-5px);
  background: #eef0f1;
}

.service-number {
  width: 60px;
  height: 60px;
  background: #acc3de;
  color: #0f172a;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 15px; /* changed from right margin */
}

.service-card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  color: #0f172a;
}

.service-card p {
  color: #2b2e31;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
  .services-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ===== BUTTONS ===== */
.btn {
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--white);
  color: var(--primary-green);
}

.btn-primary:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: #0F2A44;
}

/* ===== PARTICLES - DISABLED ===== */
.particles {
  display: none;
}

/* ===== SECTIONS LAYOUT ===== */
section {
  padding: 5rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #0a1f2c, #2b7dbd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header h2::after {
  display: none;
}

.section-header p {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  color: #6b7280;
  text-align: center;
}

/* ===== GLACIAL SECTION ===== */
.glacial-section {
  width: 100%;
  font-family: 'Segoe UI', sans-serif;
  background: #f8fafc;
  padding: 60px 20px;
}

/* HERO */
.glacial-hero {
  text-align: center;
  padding: 30px 10px;
  border-bottom: 1px solid #e2e8f0;
}

/* MAIN TITLE */
.glacial-hero h2 {
  font-size: 2.2rem;
  letter-spacing: 3px;
  margin-bottom: 5px;
  font-weight: 700;

  background: linear-gradient(90deg, #0a1f2c, #2b7dbd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* LOCATION TEXT */
.glacial-hero span {
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: #64748b; /* soft grey-blue */
  text-transform: uppercase;
}

/* ===== ROW (HORIZONTAL LAYOUT) ===== */
.glacial-row {
  display: flex;
  gap: 25px;
  max-width: 1100px;
  margin: 40px auto;
  align-items: stretch;
}

/* ===== LEFT CARD (CONTENT) ===== */
.glacial-content {
  flex: 1.2;
  background: #ffffff;
  color: #334155;
  padding: 30px;
  line-height: 1.7;
  font-size: 0.95rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ===== RIGHT CARD (IMAGE BACKGROUND) ===== */
.glacial-bottom {
  flex: 1;
  display: flex;
  align-items: center;
  border-radius: 12px;
  padding: 30px;
  overflow: hidden;
  position: relative;

  /* 🔥 BACKGROUND IMAGE + OVERLAY */
  background-image: 
  linear-gradient(rgba(255, 255, 255, 0.618), rgba(255, 255, 255, 0.727)),
  url("../images/aboutglacial.avif"); /* path adjust if needed */

  background-size: cover;
  background-position: center;

  border: 1px solid #e2e8f0;
}

/* ===== TEXT INSIDE RIGHT CARD ===== */
.bottom-left {
  z-index: 2;
}

/* HEADING (light feel) */
.bottom-left h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #0c203b; /* soft grey-blue (light feel) */
  font-weight: 500;
}

/* TEXT (dark & readable) */
.bottom-left p {
  color: #000000; /* strong dark */
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .glacial-row {
    flex-direction: column;
  }

  .glacial-hero h2 {
    font-size: 1.5rem;
  }

  .glacial-content {
    padding: 20px;
  }

  .glacial-bottom {
    padding: 20px;
  }
}

.facilities {
  background: linear-gradient(135deg, #f4f9fc, #e6f2f8);
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 700;
  text-align: center;

  background: linear-gradient(90deg, #0a1f2c, #2b7dbd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
}

.facility {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px 15px;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.facility:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.facility i {
  font-size: 28px;
  margin-bottom: 15px;
  color: #2b7dbd; /* steel blue */
}

.attraction {
  background: #f4f9fc;
  padding: 80px 20px;
}

/* TITLE */
.title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #0a1f2c, #2b7dbd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.places {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #35566e;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* MAIN GRID */
.attraction-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
}

/* LEFT SIDE */
.left-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.left-images img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid #2b7dbd;
}

/* RIGHT GRID */
.right-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.right-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

/* HOVER EFFECT */
img {
  transition: 0.3s ease;
}

img:hover {
  transform: scale(1.04);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .attraction-grid {
    grid-template-columns: 1fr;
  }

  .left-images {
    flex-direction: row;
  }

  .left-images img {
    height: 120px;
  }
}

.img-up {
  object-position: center 70%;
}

.about-section {
  padding: 80px 20px;
  background: #f5f8fb;
}

.about-container {
  max-width: 900px;
  margin: auto;
}

/* HEADING (your required gradient style) */
.section-heading {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #0a1f2c, #2b7dbd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* CONTENT */
.about-content {
  color: #1a1a1a;
  font-size: 1rem;
  line-height: 1.7;
}

.about-content p {
  margin-bottom: 15px;
}

.about-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.about-content li {
  margin-bottom: 8px;
}

.about-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.about-image {
  flex: 1;
  min-width: 280px;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: 0.4s;
}

.about-image img:hover {
  transform: scale(1.03);
}

.about-content {
  flex: 1;
}

.about-section {
  padding: 80px 20px;
  background: #f5f8fb;
}

.about-container {
  max-width: 1100px;
  margin: auto;
}

/* HEADING (as per your rule) */
.section-heading {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #0a1f2c, #2b7dbd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* LAYOUT */
.about-wrapper {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* IMAGE */
.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  transition: 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.04);
}

/* CONTENT */
.about-content {
  flex: 1;
  font-size: 1rem;
  line-height: 1.8;
  color: #1a1a1a;
}

.about-content p {
  margin-bottom: 15px;
}

/* LIST */
.about-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.about-content li {
  margin-bottom: 8px;
}

/* CORE VALUES */
.core-values-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0a1f2c;
  margin-top: 20px;
}

.core-values {
  font-weight: 500;
  color: #2b7dbd;
}

/* CORE VALUES */
.core-values-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0a1f2c;
  margin-top: 20px;
}

.core-values {
  font-weight: 500;
  color: #2b7dbd;
}

.about-container {
  max-width: 1300px;   /* pehle 1100 tha → ab zyada wide */
  margin: auto;
  padding: 0 40px;     /* left-right spacing */
}

.about-wrapper {
  display: flex;
  gap: 70px;           /* image aur content ke beech space */
  align-items: center;
  margin-top: 50px;
  flex-wrap: wrap;
}

/* IMAGE */
.about-image {
  flex: 1.2;           /* thodi zyada space image ko */
  min-width: 320px;
}

.about-image img {
  width: 100%;
  height: 420px;       /* fixed height for better balance */
  object-fit: cover;   /* crop properly */
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* CONTENT */
.about-content {
  flex: 1;             /* thoda kam space content ko */
  font-size: 1.05rem;
  line-height: 1.9;    /* readability increase */
  color: #1a1a1a;
}

/* UL spacing better */
.about-content ul {
  padding-left: 22px;
  margin-bottom: 25px;
}

.about-content li {
  margin-bottom: 10px;
}

.vision-section {
  padding: 80px 20px;
  background: #eef3f8;
  position: relative;
}

.vision-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* HEADING (same rule) */
.section-heading {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #0a1f2c, #2b7dbd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* CONTENT */
.vision-content {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #1a1a1a;
  max-width: 900px;
  margin: auto;
}

.vision-content p {
  margin-bottom: 18px;
}

/* BOTTOM DESIGN STRIP (like your image) */
.vision-strip {
  width: 100%;
  height: 6px;
  margin-top: 40px;
  background: linear-gradient(90deg, #2b7dbd, #0a1f2c);
  position: relative;
}

/* angled shape */
.vision-strip::after {
  content: "";
  position: absolute;
  right: 0;
  top: -10px;
  width: 120px;
  height: 20px;
  background: #2b7dbd;
  transform: skewX(-40deg);
}

/* SECTION */
.mission-section {
  padding: 80px 20px;
  background: #f5f8fb;
}

/* CONTAINER */
.mission-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* HEADING (same as everywhere) */
.section-heading {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #0a1f2c, #2b7dbd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.mission-content {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #1a1a1a;
  max-width: 900px;
  margin: auto;
}

.mission-content p {
  margin-bottom: 18px;
}

/* GRID POINTS */
.mission-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

/* CARDS */
.mission-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 600;

  background: linear-gradient(90deg, #0a1f2c, #2b7dbd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mission-card:hover {
  transform: translateY(-5px);
}

.mission-card h4 {
  color: #0a1f2c;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.mission-card p {
  font-size: 0.95rem;
  color: #444;
}

/* STRIP (same as vision) */
.mission-strip {
  width: 100%;
  height: 6px;
  margin-top: 40px;
  background: linear-gradient(90deg, #2b7dbd, #0a1f2c);
  position: relative;
}

.mission-strip::after {
  content: "";
  position: absolute;
  right: 0;
  top: -10px;
  width: 120px;
  height: 20px;
  background: #2b7dbd;
  transform: skewX(-40deg);
}

/* HOVER EFFECT */
.mission-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 45px rgba(10, 31, 44, 0.15);
}

/* TITLE */
.mission-card h4 {
  color: #0a1f2c;
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 600;
}

/* TEXT */
.mission-card p {
  font-size: 0.95rem;
  color: #4a4a4a;
  line-height: 1.7;
}

.paradise-section {
  padding: 80px 8%;
  background: #f5f9ff;
}

.paradise-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* LEFT CONTENT */
.paradise-content {
  flex: 1;
  min-width: 300px;
}

/* HEADING (as per your rule) */
.section-heading {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #0a1f2c, #2b7dbd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.paradise-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2c3e50;
  text-align: center;
  max-width: 550px;
  margin: auto;
}

/* IMAGE */
.paradise-image {
  flex: 1;
  min-width: 300px;
}

.paradise-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.paradise-image img:hover {
  transform: scale(1.03);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .paradise-container {
    flex-direction: column;
  }

  .section-heading {
    font-size: 2rem;
  }
}

.invest-section {
  padding: 90px 8%;
  background: #f7fbff;
  position: relative;
  overflow: hidden;
}

/* BACKGROUND PATTERN */
.invest-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
  opacity: 0.15;
}

/* CONTAINER */
.invest-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
  margin-top: 40px; /* lower content block inside section */
  margin-right: 110px; /* lower content block inside section */
}

/* CONTENT */
.invest-content {
  flex: 1;
  min-width: 300px;
}

/* HEADING (your gradient rule) */
.section-heading {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #0a1f2c, #2b7dbd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.invest-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2c3e50;
  max-width: 600px;
  margin: auto;
  text-align: left;
}

/* RIGHT SIDE */
.invest-visual {
  flex: 1;
  min-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* GRAPH BOX */
.graph-box {
  width: 200px;
  height: 200px;
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  color: #1e3a5f;
  transition: transform 0.3s ease;
}

.graph-box:hover {
  transform: translateY(-10px) scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .invest-container {
    flex-direction: column;
    text-align: center;
  }

  .invest-text {
    text-align: center;
  }

  .section-heading {
    font-size: 2rem;
  }
}

.invest-section {
  padding: 90px 8%;
  background: #f4f9ff;
  position: relative;
  overflow: hidden;
}

/* SUBTLE PATTERN */
.invest-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, #2b7dbd 1px, transparent 0);
  background-size: 30px 30px;
  opacity: 0.08;
}

/* CONTAINER */
.invest-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

/* CONTENT */
.invest-content {
  flex: 1;
  min-width: 300px;
}

/* HEADING (your rule) */
.section-heading {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #0a1f2c, #2b7dbd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.invest-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2c3e50;
  max-width: 600px;
  margin: auto;
  text-align: left;
}

/* SVG GRAPH */
.graph-svg {
  width: 260px;
  height: 260px;
  fill: #1e3a5f;
  stroke: #2b7dbd;
  transition: transform 0.4s ease;
}

.graph-svg:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .invest-container {
    flex-direction: column;
    text-align: center;
  }

  .invest-text {
    text-align: center;
  }

  .section-heading {
    font-size: 2rem;
  }
}

.invest-section {
  padding: 90px 8%;
  background: #f4f9ff;
  position: relative;
  overflow: hidden;
}

/* PATTERN */
.invest-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, #2b7dbd 1px, transparent 0);
  background-size: 30px 30px;
  opacity: 0.06;
}

/* CONTAINER */
.invest-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

/* CONTENT */
.invest-content {
  flex: 1;
  min-width: 300px;
}

/* HEADING */
.section-heading {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #0a1f2c, #2b7dbd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.invest-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2c3e50;
  max-width: 600px;
  margin: auto;
  text-align: left;
}

/* IMAGE SIDE */
.invest-visual {
  flex: none;
  width: 300px; /* slightly larger image container */
  position: relative;
}

.invest-visual img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

/* IMAGE HOVER */
.invest-visual img:hover {
  transform: scale(1.05);
}

/* OPTIONAL OVERLAY */
.invest-text {
  font-size: 1rem; /* reduce text size a bit for balance */
  line-height: 1.7;
  max-width: 620px;
}

.invest-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(180deg, transparent, rgba(10,31,44,0.25));
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .invest-container {
    flex-direction: column;
    text-align: center;
  }

  .invest-text {
    text-align: center;
  }

  .section-heading {
    font-size: 2rem;
  }
}

.premium-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #0a1f2c, #0e3a46);
  color: #ffffff;
  overflow: hidden;
}

/* LEFT TOP SHAPE */
.premium-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  height: 220px;
  background: #6fb6c1;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* LEFT BOTTOM SHAPE */
.premium-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 220px;
  height: 220px;
  background: #4fa3b1;
  clip-path: polygon(0 100%, 100% 100%, 0 0);
}

.premium-content {
  max-width: 900px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* HEADING (as per your required gradient style) */
.premium-content h2 {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #ffffff, #bcdcff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* PARAGRAPH */
.premium-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.premium-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #a2cde7, #80c0d1);
  color: #ffffff;
  overflow: hidden;
}

/* LIGHT TOP SHAPE */
.premium-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  height: 220px;
  background: #e3f2fd; /* light blue */
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* LIGHT BOTTOM SHAPE */
.premium-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 220px;
  height: 220px;
  background: #d0ecff; /* lighter blue */
  clip-path: polygon(0 100%, 100% 100%, 0 0);
}

.premium-content {
  max-width: 900px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* HEADING - DARK PREMIUM GRADIENT */
.premium-content h2 {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #0a1f2c, #2b7dbd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* PARAGRAPH - SOFT DARK BLUE */
.premium-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #0e2a3a; /* dark readable blue */
}

.luxury-section {
  font-family: 'Segoe UI', sans-serif;
}

/* HERO */
.luxury-hero {
  height: 500px;
  background: url('images/mountain.jpg') center/cover no-repeat;
  position: relative;
}

.overlay {
  height: 100%;
  width: 100%;
  background: rgba(10, 31, 44, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 60px;
  color: white;
}

.overlay .tag {
  letter-spacing: 3px;
  font-style: italic;
}

.overlay h1 {
  font-size: 3rem;
  font-weight: 700;
}

.overlay h1 span {
  color: #f4c430;
}

.location {
  margin-top: 10px;
  color: #f4c430;
}

.subtitle {
  margin-top: 10px;
  font-style: italic;
}

/* MAIN CONTENT */
.luxury-content {
  display: flex;
  padding: 50px;
  background: linear-gradient(135deg, #e3f2fd, #b3d9e6);
}

/* LEFT */
.views {
  flex: 1;
}

.view-card {
  position: relative;
  margin-bottom: 20px;
}

.view-card img {
  width: 100%;
  border-radius: 20px;
}

.label {
  position: absolute;
  bottom: 15px;
  left: 20px;
  background: #0a1f2c;
  color: #f4c430;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
}

/* RIGHT */
.amenities {
  flex: 1;
  padding-left: 40px;
}

.amenities h2 {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 30px;

  background: linear-gradient(90deg, #0a1f2c, #2b7dbd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.amenity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.amenity span {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0a1f2c;
}

.amenity img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

/* BOTTOM STRIP */
.bottom-strip {
  background: #2b4f6c;
  color: white;
  text-align: center;
  padding: 20px;
  font-weight: 600;
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  min-height: auto;
  height: auto;
  position: relative;
  z-index: 0;
  padding: 20px 20px 20px;
}

/* LEFT TOP */
.intro {
  background: #6f7c84;
  padding: 50px;
  color: #111;
}

.intro h1 span {
  color: #f4c430;
}

/* RIGHT FULL */
.amenities {
  grid-row: auto;
  background: linear-gradient(135deg, #bcd6e0, #9fc3cf);
  padding: 60px 40px;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: auto;

  gap: 30px; /* spacing control */
}

/* HEADING (your theme) */
.amenities h2 {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #0a1f2c, #2b7dbd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.amenities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  width: 100%;
  margin: -20px auto 0;
}

.amenity-card {
  flex: 1 1 240px;
  max-width: 260px;
  min-width: 240px;
}

@media (max-width: 1120px) {
  .amenity-card {
    flex: 1 1 calc(50% - 15px);
    max-width: calc(50% - 15px);
    min-width: auto;
  }
}

@media (max-width: 620px) {
  .amenity-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* AMENITY ITEMS */
.amenity {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 20px;

  font-size: 2.0rem;   /* 🔥 bigger text */
  font-weight: 500;
  letter-spacing: 1px;
}

.amenity img {
  width: 320px;   /* 🔥 bigger */
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-right: 20px;
}

/* LEFT BOTTOM */
.views {
  background: #f5f5f5;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.view-box {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 220px;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.view-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .split-section {
    grid-template-columns: 1fr;
  }

  .intro,
  .amenities,
  .views {
    min-height: auto;
  }

  .intro {
    padding: 40px 30px 30px;
  }

  .amenities {
    padding: 40px 20px;
  }

  .views {
    padding: 25px;
  }
}

/* BOX */
/* view-box styling is defined above for responsive layout */

/* IMAGE */
/* view-box img styling is defined above */

/* LABEL BUTTON */
.view-label {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  
  background: linear-gradient(90deg, #0a1f2c, #2b7dbd);
  color: #d3dee3;
  
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* LABEL STYLE */
.view-box::after {
  content: attr(data-text);
}

.intro {
  position: relative;
  padding: 80px 60px 60px; /* 👈 top padding increase */
  min-height: 400px;       /* 👈 height fix */
  color: white;
  overflow: hidden;

  background: url('../images/plots.avif') center/cover no-repeat;
}

.why-section {
  position: relative;
  background: #f4f7f9;
  padding: 40px 60px 120px;
  overflow: hidden;
}

/* HEADER BAR */
.why-header {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 30px;

  background: linear-gradient(90deg, #0a1f2c, #2b7dbd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-color: #2b7dbd;
  padding: 15px;
  color: white;
}

/* CONTENT */
.why-content {
  max-width: 1000px;
  margin: auto;
}

/* HEADINGS */
.why-content h3 {
  font-size: 1.5rem;
  margin-top: 20px;

  background: linear-gradient(90deg, #0a1f2c, #2b7dbd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* PARAGRAPH */
.why-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

/* LIST */
.why-content ol {
  margin-top: 10px;
  padding-left: 20px;
}

.why-content li {
  margin-bottom: 5px;
  font-size: 1rem;
}

/* BOTTOM CURVE */
.curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(90deg, #0a1f2c, #0e3a46);
  border-top-left-radius: 100% 80px;
  border-top-right-radius: 100% 80px;
}

/* DARK OVERLAY */
.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 31, 44, 0.65); /* navy overlay */
  z-index: 1;
}

/* CONTENT ABOVE OVERLAY */
.intro * {
  position: relative;
  z-index: 2;
}

.intro  p {
  color: #d3dee3;
}

.intro h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #a8e2fd;
}

/* GOLD HIGHLIGHT */
.intro h1 span {
  color: #a8e2fd;
}

/* LOCATION */
.location {
  color: #a8e2fd;
}

/* SUBTEXT */
.subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.location-section {
  padding: 80px 20px;
  background: #f8fbff;
  text-align: center;
}

.section-heading {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #0a1f2c, #2b7dbd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.location-desc {
  max-width: 750px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  color: #4a5a6a; /* steel grey */
  line-height: 1.7;
}

.location-image {
  display: flex;
  justify-content: center;
}

.location-image img {
  width: 100%;
  max-width: 900px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.map-section {
  padding: 80px 20px;
  background: #f8fbff;
  text-align: center;
}

.section-heading {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #0a1f2c, #2b7dbd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.map-desc {
  max-width: 750px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  color: #4a5a6a;
  line-height: 1.7;
}

.map-container {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.map-container iframe {
  width: 100%;
  height: 420px;
  border: none;
}

/* ===== CARDS GRID ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.card::before {
  display: none;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.card h3 {
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* ===== SCROLL FADE - SIMPLIFIED ===== */
.scroll-fade {
  opacity: 1;
  transform: none;
}

.scroll-fade.visible {
  opacity: 1;
  transform: none;
}

/* ===== AMENITY CARDS ===== */
.amenity-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
  height: auto;
}

.amenity-card:hover {
  box-shadow: var(--shadow-md);
}

.amenity-card-inner {
  transform: none !important;
}

.amenity-card:hover .amenity-card-inner {
  transform: none !important;
}

.amenity-card-front {
  position: relative;
  background: var(--primary-green);
  color: var(--white);
  padding: 2rem;
  border-radius: 12px;
}

.amenity-card-front .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.amenity-card-front h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.amenity-card-back {
  display: none;
}

/* ===== GALLERY ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  background: var(--cream);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 31, 44, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-icon {
  font-size: 2rem;
  color: var(--white);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  padding: 1rem;
}

.lightbox-prev {
  left: -50px;
}

.lightbox-next {
  right: -50px;
}

/* ===== MAP ===== */
.custom-map {
  width: 100%;
  height: 450px;
  background: var(--cream);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 2rem;
}

.map-container {
  width: 100%;
  height: 100%;
  max-width: 100%; /* ya remove kar */
  padding: 0;
}

.map-marker {
  display: none;
}


.marker-tooltip {
  display: none;
}

.location-highlight {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #f8fbff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* TOP AREA */
.top-area {
  position: relative;
  height: 280px;
  background: linear-gradient(135deg, #0a1f2c, #2b7dbd);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* curved overlay effect */
.top-area::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -50px;
  width: 300px;
  height: 200px;
  background: #0a1f2c;
  border-radius: 50%;
}

.top-area::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -50px;
  width: 300px;
  height: 200px;
  background: #2b7dbd;
  border-radius: 50%;
}

/* LOGO */
.logo-box img {
  max-width: 260px;
  z-index: 2;
  position: relative;
}

/* SIDE GRAPHIC */
.side-graphic {
  position: absolute;
  right: 40px;
  bottom: 10px;
}

.side-graphic img {
  width: 140px;
  opacity: 0.95;
}

/* INFO BAR */
.info-bar {
  padding: 30px 20px;
  background: linear-gradient(90deg, #0a1f2c, #1e5c8a);
  color: #fff;
  text-align: center;
}

/* HEADING (IMPORTANT - TERA STYLE) */
.info-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #ffffff, #d6eaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* GRID */
.info-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.info-grid ul {
  list-style: none;
  padding: 0;
}

.info-grid li {
  margin: 8px 0;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.location-strip {
  width: 100%;
  padding: 30px 20px;
  background: linear-gradient(90deg, #06141f, #2b5f85);
}

/* INNER FLEX */
.location-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* LOGO LEFT */
.logo-box {
  background: #ffffff;
  padding: 15px;
  border-radius: 12px;
  flex: 0 0 180px;
  display: flex;
  justify-content: center;
}

.logo-box img {
  max-width: 100%;
  height: auto;
}

/* CENTER CONTENT */
.content-box {
  flex: 1;
  text-align: center;
}

/* HEADING (Tera gradient style) */
.main-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #ffffff, #d6eaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* DISTANCE GRID */
.distance-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.distance-grid ul {
  list-style: none;
  padding: 0;
}

.distance-grid li {
  color: #eaf4ff;
  margin: 6px 0;
  font-size: 1rem;
}

/* RIGHT IMAGE */
.map-box {
  background: #ffffff;
  padding: 10px;
  border-radius: 12px;
  flex: 0 0 160px;
  display: flex;
  justify-content: center;
}

.map-box img {
  max-width: 100%;
  height: auto;
}

/* MAIN SECTION */
.location-strip {
  width: 100%;
  padding: 40px 20px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}


/* INNER FLEX */
.location-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 2;
}

/* LOGO */
.logo-box {
  background: #ffffff; /* CLEAN */
  padding: 15px;
  border-radius: 12px;
  flex: 0 0 180px;
  display: flex;
  justify-content: center;
}

.logo-box img {
  max-width: 100%;
}

/* CENTER */
.content-box {
  flex: 1;
  text-align: center;
}

/* HEADING (YOUR GRADIENT STYLE) */
.main-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #0a1f2c, #2b7dbd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* DISTANCE GRID */
.distance-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.distance-grid ul {
  list-style: none;
  padding: 0;
}

.distance-grid li {
  color: #2c3e50;
  margin: 6px 0;
  font-size: 1rem;
}

/* MAP IMAGE */
.map-box {
  background: #ffffff; /* CLEAN */
  padding: 10px;
  border-radius: 12px;
  flex: 0 0 160px;
  display: flex;
  justify-content: center;
}

.map-box img {
  max-width: 100%;
}

/* ===== FOOTER ===== */
footer {
  background: #0a1f2c; /* dark navy */
  color: rgba(255, 255, 255, 0.9);
  padding: 4rem 2rem 2rem;
  position: relative;
  z-index: 1;
}

/* Layout */
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

/* Section Headings */
.footer-section h4 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Text */
.footer-section p {
  color: #b8cfe0; /* soft steel blue */
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Links */
.footer-section a {
  color: #b8cfe0;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-section a:hover {
  color: #2b7dbd; /* accent blue */
}

/* Logo */
.footer-section img {
  opacity: 1.0;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 1.0));
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.9rem;
  transition: 0.3s ease;
}

.social-links a:hover {
  background: #2b7dbd;
  transform: translateY(-3px);
}

.social-links i {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.9rem;
  transition: 0.3s ease;
}

.social-links i:hover {
  background: #2b7dbd;
  transform: translateY(-3px);
}

/* Divider */
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 2.5rem auto;
  max-width: 1200px;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  color: #9fb6c9;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: #9fb6c9;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-bottom a:hover {
  color: #2b7dbd;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(26, 93, 26, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ===== LAYOUT PAGE ===== */
.layout-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.layout-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.plot-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.plot-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.plot-card h3 {
  color: var(--primary-green);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

/* ===== UTILITIES ===== */
.text-center {
  text-align: center;
}

.text-white {
  color: var(--white);
}

.bg-green {
  background: var(--primary-green);
}

.bg-light-green {
  background: var(--light-green);
}

.bg-cream {
  background: var(--cream);
}

.py-3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-4 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
    padding: 0;
    box-shadow: var(--shadow-lg);
    transition: max-height 0.35s ease, padding 0.35s ease;
    z-index: 999;
  }

  .nav-links.active {
    max-height: 320px;
    padding: 1.5rem 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

@media (max-width: 768px) {
  section {
    padding: 3.5rem 1.5rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 0 1.5rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }
}