/* ===== OMBS Group — Stylesheet ===== */

:root {
  --primary: #c9a24a;
  --primary-dark: #a8842f;
  --primary-light: #e6c97a;
  --dark: #333334;
  --dark-2: #1b2940;
  --text: #2a2a2a;
  --muted: #6b7280;
  --soft: #f6f4ef;
  --white: #ffffff;
  --line: #e7e3d9;
  --shadow: 0 10px 30px rgba(15,26,43,.08);
  --shadow-lg: 0 25px 60px rgba(15,26,43,.18);
  --radius: 10px;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Poppins', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); line-height: 1.6; background: #fff; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

h1,h2,h3,h4 { font-family: var(--serif); color: var(--dark); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.25rem; }
.eyebrow {
  font-family: var(--sans); font-size: .8rem; letter-spacing: .25em;
  text-transform: uppercase; color: var(--primary); font-weight: 600; margin-bottom: .75rem;
  display: inline-block; position: relative; padding-left: 36px;
}
.eyebrow::before {
  content: ''; position: absolute; left: 0; top: 50%; width: 26px; height: 2px;
  background: var(--primary); transform: translateY(-50%);
}

.section { padding: 90px 0; position: relative; }
.bg-soft { background: var(--soft); }
.center { text-align: center; }
.center .eyebrow { padding-left: 0; }
.center .eyebrow::before { display: none; }
.mt-2 { margin-top: 2rem; }
.muted { color: var(--muted); font-size: .95rem; }

.section-head { max-width: 720px; margin: 0 auto 50px; }
.section-head.center { text-align: center; }
.section-sub { color: var(--muted); margin-top: .75rem; }

/* Animated gradient accent text */
.grad-text {
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradShift 4s linear infinite;
}
@keyframes gradShift {
  to { background-position: 200% center; }
}

/* ===== Buttons ===== */
.btn {
  position: relative; overflow: hidden;
  display: inline-block; padding: 13px 30px; border-radius: 50px;
  font-weight: 600; font-size: .9rem; letter-spacing: .03em;
  transition: all .3s cubic-bezier(.2,.8,.2,1); cursor: pointer; border: 2px solid transparent;
  z-index: 1;
}
.btn::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: translateX(-100%); transition: transform .4s ease;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 6px 20px rgba(201,162,74,.35); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(201,162,74,.45); }
.btn-primary:hover::before { transform: translateX(0); }
.btn-outline { border-color: rgba(255,255,255,.7); color: #fff; }
.btn-outline:hover { background: #fff; color: var(--dark); transform: translateY(-3px); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--dark-2); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(15,26,43,.25); }

/* ===== Header ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  /* background: rgba(255,255,255,.96); backdrop-filter: blur(10px); */
  /* box-shadow: 0 1px 0 rgba(0,0,0,.04); */
  transition: all .3s ease;
  transform: translateY(0);
}
/* .header.hidden { transform: translateY(-100%); } */
.header.scrolled { padding: 0; 
  /* box-shadow: 0 6px 24px rgba(15,26,43,.08); */
 }
.nav-container {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; transition: padding .3s ease; height: 90px; /* fixed navbar height */
}
.header.scrolled .nav-container { padding: 12px 0; }

/* .logo { display: flex; flex-direction: column; line-height: 1; transition: transform .25s; } */
/* LOGO */
.logo{
  position: absolute;
  top: 0px;   /* move logo upward */
  left: -80px;
  z-index: 10000;
  display: flex;
  align-items: center;
}
.logo:hover { transform: scale(1.04); }
.logo-mark {
  font-family: var(--serif); font-weight: 700; font-size: 1.7rem;
  color: var(--dark); letter-spacing: .04em;
}
.logo-sub { font-size: .65rem; letter-spacing: .35em; color: var(--primary); margin-top: 2px; }
.logo-light .logo-mark { color: #fff; }
.logo-light .logo-sub { color: var(--primary); }
.logo img{
  height: 120px; /* BIG logo */
  width: auto;
  object-fit: contain;
  display: block;
}

/* NAVIGATION */
.nav{
  margin-left: auto;
}

.nav ul { display: flex; gap: 36px; }
.nav a {
  font-size: .92rem; font-weight: 500; color: var(--dark);
  position: relative; padding: 6px 0;
}
.nav a::after {
  content:''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--primary); transition: width .35s cubic-bezier(.2,.8,.2,1);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.active { color: var(--primary); }

.hamburger {
  display: none; background: none; border: 0; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.hamburger span { width: 26px; height: 2px; background: var(--dark); transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

  .nav-container{
    height: 75px;
  }

  .logo{
    top: 0px;
    left: 40vh;
  }

  .logo img{
    height: 95px;
    /* display: none; */
  }

}
/* ===== FOOTER LOGO ===== */
.footer-logo{
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo img{
  height: 110px;
  width: auto;
  object-fit: contain;
  display: block;
}

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

  .footer-logo img{
    height: 85px;
  }

}
/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100vh; overflow: hidden;
  background: linear-gradient(rgba(15,26,43,.55), rgba(15,26,43,.7)),
              url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1920') center/cover;
  display: flex; align-items: center; color: #fff; padding-top: 80px;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(201,162,74,.18), transparent 60%);
  pointer-events: none;
}

/* Floating decorative shapes */
.hero-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.shape {
  position: absolute; border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,162,74,.25), rgba(201,162,74,.05));
  filter: blur(2px); animation: floatShape 12s ease-in-out infinite;
}
.shape.s1 { width: 220px; height: 220px; top: 10%; left: 6%; animation-delay: 0s; }
.shape.s2 { width: 140px; height: 140px; top: 60%; left: 12%; animation-delay: 2s; }
.shape.s3 { width: 300px; height: 300px; bottom: -80px; right: -60px; animation-delay: 4s; opacity: .7; }
.shape.s4 { width: 90px; height: 90px; top: 25%; right: 18%; animation-delay: 1s; }
@keyframes floatShape {
  0%, 100% { transform: translateY(0) translateX(0) scale(1); }
  50% { transform: translateY(-30px) translateX(20px) scale(1.05); }
}

.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-eyebrow {
  color: var(--primary); letter-spacing: .35em; font-size: .8rem;
  text-transform: uppercase; margin-bottom: 1rem;
  opacity: 0; transform: translateY(20px);
  animation: heroIn .9s .15s forwards cubic-bezier(.2,.8,.2,1);
}
.hero h1 {
  color: #fff; margin-bottom: 1.25rem;
  opacity: 0; transform: translateY(30px);
  animation: heroIn 1s .35s forwards cubic-bezier(.2,.8,.2,1);
}
.hero h1 .typed { color: var(--primary); border-right: 2px solid var(--primary); padding-right: 4px; }
.hero-text {
  font-size: 1.1rem; opacity: 0; margin-bottom: 2rem; max-width: 560px;
  transform: translateY(30px);
  animation: heroIn 1s .55s forwards cubic-bezier(.2,.8,.2,1);
}
.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; transform: translateY(30px);
  animation: heroIn 1s .75s forwards cubic-bezier(.2,.8,.2,1);
}
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}
.hero-text { animation-fill-mode: forwards; }
.hero-text { opacity: 0; }
.hero-text { animation: heroIn 1s .55s forwards cubic-bezier(.2,.8,.2,1); }
@keyframes heroIn { from { opacity: 0; transform: translateY(30px); } to { opacity: .92; transform: translateY(0); } }

/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: rgba(255,255,255,.7); font-size: .75rem; letter-spacing: .3em;
  text-transform: uppercase; text-align: center;
  animation: bobUp 2s ease-in-out infinite;
}
.scroll-cue::after {
  content: ''; display: block; width: 1px; height: 40px;
  background: rgba(255,255,255,.5); margin: 10px auto 0;
}
@keyframes bobUp {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ===== Counters ===== */
.counters {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff; padding: 80px 0; position: relative; overflow: hidden;
}
.counters::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top, rgba(201,162,74,.15), transparent 60%);
}
.counter-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center;
  position: relative; z-index: 1;
}
.counter-card {
  padding: 20px 10px; border-radius: var(--radius);
  transition: transform .35s ease, background .35s ease;
}
.counter-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.04); }
.counter-num {
  font-family: var(--serif); font-size: 3rem; font-weight: 700;
  background: linear-gradient(120deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: .25rem;
}
.counter-card p { color: rgba(255,255,255,.75); font-size: .9rem; letter-spacing: .05em; }

/* ===== Two Column ===== */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
/* .two-col.reverse .about-img { order: 2; } */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* 🔥 Reverse FULL layout */
.two-col.reverse .about-text {
  order: 2;
}
.two-col.reverse .about-img {
  order: 1;
}

.about-img {
  position: relative;
  transition: transform .5s ease;
}
.about-img img {
  border-radius: var(--radius); box-shadow: var(--shadow);
  transition: transform .6s ease;
}
.about-img::before {
  content: ''; position: absolute;
  top: -16px; left: -16px; width: 100%; height: 100%;
  border: 2px solid var(--primary); border-radius: var(--radius);
  z-index: -1; transition: all .5s ease;
}
.about-img:hover::before { top: -10px; left: -10px; }
.about-img:hover img { transform: scale(1.02); }
.about-text p { margin-bottom: 1rem; color: var(--muted); text-align: justify;}
.about-text h2 { margin-bottom: 1.25rem; }
.about-text .btn { margin-top: 1rem; }

/* ===== Project Grid ===== */
.project-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.project-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
  position: relative;
}
.project-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.project-img-wrap { overflow: hidden; position: relative; }
.project-img {
  height: 450px; background-size: cover; background-position: center;
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
.project-card:hover .project-img { transform: scale(1.1); }
.project-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,26,43,.55), transparent 60%);
  opacity: 0; transition: opacity .4s ease;
}
.project-card:hover .project-img-wrap::after { opacity: 1; }
.project-body { padding: 24px 22px 26px; }
.project-body h3 { margin: 8px 0 4px; transition: color .25s; }
.project-card:hover .project-body h3 { color: var(--primary); }
.project-body > p { color: var(--muted); font-size: .92rem; }
.tag {
  display: inline-block; background: rgba(201,162,74,.12); color: var(--primary);
  padding: 4px 12px; border-radius: 50px; font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
}
.tag-upcoming { background: rgba(15,26,43,.08); color: var(--dark); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px; color: var(--primary);
  font-weight: 600; font-size: .9rem; margin-top: 14px; transition: gap .3s;
}
.link-arrow i { transition: transform .3s; }
.link-arrow:hover { gap: 12px; }
.link-arrow:hover i { transform: translateX(4px); }

