/* ==========================================================================
   DEV ENTERPRISES BUILDERS & DEVELOPERS — STYLESHEET
   Design system: deep navy + warm gold + white + light grey
   ========================================================================== */

:root {
  --navy: #0b2545;
  --navy-dark: #071a33;
  --navy-tint: #12305c;
  --charcoal: #1f2937;
  --gold: #c9a24b;
  --gold-dark: #a9822f;
  --gold-light: #e6cf98;
  --white: #ffffff;
  --grey-bg: #f5f6f8;
  --grey-border: #e4e7ec;
  --text: #22303f;
  --text-muted: #5b6472;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 10px rgba(11,37,69,0.06);
  --shadow-md: 0 10px 30px rgba(11,37,69,0.10);
  --shadow-lg: 0 20px 50px rgba(11,37,69,0.16);
  --header-h: 76px;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); margin: 0 0 .5em; line-height: 1.25; }
p { margin: 0 0 1em; color: var(--text-muted); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
section.section { padding: 88px 0; scroll-margin-top: var(--header-h); }
.section-alt { background: var(--grey-bg); }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  display: inline-block;
}
section h2 { font-size: clamp(26px, 3.2vw, 38px); font-weight: 700; position: relative; padding-bottom: 16px; }
section h2::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 56px; height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
section h2.center::after { left: 50%; transform: translateX(-50%); }
.section-sub { color: var(--text-muted); max-width: 640px; margin-bottom: 36px; }
.mini-heading { font-size: 16px; color: var(--navy); margin-top: 22px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .03em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--navy); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--navy-dark); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold); color: var(--navy-dark); box-shadow: var(--shadow-sm); }
.btn-gold:hover { background: var(--gold-dark); color: var(--white); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1ea952; }
.btn-block { width: 100%; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.link-arrow { color: var(--gold-dark); font-weight: 700; font-size: 14px; }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--grey-border);
  height: var(--header-h);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img {
  height: 46px; width: auto; flex-shrink: 0; object-fit: contain;
}
.footer-logo .logo-img { height: 42px; }
.logo-text { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 15px; line-height: 1.15; display: flex; flex-direction: column; }
.logo-text small { font-family: var(--font-body); font-weight: 500; color: var(--text-muted); font-size: 10px; letter-spacing: .08em; }

.main-nav ul { display: flex; gap: 26px; }
.nav-link { font-size: 14px; font-weight: 600; color: var(--charcoal); position: relative; padding: 6px 0; }
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--gold); transition: width .2s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--navy); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--grey-bg); color: var(--navy);
  transition: background .2s ease, color .2s ease;
}
.icon-btn:hover { background: var(--navy); color: var(--white); }
.enquire-now-btn { padding: 12px 22px; font-size: 13px; }

.hamburger {
  display: none; width: 42px; height: 42px; border-radius: 10px; border: none;
  background: var(--grey-bg); flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer;
}
.hamburger span { width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.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); }