/* ===== Filters ===== */
.filter-bar {
  display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap;
}
.filter-btn {
  background: transparent; border: 1.5px solid var(--line); color: var(--dark);
  padding: 9px 22px; border-radius: 50px; font-family: var(--sans);
  font-weight: 500; font-size: .85rem; cursor: pointer; transition: all .3s;
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.filter-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ===== Expertise ===== */
.expertise-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.expertise-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 24px; text-align: center;
  transition: all .4s cubic-bezier(.2,.8,.2,1);
  position: relative; overflow: hidden;
}
.expertise-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  transform: scaleY(0); transform-origin: bottom; transition: transform .4s ease;
  z-index: 0;
}
.expertise-card > * { position: relative; z-index: 1; }
.expertise-card:hover {
  transform: translateY(-8px); border-color: transparent;
  box-shadow: 0 18px 40px rgba(201,162,74,.3);
}
.expertise-card:hover::before { transform: scaleY(1); }
.expertise-card:hover h3, .expertise-card:hover p, .expertise-card:hover i { color: #fff; }
.expertise-card i {
  font-size: 2.4rem; color: var(--primary); margin-bottom: 16px;
  transition: all .4s ease; display: inline-block;
}
.expertise-card:hover i { transform: scale(1.15) rotate(-6deg); }
.expertise-card h3 { margin-bottom: .5rem; transition: color .3s; }
.expertise-card p { color: var(--muted); font-size: .92rem; transition: color .3s; }

/* ===== Values ===== */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.value-card {
  background: #fff; padding: 40px 30px; border-radius: var(--radius);
  border-top: 3px solid var(--primary); box-shadow: var(--shadow);
  transition: transform .4s ease, box-shadow .4s ease;
}
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.value-card i {
  font-size: 2.2rem; color: var(--primary); margin-bottom: 18px;
  transition: transform .4s ease;
}
.value-card:hover i { transform: scale(1.15); }
.value-card p { color: var(--muted); margin-top: .5rem; }

/* Awards */
.award-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.award-card {
  background:#fff; padding: 32px 22px; border-radius: var(--radius);
  text-align:center; box-shadow: var(--shadow);
  transition: transform .4s ease, box-shadow .4s ease;
}
.award-card:hover { transform: translateY(-8px) rotate(-1deg); box-shadow: var(--shadow-lg); }
.award-card i {
  font-size: 2rem; color: var(--primary); margin-bottom: 12px;
  transition: transform .4s ease;
}
.award-card:hover i { transform: scale(1.2) rotate(8deg); }
.award-card p { color: var(--muted); font-size: .88rem; margin-top: .35rem; }

/* Why */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.why-card {
  background:#fff; padding: 36px 26px; border-radius: var(--radius);
  box-shadow: var(--shadow); position: relative;
  transition: transform .4s ease;
}
.why-card:hover { transform: translateY(-8px); }
.why-num {
  font-family: var(--serif); font-size: 2.6rem;
  background: linear-gradient(120deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-weight: 700; display: block; margin-bottom: 8px;
}
.why-card p { color: var(--muted); margin-top: .35rem; font-size: .92rem; }

/* ===== CTA Band ===== */
.cta-band {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff; padding: 70px 0; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,74,.2), transparent 70%);
  animation: floatShape 10s ease-in-out infinite;
}
.cta-flex {
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap; position: relative; z-index: 1;
}
.cta-band h2 { color: #fff; margin-bottom: .35rem; }
.cta-band p { opacity: .8; }

/* ===== Page Banner ===== */
.page-banner {
  position: relative; padding: 200px 0 100px; color: #fff;
  background-size: cover; background-position: center; overflow: hidden;
}
.banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,26,43,.75), rgba(15,26,43,.85));
}
.page-banner .container {
  position: relative; z-index: 2;
  animation: bannerIn 1s ease forwards;
  opacity: 0;
}
@keyframes bannerIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.page-banner h1 { color: #fff; margin-bottom: .5rem; }
.page-banner p { opacity: .85; }

/* ===== Contact ===== */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start;
}
.info-block {
  display: flex; gap: 16px; align-items: flex-start;
  margin-top: 24px; padding: 18px; border-radius: var(--radius);
  background: var(--soft); transition: all .35s ease;
  border-left: 3px solid transparent;
}
.info-block:hover {
  background: #fff; box-shadow: var(--shadow);
  border-left-color: var(--primary); transform: translateX(6px);
}
.info-block i {
  font-size: 1.1rem; color: var(--primary); background: #fff;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
  transition: transform .35s ease;
}
.info-block:hover i { transform: rotate(360deg) scale(1.1); }
.info-block h4 { margin-bottom: 2px; font-family: var(--sans); font-size: 1rem; }
.info-block p { color: var(--muted); font-size: .92rem; }
.info-block a { color: var(--muted); }
.info-block a:hover { color: var(--primary); }

.contact-form-wrap {
  background: #181818; padding: 40px; border-radius: var(--radius);
  box-shadow: var(--shadow); border-top: 3px solid var(--primary);
  transition: box-shadow .4s ease;
}
.contact-form-wrap:hover { box-shadow: var(--shadow-lg); }
.contact-form h3 { margin-bottom: 20px; color: var(--dark);}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block; font-size: .85rem; font-weight: 500;
  color: var(--dark); margin-bottom: 6px;
}
.form-row input, .form-row textarea {
  width: 100%; padding: 13px 14px; border: 1.5px solid var(--line);
  border-radius: 8px; font-family: var(--sans); font-size: .95rem;
  background: #fafafa; transition: all .25s;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none; border-color: var(--primary); background: #fff;
  box-shadow: 0 0 0 4px rgba(201,162,74,.12);
}
.form-msg { margin-top: 12px; font-size: .9rem; min-height: 22px; }
.form-msg.success { color: #1b8a3a; }
.form-msg.error { color: #c0392b; }

.map-section iframe { display: block; filter: grayscale(.2) contrast(1.05); transition: filter .4s; }
.map-section iframe:hover { filter: grayscale(0) contrast(1); }

/* ===== Footer ===== */
.footer { background: var(--dark); color: rgba(255,255,255,.75); padding: 70px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1.4fr; gap: 50px;
  padding-bottom: 50px;
}
.footer h4 {
  color: #fff; font-family: var(--sans); font-size: 1rem;
  margin-bottom: 18px; letter-spacing: .05em; position: relative; padding-bottom: 12px;
}
.footer h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 32px; height: 2px; background: var(--primary);
}
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: rgba(255,255,255,.7); transition: all .25s; font-size: .92rem; }
.footer ul li a:hover { color: var(--primary); padding-left: 6px; }
.footer p { font-size: .9rem; margin-bottom: 10px; }
.footer i { color: var(--primary); margin-right: 8px; width: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0;
  font-size: .85rem; color: rgba(255,255,255,.5); text-align: center;
}
.social-icons {
  margin-top: 12px;
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  padding-left: 10px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #fff;
  transform: translateY(-3px);
}

/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 99;
  width: 58px; height: 58px; background: #25D366; color: #fff;
  border-radius: 50%; display: grid; place-items: center;
  font-size: 1.7rem; box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: transform .3s ease;
  animation: pulseRing 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }
@keyframes pulseRing {
  0% { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== Back to Top ===== */
.back-top {
  position: fixed; bottom: 100px; right: 30px; z-index: 99;
  width: 44px; height: 44px; background: var(--dark); color: #fff;
  border-radius: 50%; display: grid; place-items: center; font-size: .9rem;
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: all .35s ease;
  border: 2px solid var(--primary);
}
.back-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-top:hover { background: var(--primary); color: #fff; transform: translateY(-4px); }

/* ===== Reveal Animations ===== */
[data-reveal] {
  opacity: 0; transform: translateY(40px);
  transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1);
}
[data-reveal="left"] { transform: translateX(-50px); }
[data-reveal="right"] { transform: translateX(50px); }
[data-reveal="zoom"] { transform: scale(.92); }
[data-reveal].in {
  opacity: 1; transform: translate(0,0) scale(1);
}
[data-reveal-delay="100"] { transition-delay: .1s; }
[data-reveal-delay="200"] { transition-delay: .2s; }
[data-reveal-delay="300"] { transition-delay: .3s; }
[data-reveal-delay="400"] { transition-delay: .4s; }
[data-reveal-delay="500"] { transition-delay: .5s; }

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .counter-grid, .expertise-grid, .award-grid, .why-grid { grid-template-columns: repeat(2,1fr); }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: 1fr; }
  .two-col, .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse .about-img { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav {
    position: fixed; top: 70px; right: -100%; width: 80%; max-width: 320px;
    height: calc(100vh - 70px); background: #fff;
    padding: 30px; transition: right .3s ease; box-shadow: -10px 0 30px rgba(0,0,0,.06);
  }
  .nav.open { right: 0; }
  .nav ul { flex-direction: column; gap: 20px; }
  .hamburger { display: flex; }
  .section { padding: 60px 0; }
  .counter-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .counter-num { font-size: 2.2rem; }
  .project-grid, .expertise-grid, .award-grid, .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .cta-flex { flex-direction: column; align-items: flex-start; text-align: left; }
  .contact-form-wrap { padding: 28px; }
  .page-banner { padding: 150px 0 70px; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 20px; font-size: 1.5rem; }
  .back-top { right: 20px; bottom: 86px; }
  .scroll-cue { display: none; }
  .shape.s1, .shape.s3 { display: none; }
}

/* =============================================
   NEW HOME SECTIONS — added per client request
   ============================================= */

/* Line eyebrow (with horizontal lines on both sides) */
.line-eyebrow {
  font-family: var(--sans); font-size: .82rem; letter-spacing: .35em;
  text-transform: uppercase; color: var(--dark); font-weight: 600;
  display: inline-flex; align-items: center; gap: 18px;
  margin-bottom: 1rem;
}
.line-eyebrow::before, .line-eyebrow::after {
  content: ''; width: 50px; height: 2px; background: var(--primary);
}

/* ===== About Hero (with tower backdrop) ===== */
.about-hero {
  position: relative; padding: 100px 0 0; overflow: hidden;
  background: linear-gradient(180deg, #f7f7f7 0%, #e8eaed 100%);
}
.about-hero-text {
  max-width: 760px; position: relative; z-index: 2;
}
.about-title {
  font-size: clamp(2rem, 4vw, 3rem); color: var(--dark);
  margin-bottom: 1.25rem; font-weight: 500; letter-spacing: .02em;
}
.about-hero-text p {
  color: var(--muted); font-size: 1rem; line-height: 1.8; max-width: 700px;
  margin-bottom: 1.5rem;
}
.read-more-circle {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: .8rem; letter-spacing: .25em; font-weight: 600;
  color: var(--dark); text-transform: uppercase;
  transition: gap .3s ease, color .3s;
}
.read-more-circle .circle {
  width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--muted);
  display: grid; place-items: center; font-size: .75rem;
  transition: all .35s ease;
}
.read-more-circle:hover { color: var(--primary); gap: 18px; }
.read-more-circle:hover .circle {
  border-color: var(--primary); background: var(--primary); color: #fff;
}
/* 🔥 MAIN CHANGE */
.about-tower {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;   /* control size */
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.about-tower img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom right;
  opacity: 0.9; /* optional soft look */
}

/* ===== Luxury Awaits (image grid stats) ===== */
.luxury-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
.lux {
  position: relative; border-radius: 8px; overflow: hidden;
  background-size: cover; background-position: center;
  filter: grayscale(.6) brightness(.85); transition: all .5s ease;
  cursor: default;
}
.lux::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,26,43,.7));
}
.lux:hover {
  filter: grayscale(0) brightness(1);
  transform: scale(1.02); z-index: 2;
}
.lux-tall { grid-row: span 2; }
.lux-wide { grid-column: span 2; }
.lux-overlay {
  position: absolute; bottom: 18px; left: 18px; right: 18px; z-index: 1;
  color: #fff;
}
.lux-overlay.center-overlay {
  bottom: auto; left: 0; right: 0; top: 50%;
  transform: translateY(-50%); text-align: center;
}
.lux-overlay h3 {
  font-family: var(--serif); font-size: 2.4rem; color: #fff;
  font-weight: 700; line-height: 1; margin-bottom: 6px;
}
.lux-tall .lux-overlay h3 { font-size: 3.2rem; }
.lux-overlay h3 span { font-size: 1.4rem; color: var(--primary); }
.lux-overlay h3 span.small { font-size: 1.1rem; }
.lux-overlay p {
  font-size: .78rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.95); font-weight: 500;
}

/* ===== Legacy Cards ===== */
.legacy-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.legacy-card {
  border-radius: 10px; overflow: hidden; height: 420px;
  position: relative; transition: transform .4s ease;
  box-shadow: 0 8px 30px rgba(15,26,43,.08);
}
.legacy-card:hover { transform: translateY(-8px); }

.legacy-photo {
  background-size: cover; background-position: center;
}
.legacy-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15,26,43,.85));
  display: flex; align-items: flex-end; justify-content: center; padding: 30px;
}
.legacy-tag {
  color: var(--primary); font-family: var(--serif);
  font-size: 1.6rem; font-weight: 700; letter-spacing: .12em;
}

.legacy-cream { background: #f1ede2; }
.legacy-dark {
  background: radial-gradient(ellipse at center, #2a3550 0%, #0f1a2b 100%);
  color: #fff; position: relative;
}
.legacy-dark::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,162,74,.4) 1px, transparent 1.5px);
  background-size: 14px 14px; opacity: .25; pointer-events: none;
}
.legacy-inner {
  height: 100%; padding: 30px 24px; display: flex; flex-direction: column;
  align-items: center; justify-content: space-between; text-align: center;
  position: relative; z-index: 1;
}
.legacy-brand {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 700;
  color: var(--dark); letter-spacing: .05em; line-height: 1;
}
.legacy-brand small {
  display: block; font-family: var(--sans); font-size: .55rem;
  letter-spacing: .35em; color: var(--primary); margin-top: 4px;
}
.legacy-brand.light { color: #fff; }

.legacy-sub {
  color: rgba(255,255,255,.85); font-size: .8rem;
  letter-spacing: .25em; text-transform: uppercase;
}

.legacy-medal {
  width: 160px; height: 160px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary), var(--primary-dark));
  display: grid; place-items: center; position: relative;
  box-shadow: 0 10px 30px rgba(201,162,74,.4);
}
.legacy-medal::before {
  content: ''; position: absolute; inset: 8px; border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.4);
}
.medal-num {
  font-family: var(--serif); font-size: 3rem; font-weight: 700;
  color: #fff; line-height: 1; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.medal-text {
  position: absolute; bottom: 16px; left: 0; right: 0; text-align: center;
  font-size: .55rem; letter-spacing: .2em; color: #fff;
  text-transform: uppercase;
}
.medal-text em { font-family: var(--serif); font-style: italic; font-size: .85rem;
  letter-spacing: .05em; text-transform: none; }

.legacy-medal.play { animation: spinSlow 8s linear infinite; }
@keyframes spinSlow { to { transform: rotate(360deg); } }
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 44px; height: 44px; background: rgba(255,255,255,.95); color: var(--primary);
  border-radius: 50%; display: grid; place-items: center;
  font-size: .9rem; padding-left: 3px;
  box-shadow: 0 4px 14px rgba(0,0,0,.3); animation: spinBack 8s linear infinite;
}
@keyframes spinBack { to { transform: translate(-50%,-50%) rotate(-360deg); } }

.legacy-title {
  font-family: var(--serif); color: var(--dark); font-size: 1.3rem; letter-spacing: .15em;
}
.legacy-title em {
  font-style: normal; display: block; font-size: 1.8rem;
  color: var(--primary); font-weight: 700; margin-top: 4px;
}

/* ===== Awards Section ===== */
.awards-section { background: #fafafa; }
.awards-row {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; align-items: center;
}
.awards-photo img {
  border-radius: 10px; box-shadow: var(--shadow-lg);
  width: 100%; height: 380px; object-fit: cover;
}
.awards-info { text-align: center; padding: 0 30px; }
.award-trophy {
  display: inline-grid; place-items: center;
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff; font-size: 1.6rem; margin-bottom: 18px;
  box-shadow: 0 8px 22px rgba(201,162,74,.4);
}
.award-year {
  font-family: var(--serif); font-size: 2.5rem; color: var(--dark); margin-bottom: 8px;
}
.award-title {
  font-family: var(--serif); font-size: 1.4rem; color: var(--dark);
  font-weight: 600; margin-bottom: 6px;
}
.award-project { color: var(--dark); font-weight: 500; margin-bottom: 4px; }
.award-by { color: var(--muted); font-size: .85rem; }
.award-nav {
  display: flex; justify-content: center; gap: 12px; margin-top: 24px;
}
.nav-btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--line);
  background: #fff; color: var(--dark); cursor: pointer;
  display: grid; place-items: center; font-size: .8rem;
  transition: all .3s ease;
}
.nav-btn:hover {
  background: var(--primary); color: #fff; border-color: var(--primary);
  transform: translateY(-2px);
}