/* ============ HERO ============ */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; color: var(--white); overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: contain; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(7,26,51,.94) 15%, rgba(11,37,69,.82) 50%, rgba(11,37,69,.55) 100%);
}
.hero-overlay::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(600px 400px at 15% 30%, rgba(201,162,75,.16), transparent 70%);
}
.hero-content { position: relative; z-index: 2; max-width: 680px; padding-top: 60px; padding-bottom: 60px; }
.scroll-cue {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.65); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  z-index: 2; animation: scrollCueBounce 2.2s ease-in-out infinite;
}
.scroll-cue svg { opacity: .8; }
@keyframes scrollCueBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
@media (max-width: 900px) { .scroll-cue { display: none; } }
.badge-trust {
  display: inline-block; background: rgba(255,255,255,.12); border: 1px solid rgba(230,207,152,.5);
  color: var(--gold-light); padding: 8px 18px; border-radius: 999px; font-size: 13px; font-weight: 600; margin-bottom: 22px;
}
.hero h1 { color: var(--white); font-size: clamp(32px, 5vw, 54px); font-weight: 800; margin-bottom: 18px; }
.hero-sub { color: rgba(255,255,255,.88); font-size: clamp(16px, 2vw, 19px); margin-bottom: 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-cta .btn-outline { border-color: rgba(255,255,255,.7); color: var(--white); }
.hero-cta .btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

/* ============ PROJECTS SUMMARY ============ */
.projects-summary h2 { margin-bottom: 34px; }
.summary-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.summary-card { position: relative; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .25s ease, transform .25s ease; }
.summary-card::before, .completed-card::before, .why-card::before, .place-highlight-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease; z-index: 2;
}
.summary-card:hover::before, .completed-card:hover::before, .why-card:hover::before, .place-highlight-card:hover::before { transform: scaleX(1); }
.summary-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.summary-card-img { position: relative; height: 260px; overflow: hidden; }
.summary-card-img img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s ease; }
.summary-card:hover .summary-card-img img { transform: scale(1.06); }
.tag { position: absolute; top: 16px; left: 16px; padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .03em; }
.tag-ongoing { background: var(--gold); color: var(--navy-dark); }
.tag-completed { background: var(--navy); color: var(--white); }
.tag-cidco {
  left: auto; right: 16px; background: var(--white); color: #1a8f4c; border: 1px solid rgba(26,143,76,.35);
  display: inline-flex; align-items: center; gap: 4px; box-shadow: var(--shadow-sm);
}
.tag-cidco::before { content: "\2713"; font-weight: 800; }
.summary-card-body { padding: 24px; }
.summary-card-body h3 { margin-bottom: 6px; }
.loc { display: flex; align-items: center; gap: 6px; color: var(--text-muted); font-size: 14px; margin-bottom: 14px; }
.loc svg { color: var(--gold-dark); flex-shrink: 0; }

/* ============ ABOUT ============ */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.about-img img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.approach-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin: 14px 0 6px; }
.approach-list li { display: flex; align-items: center; gap: 8px; color: var(--text); font-weight: 600; font-size: 14.5px; }
.approach-list li::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0;
}
.vision-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
.vm-card { background: var(--navy); color: var(--white); padding: 24px; border-radius: var(--radius); }
.vm-card h4 { color: var(--gold-light); margin-bottom: 10px; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; }
.vm-card p { color: rgba(255,255,255,.9); font-style: italic; margin: 0; font-size: 14.5px; }

/* ============ ONGOING PROJECT ============ */
.ongoing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 28px; }
.ongoing-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); align-self: stretch; }
.ongoing-media img { width: 100%; height: 100%; object-fit: contain; display: block; min-height: 420px; }
.ongoing-media .tag-cidco { position: absolute; top: 18px; left: 18px; z-index: 2; }
.project-desc { font-size: 16px; }
.highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 32px 0; }
.ongoing-details .highlights-grid { grid-template-columns: repeat(2, 1fr); }
.highlight-card {
  display: flex; align-items: center; gap: 14px; background: var(--white); border: 1px solid var(--grey-border);
  border-radius: var(--radius-sm); padding: 18px 20px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.highlight-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.highlight-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(201,162,75,.14); color: var(--gold-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.highlight-card span { font-weight: 700; color: var(--navy); font-size: 14.5px; }
.project-info-table { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--grey-border); border-radius: var(--radius-sm); overflow: hidden; margin-top: 10px; }
.ongoing-details .project-info-table { grid-template-columns: repeat(2, 1fr); }
.project-info-table > div { background: var(--white); padding: 18px 20px; }
.project-info-table span { display: block; font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.project-info-table strong { color: var(--navy); font-size: 15px; }
.disclaimer-note { font-size: 13px; color: var(--text-muted); font-style: italic; margin-top: 14px; }

/* ============ COMPLETED PROJECTS ============ */
.completed-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.completed-card { position: relative; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.completed-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.completed-card-img { height: 230px; overflow: hidden; }
.completed-card-img img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s ease; }
.completed-card:hover .completed-card-img img { transform: scale(1.06); }
.completed-card-body { padding: 22px; }
.completed-card-body .loc { margin-bottom: 12px; }
.completed-card-body p.desc { font-size: 14px; margin-bottom: 16px; }

/* ============ AMENITIES ============ */
.amenities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.amenity-card { background: var(--white); border-radius: var(--radius-sm); padding: 26px 20px; text-align: center; box-shadow: var(--shadow-sm); }
.amenity-card svg { color: var(--gold-dark); margin-bottom: 10px; }
.amenity-card span { display: block; font-weight: 700; color: var(--navy); font-size: 14px; }
.amenities-empty { text-align: center; padding: 50px 20px; background: var(--white); border-radius: var(--radius); border: 1px dashed var(--grey-border); grid-column: 1 / -1; }
.amenities-empty p { font-size: 16px; font-weight: 600; color: var(--text-muted); margin: 0; }

/* ============ LOCATION ============ */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.connectivity-list { margin: 12px 0 24px; }
.connectivity-list li { position: relative; padding-left: 20px; margin-bottom: 8px; color: var(--text-muted); font-size: 14.5px; }
.connectivity-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.location-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.location-map iframe { display: block; }

/* ============ HIGHLIGHTS OF DRONAGIRI ============ */
.place-highlights-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.place-highlight-card {
  position: relative; background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
}
.place-highlight-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.place-highlight-photo { position: relative; height: 150px; overflow: hidden; }
.place-highlight-photo img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s ease; }
.place-highlight-card:hover .place-highlight-photo img { transform: scale(1.08); }
.place-highlight-icon {
  position: absolute; left: 16px; bottom: -22px; width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-tint)); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(11,37,69,.3);
  border: 3px solid var(--white);
}
.place-highlight-body { padding: 34px 18px 20px; }
.place-highlight-body h4 { font-size: 15.5px; margin-bottom: 6px; }
.place-highlight-body p { font-size: 13px; margin-bottom: 0; }
.place-highlight-distance { display: inline-block; margin-top: 10px; font-size: 12px; font-weight: 700; color: var(--gold-dark); }