/* ===== Blog Section ===== */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.blog-card {
  background: #fff; border-radius: 10px; overflow: hidden;
  box-shadow: var(--shadow); transition: transform .4s ease, box-shadow .4s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-img {
  height: 220px; background-size: cover; background-position: center;
  transition: transform .6s ease;
}
.blog-card:hover .blog-img { transform: scale(1.06); }
.blog-meta {
  display: flex; gap: 14px; padding: 20px 22px 0;
  font-size: .8rem; color: var(--muted);
}
.blog-meta span:first-child {
  color: var(--primary); font-weight: 600;
  background: rgba(201,162,74,.1); padding: 2px 10px; border-radius: 4px;
}
.blog-card h3 {
  padding: 12px 22px; font-size: 1.1rem; line-height: 1.4;
  color: var(--dark); transition: color .3s;
}
.blog-card:hover h3 { color: var(--primary); }
.blog-card > p { padding: 0 22px; color: var(--muted); font-size: .9rem; }
.blog-card .link-arrow { padding: 14px 22px 22px; }

/* ===== Testimonials (Cards Slider) ===== */
.testimonial-section {
  background: linear-gradient(180deg, #fff 0%, #f6f4ef 100%);
  overflow: hidden;
}
.testi-wrap { position: relative; max-width: 1100px; margin: 30px auto 0; overflow: hidden; }
.testi-track {
  display: flex; gap: 28px;
  transition: transform .6s cubic-bezier(.65,.05,.36,1);
  will-change: transform;
}
.testi-card {
  flex: 0 0 calc(33.333% - 19px);
  background: #fff;
  border-radius: 14px;
  padding: 36px 30px 28px;
  box-shadow: 0 10px 40px rgba(15,26,43,.08);
  position: relative;
  border-top: 3px solid var(--primary);
  transition: transform .35s ease, box-shadow .35s ease;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 18px 45px rgba(15,26,43,.14); }
.testi-quote-icon {
  position: absolute; top: -22px; left: 30px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: grid; place-items: center;
  font-size: .9rem;
  box-shadow: 0 6px 18px rgba(201,162,74,.4);
}
.testi-stars { color: var(--primary); font-size: .8rem; letter-spacing: 3px; margin-bottom: 14px; }
.testi-text {
  font-size: .95rem; line-height: 1.75; color: var(--dark);
  font-style: italic; margin-bottom: 22px; min-height: 130px;
}
.testi-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px; border-top: 1px solid var(--line);
}
.testi-author img {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--primary);
}
.testi-author h4 {
  font-family: var(--serif); font-size: 1rem; color: var(--dark);
  margin: 0 0 2px;
}
.testi-author p {
  font-size: .78rem; color: var(--primary); margin: 0;
  letter-spacing: .08em; text-transform: uppercase; font-weight: 500;
}
.testi-controls {
  display: flex; justify-content: center; align-items: center;
  gap: 16px; margin-top: 36px;
}
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--line);
  cursor: pointer; transition: all .3s;
  border: none; padding: 0;
}
.testi-dot.active { width: 28px; border-radius: 4px; background: var(--primary); }