/* ============ BOOKING CONTACTS ============ */
.booking-contacts { display: flex; flex-direction: column; gap: 12px; margin: 14px 0 6px; }
.booking-contact-item {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  background: var(--white); border: 1px solid var(--grey-border); border-radius: var(--radius-sm); padding: 14px 16px;
}
.booking-contact-who { display: flex; align-items: center; gap: 12px; }
.booking-contact-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-tint));
  color: var(--gold-light); display: flex; align-items: center; justify-content: center; font-weight: 700;
  font-family: var(--font-head); font-size: 15px; flex-shrink: 0;
}
.booking-contact-name { font-weight: 700; color: var(--navy); font-size: 14.5px; }
.booking-contact-role { font-size: 12px; color: var(--text-muted); }
.booking-contact-number { font-size: 13px; color: var(--text-muted); }
.booking-contact-actions { display: flex; gap: 8px; }
.booking-contact-actions a {
  width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--grey-bg); color: var(--navy); transition: background .2s ease, color .2s ease;
}
.booking-contact-actions a:hover { background: var(--navy); color: var(--white); }
.booking-contact-actions .wa-action:hover { background: #25D366; color: var(--white); }

/* Footer variant of booking contacts */
.footer-col ul#footerBookingContacts li { display: flex; justify-content: space-between; gap: 10px; }
.footer-col ul#footerBookingContacts .fb-name { color: rgba(255,255,255,.9); font-weight: 600; }
.footer-col ul#footerBookingContacts .fb-number a { color: rgba(255,255,255,.65); }
.footer-col ul#footerBookingContacts .fb-number a:hover { color: var(--gold-light); }

/* Modal booking note */
.modal-booking-note { font-size: 12.5px; color: var(--text-muted); text-align: center; margin: 16px 0 0; padding-top: 14px; border-top: 1px dashed var(--grey-border); }
.modal-booking-note strong { color: var(--navy); }

/* ============ WHY CHOOSE US ============ */
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.why-card { position: relative; overflow: hidden; background: var(--white); border-radius: var(--radius); padding: 30px 22px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.why-icon { width: 58px; height: 58px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-tint)); color: var(--gold-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.why-card h3 { font-size: 17px; margin-bottom: 8px; }
.why-card p { font-size: 13.5px; margin: 0; }

/* ============ TESTIMONIALS ============ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--grey-bg); border-radius: var(--radius); padding: 28px; position: relative; border: 1px solid var(--grey-border); }
.testimonial-quote-icon { color: var(--gold); opacity: .5; margin-bottom: 10px; }
.testimonial-card p.quote { color: var(--text); font-style: italic; font-size: 15px; margin-bottom: 16px; }
.testimonial-name { font-weight: 700; color: var(--navy); font-size: 14px; }
.testimonial-project { font-size: 12.5px; color: var(--text-muted); }

/* ============ DOWNLOADS / BROCHURE STRIP ============ */
.brochure-strip { background: linear-gradient(120deg, var(--navy), var(--navy-tint)); padding: 60px 0; }
.downloads-eyebrow { color: var(--gold-light) !important; margin-bottom: 14px; }
.brochure-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.brochure-strip-inner h2 { color: var(--white); margin-bottom: 6px; font-size: 26px; }
.brochure-strip-inner p { color: rgba(255,255,255,.82); margin: 0; }
.downloads-file-info { display: flex; align-items: center; gap: 16px; flex: 1 1 340px; }
.downloads-file-icon {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(201,162,75,.16); color: var(--gold-light);
}

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; }
.contact-list { margin: 18px 0 26px; }
.contact-list li { margin-bottom: 12px; font-size: 15px; color: var(--text); }
.contact-list strong { color: var(--navy); margin-right: 6px; }
.contact-list a, #footerEmail a { color: inherit; text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.contact-list a:hover, #footerEmail a:hover { color: var(--gold-dark); }
#footerEmail a { color: rgba(255,255,255,.75); }
#footerEmail a:hover { color: var(--gold-light); }
.contact-form { background: var(--white); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-md); }
.contact-form h3 { margin-bottom: 18px; }

/* ============ FORMS (shared) ============ */
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-row label em { font-weight: 500; color: var(--text-muted); font-style: normal; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 13px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--grey-border);
  font-family: var(--font-body); font-size: 15px; color: var(--text); background: var(--white); transition: border-color .2s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--gold); }
.form-row input.invalid, .form-row select.invalid, .form-row textarea.invalid { border-color: #d64545; }
.field-error { display: block; min-height: 16px; font-size: 12px; color: #d64545; margin-top: 4px; }
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row-checkbox { display: flex; flex-direction: column; }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--text-muted); font-weight: 500; cursor: pointer; }
.checkbox-label input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--gold-dark); }
.form-success { color: #1a8f4c; font-weight: 700; text-align: center; margin-top: 14px; }

/* ============ FOOTER ============ */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.78); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo { margin-bottom: 14px; }
.footer-logo .logo-text { color: var(--white); }
.footer-logo .logo-text small { color: rgba(255,255,255,.6); }
.footer-col h4 { color: var(--gold-light); font-size: 14px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; font-size: 14px; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { padding: 22px 0; text-align: center; font-size: 13px; color: rgba(255,255,255,.55); }

/* ============ MOBILE ACTION BAR ============ */
.mobile-action-bar { display: none; }

/* ============ ENTRY GATE (mandatory enquiry before site access) ============ */
.entry-gate {
  position: fixed; inset: 0; z-index: 1200;
  background:
    linear-gradient(160deg, rgba(7,26,51,.94), rgba(11,37,69,.9)),
    url('../assets/images/dev-sai-miracle-dronagiri.jpg') center/cover no-repeat;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  overflow-y: auto;
}
.entry-gate[hidden] { display: none; }
.entry-gate-card {
  background: var(--white); border-radius: var(--radius); padding: 34px 30px 26px; max-width: 460px; width: 100%;
  max-height: 92vh; overflow-y: auto; box-shadow: var(--shadow-lg);
  animation: entryGateIn .5s ease;
}
@keyframes entryGateIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.entry-gate-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.entry-gate-logo img { height: 42px; width: auto; object-fit: contain; flex-shrink: 0; }
.entry-gate-logo span { font-family: var(--font-head); font-weight: 700; font-size: 12.5px; letter-spacing: .04em; color: var(--navy); line-height: 1.3; }
.entry-gate-card h3 { font-size: 20px; margin-bottom: 6px; color: var(--navy); line-height: 1.3; }
.entry-gate-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 16px; line-height: 1.5; }

/* ============ MODALS ============ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(7,26,51,.6); z-index: 1000;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; transition: opacity .25s ease;
}
.modal-overlay.visible { opacity: 1; }
.modal-overlay[hidden] { display: none; }
.modal {
  background: var(--white); border-radius: var(--radius); padding: 34px; max-width: 460px; width: 100%;
  max-height: 90vh; overflow-y: auto; position: relative; box-shadow: var(--shadow-lg);
  transform: translateY(16px) scale(.98); opacity: 0; transition: transform .25s ease, opacity .25s ease;
}
.modal-overlay.visible .modal { transform: translateY(0) scale(1); opacity: 1; }
.modal-close {
  position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%; border: none;
  background: var(--grey-bg); font-size: 20px; line-height: 1; cursor: pointer; color: var(--text-muted);
}
.modal-close:hover { background: var(--navy); color: var(--white); }
.modal h3 { font-size: 21px; margin-bottom: 6px; }
.modal-sub { font-size: 14px; margin-bottom: 22px; }
.success-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(26,143,76,.12); color: #1a8f4c; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.modal-step[data-step="success"] { text-align: center; }
.modal-success-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }

/* ============ FADE-IN ANIMATION ============ */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.in-view { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .about-grid, .contact-grid, .location-grid, .ongoing-grid { grid-template-columns: 1fr; }
  .ongoing-media { order: -1; }
  .ongoing-media img { min-height: 320px; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .project-info-table { grid-template-columns: repeat(2, 1fr); }
  .place-highlights-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .main-nav { position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; background: var(--white);
    transform: translateX(100%); transition: transform .3s ease; overflow-y: auto; padding: 20px 0; }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav ul li { border-bottom: 1px solid var(--grey-border); }
  .main-nav .nav-link { display: block; padding: 16px 24px; font-size: 16px; }
  .hamburger { display: flex; }
  .enquire-now-btn { display: none; }
  .header-actions .icon-btn { display: none; }
  section.section { padding: 60px 0; }
  .summary-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .mobile-action-bar {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 400;
    background: var(--white); box-shadow: 0 -6px 24px rgba(11,37,69,.14);
    padding: 8px 6px calc(8px + env(safe-area-inset-bottom));
  }
  .mab-btn {
    flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 8px 4px;
    border: none; background: none; color: var(--navy); font-size: 11px; font-weight: 700; cursor: pointer;
  }
  .mab-btn svg { color: var(--gold-dark); }
  .mab-enquire { background: var(--navy); color: var(--white); border-radius: 12px; margin: 0 4px; }
  .mab-enquire svg { color: var(--gold-light); }
  body { padding-bottom: 74px; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .hero { min-height: 82vh; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn { width: 100%; }
  .highlights-grid, .ongoing-details .highlights-grid { grid-template-columns: 1fr; }
  .project-info-table, .ongoing-details .project-info-table { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .place-highlights-grid { grid-template-columns: 1fr; }
  .booking-contact-item { flex-direction: column; align-items: flex-start; }
  .form-row-split { grid-template-columns: 1fr; }
  .brochure-strip-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .approach-list { grid-template-columns: 1fr; }
  .modal { padding: 26px; }
}