body.dark-mode .testi-card { background: #1a1f29; }
body.dark-mode .testi-text { color: #d8d5cd; }

@media (max-width: 880px) {
  .testi-card { flex: 0 0 calc(100% - 0px); }
  .testi-text { min-height: auto; }
}

/* ===== Responsive — new sections ===== */
@media (max-width: 992px) {
  .luxury-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .lux-tall, .lux-wide { grid-column: span 1; grid-row: span 1; }
  .legacy-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-row { grid-template-columns: 1fr; }
  .awards-photo img { height: 300px; }
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .about-hero { padding: 70px 0 0; }
  .about-title { font-size: 1.8rem; }
  .luxury-grid { gap: 10px; grid-auto-rows: 140px; }
  .lux-overlay h3 { font-size: 1.8rem; }
  .lux-tall .lux-overlay h3 { font-size: 2.2rem; }
  .legacy-grid { grid-template-columns: 1fr; }
  .legacy-card { height: 380px; }
  .awards-info { padding: 0; }
  .phone { width: 200px; height: 400px; }
  .reel-overlay i { top: -160px; width: 48px; height: 48px; font-size: 1rem; }
  .reels-track { gap: 16px; }
  .line-eyebrow { font-size: .7rem; gap: 12px; }
  .line-eyebrow::before, .line-eyebrow::after { width: 30px; }
}

/* =============================================
   THEME TOGGLE + DARK MODE
   ============================================= */

/* Neumorphic Pill Theme Toggle (floating, bottom-left) */
.theme-toggle {
  background: transparent; border: 0; padding: 0; cursor: pointer;
  outline: none;
  position: fixed;
  left: 22px;
  bottom: 90px;
  z-index: 999;
  transform: translateY(0);
  opacity: 1;
  transition: transform .45s cubic-bezier(.65,.05,.36,1), opacity .35s ease;
}
.theme-toggle.is-hidden {
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 640px) {
  .theme-toggle { left: 16px; bottom: 78px; }
}
.toggle-track {
  display: inline-flex; align-items: center;
  width: 64px; height: 30px; border-radius: 999px;
  background: #e6e9ef;
  box-shadow:
    inset 4px 4px 8px rgba(163, 177, 198, 0.5),
    inset -4px -4px 8px rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 3px;
  transition: background .35s ease, box-shadow .35s ease;
}
.toggle-thumb {
  width: 24px; height: 24px; border-radius: 50%;
  background: #ffffff;
  box-shadow:
    2px 2px 6px rgba(163, 177, 198, 0.55),
    -2px -2px 6px rgba(255, 255, 255, 0.95);
  position: absolute; top: 3px; left: 3px;
  display: grid; place-items: center;
  transform: translateX(0);
  transition: transform .4s cubic-bezier(.65,.05,.36,1), background .35s, box-shadow .35s;
}
.toggle-thumb i {
  font-size: .7rem; color: var(--primary);
  position: absolute;
  transition: opacity .3s, transform .3s;
}
.toggle-thumb .icon-moon { opacity: 1; transform: rotate(0); }
.toggle-thumb .icon-sun  { opacity: 0; transform: rotate(90deg); }

/* In dark mode: thumb slides right + icons swap */
body.dark-mode .toggle-track {
  background: #1c1f26;
  box-shadow:
    inset 4px 4px 8px rgba(0, 0, 0, 0.55),
    inset -4px -4px 8px rgba(48, 54, 64, 0.75);
}
body.dark-mode .toggle-thumb {
  transform: translateX(34px);
  background: #2a2f3a;
  box-shadow:
    2px 2px 6px rgba(0, 0, 0, 0.55),
    -2px -2px 6px rgba(54, 60, 70, 0.75);
}
body.dark-mode .toggle-thumb .icon-moon { opacity: 0; transform: rotate(-90deg); }
body.dark-mode .toggle-thumb .icon-sun  { opacity: 1; transform: rotate(0); color: var(--primary); }

.theme-toggle:hover .toggle-thumb { transform: translateX(2px); }
body.dark-mode .theme-toggle:hover .toggle-thumb { transform: translateX(32px); }

/* ===== DARK THEME ===== */
body.dark-mode {
  --dark: #f4f1ea;
  --soft: #11151c;
  --muted: #a8a8a8;
  --line: #2a2f38;
  --bg: #0a0d12;
  background: #0a0d12;
  color: #f4f1ea;
}

/* body.dark-mode .header { background: rgba(15, 19, 26, .85); } */
/* body.dark-mode .header.scrolled { background: rgba(10, 13, 18, .96); box-shadow: 0 4px 20px rgba(0,0,0,.5); } */
body.dark-mode .nav a { color: #e8e6df; }
body.dark-mode .nav a:hover, body.dark-mode .nav a.active { color: var(--primary); }
body.dark-mode .logo-mark { color: #f4f1ea; }
body.dark-mode .hamburger span { background: #f4f1ea; }

/* Section backgrounds */
body.dark-mode .section { background: #272727; }
body.dark-mode .bg-soft { background: #3f3f3f; }
body.dark-mode .luxury-section,
body.dark-mode .blog-section,
body.dark-mode .testimonial-section,
body.dark-mode .legacy-section { background: #3f3f3f; }
body.dark-mode .awards-section { background: #2d2d2d; }
body.dark-mode .testimonial-section { background: linear-gradient(180deg, #0a0d12 0%, #11151c 100%); }

/* Text colors */
body.dark-mode h1, body.dark-mode h2, body.dark-mode h3,
body.dark-mode h4, body.dark-mode h5, body.dark-mode h6 {
  color: #f4f1ea;
}
body.dark-mode p { color: #c7c4bc; }
body.dark-mode .section-sub, body.dark-mode .muted { color: #a8a8a8; }

/* About hero */
body.dark-mode .about-hero {
  background: linear-gradient(180deg, #0a0d12 0%, #1a1f29 100%);
}
body.dark-mode .about-title { color: #f4f1ea; }
body.dark-mode .read-more-circle { color: #f4f1ea; }
body.dark-mode .read-more-circle .circle { border-color: #555; }

/* Cards & generic surfaces */
body.dark-mode .card,
body.dark-mode .project-card,
body.dark-mode .blog-card,
body.dark-mode .expertise-card,
body.dark-mode .counter-card,
body.dark-mode .legacy-cream {
  background: #1a1f29; color: #f4f1ea;
  box-shadow: 0 6px 24px rgba(0,0,0,.5);
}
body.dark-mode .legacy-cream { background: #1a1f29; }
body.dark-mode .legacy-cream .legacy-brand { color: #f4f1ea; }
body.dark-mode .legacy-cream .legacy-title { color: #f4f1ea; }
body.dark-mode .blog-card h3 { color: #f4f1ea; }
body.dark-mode .blog-card > p { color: #b8b5ad; }
body.dark-mode .blog-meta span:first-child {
  background: rgba(201,162,74,.18); color: var(--primary);
}

/* Hero shapes */
body.dark-mode .hero {
  background: linear-gradient(135deg, #0a0d12 0%, #1a1f29 50%, #0f1a2b 100%);
}
body.dark-mode .shape { opacity: .15; }

/* Forms */
body.dark-mode input, body.dark-mode textarea, body.dark-mode select {
  background: #1a1f29; color: #f4f1ea; border-color: #2a2f38;
}
body.dark-mode input::placeholder, body.dark-mode textarea::placeholder { color: #888; }

/* Buttons */
body.dark-mode .btn-dark { background: var(--primary); color: #0a0d12; }
body.dark-mode .btn-dark:hover { background: var(--primary-light); }
body.dark-mode .nav-btn {
  background: #1a1f29; color: #f4f1ea; border-color: #2a2f38;
}
body.dark-mode .nav-btn:hover { background: var(--primary); border-color: var(--primary); color: #0a0d12; }

/* CTA & footer */
body.dark-mode .cta-band { background: linear-gradient(135deg, #0f1a2b 0%, #1a1f29 100%); }
body.dark-mode .footer { background: #06080c; }
body.dark-mode .footer * { color: #b8b5ad; }
body.dark-mode .footer h4, body.dark-mode .footer .logo-mark { color: #f4f1ea; }

/* Back to top */
body.dark-mode .back-top { background: #1a1f29; color: var(--primary); border: 1px solid #2a2f38; }
body.dark-mode .back-top:hover { background: var(--primary); color: #0a0d12; }

/* Line eyebrow */
body.dark-mode .line-eyebrow { color: #f4f1ea; }

/* Mobile menu */
body.dark-mode .nav.open { background: #11151c; }

/* Smooth transition between themes */
body, body * {
  transition: background-color .4s ease, color .3s ease, border-color .3s ease;
}

/* =============================================
   PROJECTS DROPDOWN MENU
   ============================================= */
.nav .has-dropdown { position: relative; }
.nav .dropdown-toggle i { font-size: .65rem; margin-left: 4px; transition: transform .3s; }
.nav .has-dropdown:hover .dropdown-toggle i { transform: rotate(180deg); }

.nav .dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px; background: #fff;
  border-radius: 10px; padding: 10px 0;
  box-shadow: 0 14px 40px rgba(15,26,43,.15);
  opacity: 0; visibility: hidden; transition: all .3s ease;
  z-index: 100; list-style: none;
}
.nav .dropdown-menu::before {
  content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: #fff;
}
.nav .has-dropdown:hover .dropdown-menu,
.nav .has-dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav .dropdown-menu li { margin: 0; }
.nav .dropdown-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 22px; color: var(--dark); font-size: .92rem;
  font-weight: 500; transition: all .25s; white-space: nowrap;
}
.nav .dropdown-menu a i { color: var(--primary); font-size: .85rem; width: 18px; }
.nav .dropdown-menu a:hover, .nav .dropdown-menu a.active {
  background: rgba(201,162,74,.08); color: var(--primary); padding-left: 26px;
}

body.dark-mode .nav .dropdown-menu { background: #1a1f29; box-shadow: 0 14px 40px rgba(0,0,0,.6); }
body.dark-mode .nav .dropdown-menu::before { background: #1a1f29; }
body.dark-mode .nav .dropdown-menu a { color: #f4f1ea; }
body.dark-mode .nav .dropdown-menu a:hover, body.dark-mode .nav .dropdown-menu a.active {
  background: rgba(201,162,74,.15);
}

/* Mobile: dropdown becomes inline list */
@media (max-width: 880px) {
  .nav .dropdown-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; padding: 0 0 8px 16px; min-width: 0;
    background: transparent;
  }
  .nav .dropdown-menu::before { display: none; }
  .nav .has-dropdown:hover .dropdown-menu { transform: none; }
  body.dark-mode .nav .dropdown-menu { background: transparent; }
}

/* Filter link button (Redevelopment external) */
.filter-btn.filter-link {
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff; border-color: var(--primary);
}
.filter-btn.filter-link:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.filter-btn.filter-link i { font-size: .7rem; }

/* =============================================
   REDEVELOPMENT PAGE
   ============================================= */
.redev-banner { padding: 140px 0 100px; min-height: 380px; }
.redev-banner h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
.eyebrow-light { color: var(--primary); font-weight: 600; letter-spacing: .25em; }

.redev-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
.redev-stat {
  background: var(--soft); padding: 28px 20px; border-radius: 10px; text-align: center;
  border-left: 3px solid var(--primary);
  transition: transform .3s ease;
}
.redev-stat:hover { transform: translateY(-4px); }
.redev-stat h3 {
  font-family: var(--serif); font-size: 2.4rem; color: var(--dark); margin-bottom: 4px; line-height: 1;
}
.redev-stat h3 span { color: var(--primary); font-size: 1.5rem; }
.redev-stat p { color: var(--muted); font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; margin: 0; }

.value-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.value-card {
  background: #fff; padding: 32px 24px; border-radius: 10px; text-align: center;
  box-shadow: var(--shadow); transition: all .35s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.value-card i {
  font-size: 1.8rem; color: var(--primary); margin-bottom: 14px;
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(201,162,74,.1); display: inline-grid; place-items: center;
}
.value-card h4 { font-family: var(--serif); margin-bottom: 8px; color: var(--dark); }
.value-card p { color: var(--muted); font-size: .9rem; margin: 0; }

/* Committee Letter */
.committee-letter {
  max-width: 900px; margin: 0 auto;
  background: var(--soft); padding: 44px 50px; border-radius: 12px;
  border-left: 4px solid var(--primary);
  position: relative;
}
.committee-letter::before {
  content: '"'; position: absolute; top: -10px; left: 30px;
  font-family: var(--serif); font-size: 6rem; color: var(--primary);
  line-height: 1; opacity: .25;
}
.committee-letter .salutation {
  font-family: var(--serif); font-size: 1.2rem; color: var(--dark);
  font-weight: 600; margin-bottom: 18px;
}
.committee-letter p { line-height: 1.85; color: var(--dark); margin-bottom: 16px; }
.proposal-head {
  font-family: var(--serif); font-size: 1.2rem; color: var(--dark);
  margin: 24px 0 18px;
}
.proposal-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 24px;
}
.proposal-item {
  background: #fff; padding: 22px 18px; border-radius: 8px;
  text-align: center; transition: transform .3s ease;
  box-shadow: 0 2px 12px rgba(15,26,43,.05);
}
.proposal-item:hover { transform: translateY(-4px); }
.proposal-item i {
  color: var(--primary); font-size: 1.5rem; margin-bottom: 10px;
}
.proposal-item h4 {
  font-size: .95rem; color: var(--dark); margin-bottom: 6px; font-family: var(--sans); font-weight: 600;
}
.proposal-item p { font-size: .82rem; color: var(--muted); margin: 0; line-height: 1.5; }

.committee-letter .closing { margin-top: 22px; font-style: italic; color: var(--muted); }
.committee-letter .closing strong { color: var(--dark); font-style: normal; }
.committee-letter .btn { margin-top: 14px; }

/* Featured Redev (The Gateway) */
.featured-redev {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.featured-redev-img {
  height: 420px; border-radius: 12px; background-size: cover; background-position: center;
  position: relative; box-shadow: var(--shadow-lg);
}
.redev-badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--primary); color: #fff;
  padding: 8px 16px; border-radius: 30px;
  font-size: .8rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,162,74,.5); }
  50% { box-shadow: 0 0 0 14px rgba(201,162,74,0); }
}
.featured-redev-text h3 {
  font-family: var(--serif); font-size: 2rem; color: var(--dark); margin-bottom: 8px;
}
.redev-loc { color: var(--primary); font-weight: 500; margin-bottom: 18px; }
.redev-loc i { margin-right: 6px; }
.redev-spec {
  list-style: none; padding: 0; margin-top: 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.redev-spec li {
  background: #fff; padding: 14px 18px; border-radius: 8px;
  display: flex; flex-direction: column;
  border-left: 3px solid var(--primary);
  box-shadow: 0 2px 10px rgba(15,26,43,.05);
}
.redev-spec span {
  font-size: .72rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: .15em; margin-bottom: 4px;
}
.redev-spec strong { color: var(--dark); font-size: .95rem; }

/* Redev Cards Grid */
.redev-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.redev-card {
  background: #fff; border-radius: 10px; overflow: hidden;
  box-shadow: var(--shadow); transition: all .35s ease;
}
.redev-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.redev-img {
  height: 450px; background-size: cover; background-position: center;
  transition: transform .6s ease;
}
.redev-card:hover .redev-img { transform: scale(1.06); }
.redev-body { padding: 20px 22px; }
.redev-body .tag {
  display: inline-block; background: rgba(201,162,74,.15); color: var(--primary);
  padding: 4px 12px; border-radius: 4px; font-size: .72rem;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 10px;
}
.redev-body .tag-done { background: rgba(34,139,87,.12); color: #228b57; }
.redev-body h3 { font-family: var(--serif); font-size: 1.2rem; color: var(--dark); margin-bottom: 6px; }
.redev-body p { color: var(--muted); font-size: .88rem; margin: 0; }
.redev-body p i { color: var(--primary); margin-right: 4px; }

/* Dark mode overrides for redev */
body.dark-mode .redev-stat { background: #1a1f29; }
body.dark-mode .value-card { background: #1a1f29; }
body.dark-mode .committee-letter { background: #1a1f29; }
body.dark-mode .committee-letter p { color: #d8d5cd; }
body.dark-mode .proposal-item { background: #434344; }
body.dark-mode .redev-spec li { background: #424243; }
body.dark-mode .redev-card { background: #1a1f29; }

@media (max-width: 880px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .proposal-grid { grid-template-columns: 1fr 1fr; }
  .featured-redev { grid-template-columns: 1fr; }
  .featured-redev-img { height: 280px; }
  .redev-grid { grid-template-columns: 1fr; }
  .committee-letter { padding: 30px 24px; }
}
@media (max-width: 540px) {
  .redev-stats { grid-template-columns: 1fr; }
  .value-grid, .proposal-grid { grid-template-columns: 1fr; }
  .redev-spec { grid-template-columns: 1fr; }
}

/* =============================================
   ANTALYA DETAIL PAGE
   ============================================= */
.project-hero {
  position: relative; min-height: 100vh;
  background-size: cover; background-position: center;
  display: flex; align-items: center; padding: 140px 0 80px;
  color: #fff;
}
.project-hero::before {
  content: ''; position: absolute; inset: 0;
  /* background: linear-gradient(180deg, rgba(15,26,43,.55) 0%, rgba(15,26,43,.85) 100%); */
}
.project-hero-content { position: relative; z-index: 1; max-width: 800px; }
.project-hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  color: #fff; margin: 14px 0 18px; line-height: 1.05;
}
.project-hero-content .hero-text { color: rgba(255,255,255,.92); font-size: 1.1rem; max-width: 600px; margin-bottom: 30px; }
.project-hero-meta {
  display: flex; flex-wrap: wrap; gap: 28px;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.2);
}
.project-hero-meta div {
  color: #fff; font-size: .92rem; font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}
.project-hero-meta i { color: var(--primary); }

/* Why Choose */
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.why-card {
  background: #fff; padding: 36px 26px 30px; border-radius: 12px;
  text-align: center; transition: all .35s ease;
  box-shadow: var(--shadow);
  border-bottom: 3px solid transparent;
}
.why-card:hover {
  transform: translateY(-8px); border-bottom-color: var(--primary);
  box-shadow: var(--shadow-lg);
}
.why-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff; display: grid; place-items: center;
  font-size: 1.6rem; margin: 0 auto 18px;
  box-shadow: 0 8px 22px rgba(201,162,74,.35);
}
.why-card h3 { font-family: var(--serif); font-size: 1.15rem; color: var(--dark); margin-bottom: 8px; }
.why-card p { color: var(--muted); font-size: .9rem; margin: 0; }

/* Feature list (About Antalya) */
.feature-list {
  list-style: none; padding: 0; margin: 22px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px;
}
.feature-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .93rem; color: var(--dark);
}
.feature-list i {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(201,162,74,.15); color: var(--primary);
  display: grid; place-items: center; font-size: .65rem;
}

/* Antalya Gallery */
.antalya-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.g-img {
  background-size: cover; background-position: center;
  border-radius: 10px; transition: all .5s ease;
  cursor: pointer; overflow: hidden;
}
.g-img:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* Amenities */
.amenity-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
.amenity-col {
  background: #fff; padding: 36px 32px; border-radius: 12px;
  box-shadow: var(--shadow);
}
.amenity-head {
  font-family: var(--serif); font-size: 1.35rem; color: var(--dark);
  margin-bottom: 22px; padding-bottom: 14px;
  border-bottom: 2px solid var(--primary);
  display: flex; align-items: center; gap: 12px;
}
.amenity-head i { color: var(--primary); font-size: 1.2rem; }
.amenity-list {
  list-style: none; padding: 0; margin: 0;
}
.amenity-list li {
  padding: 10px 0; display: flex; align-items: center; gap: 12px;
  color: var(--dark); font-size: .95rem;
  border-bottom: 1px dashed var(--line);
}
.amenity-list li:last-child { border-bottom: 0; }
.amenity-list i { color: var(--primary); width: 24px; }

/* Three feature cards */
.three-feature {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.three-feature-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow); transition: transform .4s ease;
}
.three-feature-card:hover { transform: translateY(-6px); }
.three-feature-img {
  height: 240px; background-size: cover; background-position: center;
  transition: transform .6s ease;
}
.three-feature-card:hover .three-feature-img { transform: scale(1.06); }
.three-feature-card h4 {
  padding: 22px 24px; font-family: var(--serif);
  font-size: 1.15rem; color: var(--dark); margin: 0;
  text-align: center;
}

/* Highlights */
.highlight-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.highlight-card {
  background: #fff; padding: 32px 28px; border-radius: 12px;
  box-shadow: var(--shadow); transition: all .35s ease;
  border-left: 3px solid var(--primary);
}
.highlight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.highlight-card i {
  font-size: 1.8rem; color: var(--primary); margin-bottom: 14px;
}
.highlight-card h4 { font-family: var(--serif); font-size: 1.15rem; color: var(--dark); margin-bottom: 8px; }
.highlight-card p { color: var(--muted); font-size: .9rem; margin: 0; }

/* Specifications */
.spec-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.spec-card {
  background: var(--soft); padding: 22px 24px; border-radius: 10px;
  display: flex; flex-direction: column; gap: 6px;
  border-left: 3px solid var(--primary);
  transition: transform .3s ease;
}
.spec-card:hover { transform: translateX(4px); }
.spec-label {
  font-size: .72rem; color: var(--primary);
  letter-spacing: .15em; text-transform: uppercase; font-weight: 600;
}
.spec-value { color: var(--dark); font-size: .92rem; line-height: 1.5; }

/* Dark mode for Antalya page */
body.dark-mode .why-card,
body.dark-mode .amenity-col,
body.dark-mode .three-feature-card,
body.dark-mode .highlight-card { background: #1a1f29; }
body.dark-mode .spec-card { background: #1a1f29; }
body.dark-mode .feature-list li { color: #f4f1ea; }
body.dark-mode .amenity-list li { color: #f4f1ea; border-color: #2a2f38; }

@media (max-width: 992px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .antalya-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .g-tall, .g-wide { grid-column: span 1; grid-row: span 1; }
  .amenity-cols { grid-template-columns: 1fr; }
  .three-feature { grid-template-columns: 1fr; }
  .highlight-grid { grid-template-columns: 1fr 1fr; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .feature-list { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .why-grid { grid-template-columns: 1fr; }
  .highlight-grid, .spec-grid { grid-template-columns: 1fr; }
  .project-hero-meta { gap: 14px; }
}
/* =========================================
   FLOOR PLAN SLIDER
========================================= */

.floorplan-slider-wrap{
  position:relative;
}

.floorplan-slider{
  display:flex;
  gap:30px;
  overflow-x:auto;
  scroll-behavior:smooth;
  scrollbar-width:none;
  padding-bottom:10px;
}

.floorplan-slider::-webkit-scrollbar{
  display:none;
}

.floorplan-slide{
  min-width:calc(50% - 15px);
  flex:0 0 calc(50% - 15px);
}

.floorplan-image-wrap{
  position:relative;
  overflow:hidden;
  background:#f5f5f5;
  border-radius:8px;
}

.floorplan-image-wrap img{
  width:100%;
  height:520px;
  object-fit:cover;
  display:block;
  filter:blur(4px);
  transition:0.4s ease;
}

.floorplan-image-wrap:hover img{
  transform:scale(1.02);
}

.floorplan-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
}

.floorplan-plus{
  width:95px;
  height:95px;
  border-radius:50%;
  border:2px solid #000000;
  background:rgba(255,255,255,0.92);
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  transition:0.35s ease;
}

.floorplan-plus i{
  font-size:48px;
  color:#000000;
}

.floorplan-plus:hover{
  transform:scale(1.08);
  background:#fff;
}

.floorplan-badge{
  position:absolute;
  top:20px;
  left:0;
  background:#ffffff;
  color:#000000;
  padding:16px 26px;
  font-size:1.15rem;
  font-weight:500;
  z-index:2;
}

/* Arrows */

.fp-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:52px;
  height:52px;
  border:none;
  border-radius:50%;
  background:#fff;
  box-shadow:0 10px 25px rgba(0,0,0,0.12);
  cursor:pointer;
  z-index:5;
  transition:0.3s ease;
}

.fp-arrow:hover{
  transform:translateY(-50%) scale(1.08);
}

.fp-arrow i{
  font-size:18px;
  color:#111;
}

.fp-prev{
  left:-20px;
}

.fp-next{
  right:-20px;
}

/* Responsive */

@media(max-width:992px){

  .floorplan-slide{
    min-width:100%;
    flex:0 0 100%;
  }

  .floorplan-image-wrap img{
    height:420px;
  }

}

@media(max-width:768px){

  .floorplan-image-wrap img{
    height:320px;
  }

  .floorplan-plus{
    width:72px;
    height:72px;
  }

  .floorplan-plus i{
    font-size:34px;
  }

  .floorplan-badge{
    font-size:0.95rem;
    padding:12px 18px;
  }

  .fp-prev{
    left:5px;
  }

  .fp-next{
    right:5px;
  }

}

/* =============================================
   ABOUT PAGE — Founders, Five Pillars, Geo
   ============================================= */

/* Founder leader styling */
.leader-quote {
  font-family: var(--serif);
  font-size: 1.25rem; line-height: 1.55;
  color: var(--dark); font-style: italic;
  border-left: 3px solid var(--primary);
  padding: 8px 0 8px 18px;
  margin: 18px 0 22px;
}
.leader-img img {
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(15,26,43,.18);
  filter: saturate(1.05);
}
body.dark-mode .leader-quote { color: #f4f1ea; }

/* ===== Our Five Pillars ===== */
.pillars-section { overflow: hidden; }
.pillars-stage {
  margin-top: 50px;
  display: flex; flex-direction: column; gap: 36px;
  align-items: center;
}
.pillar-showcase {
  position: relative;
  width: 100%; max-width: 980px;
  display: grid; grid-template-columns: 280px 1fr;
  gap: 50px; align-items: center;
  background: linear-gradient(135deg, #fff 0%, #fbf9f4 100%);
  border-radius: 18px;
  padding: 50px 60px;
  box-shadow: 0 20px 60px rgba(15,26,43,.10);
  border: 1px solid var(--line);
  overflow: hidden;
}
.pillar-showcase::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,74,.18), transparent 70%);
}
.pillar-badge {
  position: absolute; top: 26px; right: 32px;
  font-family: var(--serif); font-size: 3.2rem;
  color: var(--primary); opacity: .25; line-height: 1;
  font-weight: 700;
}
.pillar-icon-wrap {
  position: relative;
  width: 220px; height: 220px;
  display: grid; place-items: center;
  margin: 0 auto;
}
.pillar-icon-ring {
  position: absolute; inset: 14px;
  border: 1.5px dashed rgba(201,162,74,.55);
  border-radius: 50%;
  animation: ringSpin 25s linear infinite;
}
.pillar-icon-ring.outer {
  inset: -8px;
  border-style: solid;
  border-color: rgba(15,26,43,.08);
  animation: ringSpin 35s linear infinite reverse;
}
@keyframes ringSpin { to { transform: rotate(360deg); } }
.pillar-icon {
  width: 130px; height: 130px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; display: grid; place-items: center;
  font-size: 2.6rem;
  box-shadow: 0 16px 40px rgba(201,162,74,.45),
              inset 0 -6px 14px rgba(0,0,0,.15);
  transition: transform .5s cubic-bezier(.65,.05,.36,1);
}
.pillar-content { position: relative; z-index: 1; }
.pillar-content h3 {
  font-family: var(--serif);
  font-size: 2rem; color: var(--dark);
  margin: 0 0 14px;
  letter-spacing: .01em;
}
.pillar-content p {
  font-size: 1rem; color: var(--muted);
  line-height: 1.75; margin: 0 0 26px;
  min-height: 80px;
}
.pillar-controls { display: flex; gap: 12px; }
.pillar-arrow {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid var(--line); background: #fff;
  color: var(--dark); cursor: pointer;
  display: grid; place-items: center;
  transition: all .3s ease;
}
.pillar-arrow:hover {
  background: var(--primary); border-color: var(--primary);
  color: #fff; transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(201,162,74,.4);
}
.pillar-strip {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  max-width: 900px;
}
.pillar-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  background: #fff; border: 1.5px solid var(--line);
  border-radius: 999px; cursor: pointer;
  color: var(--muted); font-weight: 500; font-size: .92rem;
  font-family: var(--sans);
  transition: all .35s ease;
}
.pillar-pill i {
  color: var(--primary); font-size: 1rem;
  transition: transform .35s ease;
}
.pillar-pill:hover {
  border-color: var(--primary);
  color: var(--dark);
  transform: translateY(-2px);
}
.pillar-pill.active {
  background: var(--dark); color: #fff;
  border-color: var(--dark);
  box-shadow: 0 10px 25px rgba(15,26,43,.25);
}
.pillar-pill.active i { color: var(--primary); transform: scale(1.15); }

/* Showcase fade-in animation */
.pillar-showcase.fading .pillar-icon { transform: scale(.85) rotate(-12deg); opacity: .5; }
.pillar-showcase.fading .pillar-content h3,
.pillar-showcase.fading .pillar-content p { opacity: 0; transform: translateY(8px); }
.pillar-content h3, .pillar-content p { transition: opacity .35s ease, transform .35s ease; }

/* Dark mode */
body.dark-mode .pillar-showcase {
  background: linear-gradient(135deg, #1a1f29 0%, #545455 100%);
  border-color: #2a2f38;
}
body.dark-mode .pillar-pill { background: #1a1f29; border-color: #2a2f38; color: #d8d5cd; }
body.dark-mode .pillar-pill.active { background: var(--primary); color: #414142; border-color: var(--primary); }
body.dark-mode .pillar-pill.active i { color: #434344; }
body.dark-mode .pillar-arrow { background: #1a1f29; border-color: #2a2f38; color: #f4f1ea; }

/* ===== Our Geographical Presence ===== */
.geo-section { overflow: hidden; }
.geo-grid {
  margin-top: 50px;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 60px; align-items: center;
}

/* Project info card */
.geo-card {
  background: #fff; border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(15,26,43,.12);
  transition: transform .4s ease;
}
.geo-card-img {
  height: 280px; background-size: cover; background-position: center;
  position: relative;
  transition: opacity .4s ease;
}
.geo-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15,26,43,.4));
}
.geo-card-body { padding: 32px 36px 36px; }
.geo-card-body h3 {
  font-family: var(--serif); font-size: 1.7rem;
  color: var(--dark); margin: 8px 0 14px;
  transition: opacity .3s ease;
}
.geo-card-body p {
  color: var(--muted); font-size: .95rem;
  line-height: 1.7; margin: 0 0 24px;
  min-height: 65px;
  transition: opacity .3s ease;
}
.geo-meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.geo-meta div { display: flex; flex-direction: column; gap: 4px; }
.geo-meta-label {
  font-size: .7rem; color: var(--primary);
  letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
}
.geo-meta div span:last-child {
  font-size: .92rem; color: var(--dark); font-weight: 500;
}
.geo-card.swap .geo-card-img,
.geo-card.swap .geo-card-body h3,
.geo-card.swap .geo-card-body p { opacity: 0; }

/* Map (Mumbai + Navi Mumbai outline) */
.geo-map-wrap {
  position: relative;
  width: 100%; max-width: 520px; margin: 0 auto;
  aspect-ratio: 1451 / 1635;
  background: transparent;
}
.geo-map-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  filter: none;
}
.geo-map-shade { display: none; }

body.dark-mode .geo-map-wrap { background: transparent; }
body.dark-mode .geo-map-img { filter: invert(1) brightness(.95); }

.geo-pin {
  position: absolute; transform: translate(-50%, -50%);
  width: 18px; height: 18px;
  background: transparent; border: 0; padding: 0;
  cursor: pointer;
  z-index: 2;
}
.pin-dot {
  position: absolute; inset: 4px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255,255,255,.9), 0 6px 14px rgba(201,162,74,.5);
  transition: all .35s ease;
}
.pin-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0;
  transition: opacity .3s ease;
}
.pin-label {
  position: absolute;
  top: -28px; left: 50%; transform: translateX(-50%);
  font-size: .7rem; font-weight: 600;
  color: var(--dark);
  background: #fff;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(15,26,43,.15);
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.geo-pin:hover .pin-label { opacity: 1; transform: translateX(-50%) translateY(-4px); }
.geo-pin:hover .pin-dot { transform: scale(1.25); }

.geo-pin.active .pin-dot {
  background: var(--dark);
  inset: 2px;
  box-shadow: 0 0 0 4px var(--primary), 0 8px 18px rgba(15,26,43,.45);
}
.geo-pin.active .pin-pulse {
  opacity: .35;
  animation: pinPulse 1.8s ease-out infinite;
}
.geo-pin.active .pin-label {
  opacity: 1; transform: translateX(-50%);
  background: var(--dark); color: #fff;
}
@keyframes pinPulse {
  0%   { transform: scale(1);   opacity: .45; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* Dark mode geo */
body.dark-mode .geo-card { background: #1a1f29; }
body.dark-mode .geo-meta div span:last-child,
body.dark-mode .geo-card-body h3 { color: #f4f1ea; }
body.dark-mode .pin-label { background: #1a1f29; color: #f4f1ea; }
body.dark-mode .geo-pin.active .pin-label { background: var(--primary); color: #3e3f3f; }

/* ===== Responsive ===== */
@media (max-width: 880px) {
  .pillar-showcase {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    gap: 24px;
    text-align: center;
  }
  .pillar-icon-wrap { width: 180px; height: 180px; }
  .pillar-icon { width: 110px; height: 110px; font-size: 2.2rem; }
  .pillar-content h3 { font-size: 1.5rem; }
  .pillar-content p { min-height: auto; }
  .pillar-controls { justify-content: center; }
  .pillar-badge { font-size: 2.2rem; top: 16px; right: 18px; }
  .pillar-pill { padding: 10px 16px; font-size: .85rem; }
  .pillar-pill span { display: none; }
  .pillar-pill i { font-size: 1.05rem; }

  .geo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .geo-map-wrap { max-width: 360px; }
  .geo-meta { grid-template-columns: 1fr 1fr; }
  .geo-card-img { height: 220px; }
  .geo-card-body { padding: 24px 24px 28px; }
}
@media (max-width: 480px) {
  .geo-meta { grid-template-columns: 1fr; gap: 12px; }
  .pillar-strip { gap: 8px; }
  .pillar-pill { padding: 12px; }
  .pin-label { font-size: .65rem; padding: 2px 8px; }
}

/* =============================================
   ABOUT — Awards Slider, Life, Contact Form
   ============================================= */

/* Awards slider */
.awards-slider-section {
  position: relative;
  background:
    linear-gradient(135deg, rgba(15,26,43,.04), rgba(201,162,74,.05)),
    var(--soft);
}
.awards-slider {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  padding: 60px;
  box-shadow: 0 22px 60px rgba(15,26,43,.10);
  position: relative;
  overflow: hidden;
}
.awards-slider::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,74,.12), transparent 65%);
  pointer-events: none;
}
.awards-visual {
  position: relative;
  height: 380px;
  display: grid; place-items: center;
  background:
    radial-gradient(ellipse at center, rgba(201,162,74,.18), transparent 65%),
    linear-gradient(135deg, #f6f4ef 0%, #ffffff 100%);
  border-radius: 14px;
  overflow: hidden;
}
.awards-visual img {
  max-height: 92%;
  max-width: 80%;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(15,26,43,.25)) saturate(1.1);
  transition: opacity .4s ease, transform .4s ease;
}
.awards-visual.fading img { opacity: 0; transform: scale(.92); }
.awards-visual-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(15,26,43,.08));
  pointer-events: none;
}
.awards-info { position: relative; z-index: 1; }
.awards-year {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 18px;
  transition: opacity .35s ease, transform .35s ease;
  letter-spacing: -.01em;
}
.awards-title {
  font-family: var(--serif);
  font-size: 1.85rem;
  color: var(--dark);
  margin: 0 0 12px;
  line-height: 1.3;
  transition: opacity .35s ease, transform .35s ease;
  min-height: 80px;
}
.awards-by {
  color: var(--muted);
  font-size: .98rem;
  margin: 0 0 30px;
  transition: opacity .35s ease, transform .35s ease;
  min-height: 50px;
}
.awards-info.fading .awards-year,
.awards-info.fading .awards-title,
.awards-info.fading .awards-by {
  opacity: 0; transform: translateY(8px);
}
.awards-controls {
  display: flex; align-items: center; gap: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.awards-arrow {
  width: 50px; height: 50px; border-radius: 50%;
  border: 1.5px solid var(--line); background: transparent;
  color: var(--dark); cursor: pointer;
  display: grid; place-items: center;
  transition: all .3s ease;
}
.awards-arrow:hover {
  background: var(--primary); border-color: var(--primary);
  color: #fff; transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(201,162,74,.4);
}
.awards-counter {
  font-family: var(--serif);
  color: var(--muted); font-size: .95rem;
  letter-spacing: .15em;
}
.awards-counter span:first-child { color: var(--primary); font-weight: 700; }

body.dark-mode .awards-slider { background: #1a1f29; }
body.dark-mode .awards-visual {
  background:
    radial-gradient(ellipse at center, rgba(201,162,74,.22), transparent 65%),
    linear-gradient(135deg, #11151c 0%, #1a1f29 100%);
}
body.dark-mode .awards-arrow { color: #f4f1ea; border-color: #2a2f38; }

/* Life at OMBS */
.life-section { overflow: hidden; }
.life-wrap {
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}
.life-track {
  display: flex; gap: 22px;
  transition: transform .55s cubic-bezier(.65,.05,.36,1);
  will-change: transform;
}
.life-card {
  flex: 0 0 calc(50% - 16.5px);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(15,26,43,.08);
  transition: transform .35s ease, box-shadow .35s ease;
}
.life-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(15,26,43,.16);
}
.life-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.life-card:hover img { transform: scale(1.06); }
.life-card p {
  text-align: center;
  padding: 18px 14px;
  font-family: var(--serif);
  color: var(--dark);
  margin: 0;
  font-size: 1rem;
}
.life-controls {
  display: flex; justify-content: center; gap: 14px;
  margin-top: 36px;
}
.life-arrow {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--line); background: #fff;
  color: var(--dark); cursor: pointer;
  display: grid; place-items: center;
  transition: all .3s ease;
}
.life-arrow:hover {
  background: var(--dark); border-color: var(--dark);
  color: #fff; transform: scale(1.08);
}

body.dark-mode .life-card { background: #1a1f29; }
body.dark-mode .life-card p { color: #f4f1ea; }
body.dark-mode .life-arrow { background: #1a1f29; border-color: #2a2f38; color: #f4f1ea; }

/* Get In Touch contact band */
.contact-band-section { overflow: hidden; }
.contact-band {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(15,26,43,.18);
  background: var(--dark);
  min-height: 540px;
}
.contact-band-img {
  position: relative;
  background-image:
    linear-gradient(135deg, rgba(15,26,43,.65), rgba(15,26,43,.85)),
    url('https://images.unsplash.com/photo-1480714378408-67cf0d13bc1b?w=1400');
  background-size: cover;
  background-position: center;
  display: flex; align-items: center;
  padding: 60px 50px;
}
.contact-band-overlay { color: #fff; }
.contact-band-overlay h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #fff; margin: 0 0 16px;
  line-height: 1.2;
}
.contact-band-overlay > p {
  color: rgba(255,255,255,.85);
  font-size: 1rem; line-height: 1.7;
  max-width: 380px;
}
.contact-band-meta {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.contact-band-meta p {
  color: #fff; font-size: .95rem;
  margin: 8px 0; display: flex; align-items: center; gap: 10px;
}
.contact-band-meta i { color: var(--primary); width: 20px; }

.contact-band-form {
  padding: 50px 55px;
  background: #06080c;
  display: flex; flex-direction: column; gap: 18px;
}
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label {
  color: #fff;
  font-size: .92rem; font-weight: 500;
  letter-spacing: .02em;
}
.form-row label span { color: #ff6b6b; }
.form-row input,
.form-row select {
  background: transparent;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 6px;
  padding: 12px 16px;
  color: #fff;
  font-family: var(--sans);
  font-size: .95rem;
  outline: none;
  transition: border-color .3s ease, background .3s ease;
  width: 100%;
}
.form-row input:focus,
.form-row select:focus {
  border-color: var(--primary);
  background: rgba(255,255,255,.04);
}
.form-row input::placeholder { color: rgba(255,255,255,.4); }
.select-wrap { position: relative; }
.select-wrap i {
  position: absolute; right: 16px; top: 50%;
  transform: translateY(-50%);
  color: var(--primary); pointer-events: none;
  font-size: .85rem;
}
.select-wrap select {
  appearance: none; -webkit-appearance: none;
  cursor: pointer;
  padding-right: 40px;
}
.select-wrap select option { background: var(--dark); color: #fff; }

.form-submit {
  margin-top: 8px;
  display: flex; align-items: center; gap: 22px;
  flex-wrap: wrap;
}
.form-submit-btn {
  display: inline-flex; align-items: center; gap: 14px;
  background: transparent;
  border: 1.5px solid #fff;
  color: #fff;
  font-family: var(--sans);
  font-size: .9rem; font-weight: 500;
  letter-spacing: .15em;
  padding: 14px 32px 14px 36px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .35s ease;
}
.form-submit-btn i {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid #fff;
  display: grid; place-items: center;
  font-size: .8rem;
  transition: all .35s ease;
}
.form-submit-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}
.form-submit-btn:hover i {
  border-color: #fff;
  background: #fff;
  color: var(--primary);
}
.form-thanks {
  color: var(--primary);
  font-size: .9rem; margin: 0;
  opacity: 0; transform: translateY(6px);
  transition: all .4s ease;
}
.form-thanks.show { opacity: 1; transform: translateY(0); }

/* Light theme overrides for the contact band stay dark — design intent */

/* Responsive for new sections */
@media (max-width: 992px) {
  .awards-slider {
    grid-template-columns: 1fr;
    padding: 40px 32px;
    gap: 36px;
  }
  .awards-visual { height: 280px; }
  .awards-year { font-size: 3rem; }
  .awards-title { font-size: 1.5rem; min-height: auto; }
  .awards-by { min-height: auto; }

  .life-card { flex: 0 0 calc(50% - 11px); }
  .life-card img { height: 180px; }

  .contact-band { grid-template-columns: 1fr; }
  .contact-band-img { padding: 50px 36px; min-height: 280px; }
  .contact-band-form { padding: 40px 32px; }
}
@media (max-width: 600px) {
  .awards-slider { padding: 32px 22px; }
  .awards-visual { height: 220px; }
  .awards-year { font-size: 2.4rem; }
  .awards-title { font-size: 1.25rem; }
  .awards-controls { gap: 14px; }
  .awards-arrow { width: 42px; height: 42px; }

  .life-card { flex: 0 0 100%; }

  .contact-band-form { padding: 32px 22px; }
  .contact-band-img { padding: 40px 24px; }
  .form-submit-btn { padding: 12px 22px 12px 26px; font-size: .82rem; }
}
