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

:root {
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --gold-dark: #a07830;
  --navy: #0d1b2a;
  --navy-mid: #1a2e45;
  --navy-light: #243b55;
  --cream: #fdf8ee;
  --cream-mid: #f5edd8;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-mid: #3d3d5c;
  --text-light: #7a7a99;
  --green: #2d7a4f;
  --gradient-gold: linear-gradient(135deg, #f0d080 0%, #c9a84c 50%, #a07830 100%);
  --gradient-navy: linear-gradient(135deg, #0d1b2a 0%, #1a2e45 50%, #243b55 100%);
  --gradient-hero: linear-gradient(160deg, #1a0a00 0%, #3d1a00 30%, #1a2e45 70%, #0d1b2a 100%);
  --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.35);
  --shadow-card: 0 10px 40px rgba(0,0,0,0.12);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  width: 100%;
  line-height: 1.6;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
  padding: 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 40px;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon svg { width: 48px; height: 48px; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-tamil {
  font-family: 'Noto Sans Tamil', sans-serif;
  font-size: 15px;
  color: #f0d4a0;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo-tamil-sub {
  font-family: 'Noto Sans Tamil', sans-serif;
  font-size: 11px;
  color: rgba(240,212,160,0.75);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.nav-links a:hover {
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}

.nav-cta {
  background: var(--gradient-gold);
  color: var(--navy);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 40px 60px;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(36, 59, 85, 0.6) 0%, transparent 60%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% { opacity: 0; transform: translateY(100px) scale(0); }
  20% { opacity: 0.6; }
  80% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-200px) scale(1.5); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  width: 100%;
}

.hero-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 12px 24px;
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.6s ease both;
}

.badge.dtcp { animation-delay: 0.2s; }
.badge.rera { animation-delay: 0.4s; }

.badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.badge-title {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 4px;
}

.badge-sub {
  font-size: 10px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2px;
}

.badge-num {
  font-size: 9px;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

.hero-brand {
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-tamil-name {
  font-family: 'Noto Sans Tamil', sans-serif;
  font-size: 18px;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 16px;
  opacity: 0.9;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 20px;
}

.title-line1 {
  display: block;
  font-size: clamp(56px, 10vw, 100px);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 8px;
  text-shadow: none;
  filter: drop-shadow(0 4px 20px rgba(201,168,76,0.4));
}

.title-line2 {
  display: block;
  font-size: clamp(40px, 7vw, 72px);
  color: var(--white);
  letter-spacing: 16px;
  margin-top: -6px;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 20px 0;
}

.divider-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.divider-crown {
  font-size: 22px;
  color: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.8; }
}

.hero-tagline {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  letter-spacing: 1px;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px;
  padding: 12px 24px;
  margin-bottom: 36px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease 0.5s both;
}

.location-pin { font-size: 20px; }

.hero-location strong {
  color: var(--white);
  font-size: 15px;
  display: block;
}

.hero-location small {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-gold);
  color: var(--navy);
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.55);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  padding: 20px 40px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease 0.8s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 36px;
}

.stat-num {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,168,76,0.3);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 1px;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
  opacity: 0.6;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(5px); }
}

/* ===== APPROVAL STRIP ===== */
.approval-strip {
  background: var(--gradient-gold);
  padding: 20px 40px;
}

.strip-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 40px;
}

.strip-item strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.strip-item small {
  color: rgba(13,27,42,0.7);
  font-size: 11px;
}

.strip-icon { font-size: 22px; }

.strip-sep {
  width: 1px;
  height: 40px;
  background: rgba(13,27,42,0.2);
}

/* ===== SECTION COMMONS ===== */
.section-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-tag.light-tag {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  color: var(--gold-light);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title.light-title { color: var(--white); }

.gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-subtitle.light-sub { color: rgba(255,255,255,0.65); }

/* ===== ABOUT SECTION ===== */
.about {
  padding: 100px 0;
  background: var(--cream);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.gate-illustration {
  background: linear-gradient(160deg, #ffe8a0 0%, #ffd060 50%, #f0c040 100%);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  position: relative;
}

.gate-arch {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gate-top-bar {
  background: linear-gradient(90deg, #3d2b0a, #7a5c2e, #3d2b0a);
  padding: 12px 40px;
  border-radius: 4px;
  margin-bottom: 0;
  width: 90%;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.gate-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 3px;
}

.gate-pillars {
  display: flex;
  align-items: stretch;
  width: 90%;
  height: 180px;
}

.gate-pillar {
  width: 28px;
  background: linear-gradient(180deg, #f5f0e0 0%, #e0d8c0 100%);
  border: 1px solid #c8b880;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-pattern {
  width: 20px;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 4px,
    rgba(160,120,48,0.15) 4px,
    rgba(160,120,48,0.15) 8px
  );
}

.gate-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 10px;
  background: linear-gradient(180deg, rgba(255,220,100,0.2) 0%, rgba(200,160,60,0.05) 100%);
}

.gate-road {
  width: 60px;
  height: 80px;
  background: #555;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.road-line {
  width: 4px;
  height: 20px;
  background: #fff;
  opacity: 0.8;
}

.gate-house {
  font-size: 40px;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.gate-green-strip {
  display: flex;
  justify-content: space-around;
  background: #2d7a4f;
  padding: 10px;
  border-radius: 0 0 12px 12px;
  margin: 0 0 0 5%;
  width: 90%;
}

.tree-emoji { font-size: 18px; }

.about-floating-card {
  position: absolute;
  background: var(--white);
  border-radius: 10px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  animation: floatCard 3s ease-in-out infinite;
}

.about-floating-card.card1 {
  bottom: 30px;
  left: -20px;
  animation-delay: 0s;
}

.about-floating-card.card2 {
  top: 40px;
  right: -20px;
  animation-delay: 1.5s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.about-content {}

.about-text p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text strong { color: var(--text-dark); font-weight: 700; }

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--cream-mid);
  border-radius: 12px;
  padding: 16px;
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}

.highlight-item:hover {
  background: white;
  transform: translateX(4px);
  box-shadow: var(--shadow-card);
}

.highlight-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.highlight-item strong {
  display: block;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 700;
}

.highlight-item p {
  font-size: 12px;
  color: var(--text-light);
  margin: 2px 0 0;
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.features-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-navy);
}

.features-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-gold);
  opacity: 0;
  transition: var(--transition);
  border-radius: 16px;
}

.feature-card:hover::before { opacity: 0.05; }

.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(201,168,76,0.2);
}

.feat-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.feat-icon {
  font-size: 40px;
  width: 70px;
  height: 70px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,168,76,0.2);
  transition: var(--transition);
}

.feature-card:hover .feat-icon {
  background: rgba(201,168,76,0.2);
  transform: scale(1.1);
}

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 700;
}

.feature-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ===== LAYOUT SECTION ===== */
.layout-section {
  padding: 100px 0;
  background: var(--cream);
  overflow: hidden;
}

.blocks-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.block-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border-top: 4px solid transparent;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.block-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.block-a { border-top-color: #22c55e; }
.block-b { border-top-color: #3b82f6; }
.block-c { border-top-color: #ec4899; }

.block-color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

.block-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 700;
}

.block-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Table */
.table-wrapper {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  margin-bottom: 40px;
}

.table-header-bar {
  background: var(--gradient-navy);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.table-header-bar h3 {
  color: var(--gold);
  font-size: 18px;
  font-family: 'Playfair Display', serif;
}

.table-header-bar span {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
}

.table-scroll { overflow-x: auto; }

.plot-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.plot-table th {
  background: rgba(201,168,76,0.08);
  color: var(--navy);
  font-weight: 700;
  padding: 12px 16px;
  text-align: center;
  border-bottom: 2px solid var(--gold);
  font-size: 12px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.plot-table td {
  padding: 10px 16px;
  text-align: center;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}

.plot-table tr:hover td {
  background: rgba(201,168,76,0.05);
  color: var(--navy);
}

.plot-table tr:nth-child(even) td {
  background: rgba(0,0,0,0.02);
}

.road-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.road-badge {
  background: var(--navy);
  color: var(--gold);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--gold-dark);
}

/* Layout Map Plan Image Wrapper */
.layout-map-wrapper {
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
}

.layout-map-card {
  width: 100%;
  max-width: 900px;
  background: var(--white);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.layout-map-header {
  margin-bottom: 24px;
}

.layout-map-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 6px;
  font-weight: 700;
}

.layout-map-header p {
  font-size: 13px;
  color: var(--text-light);
}

.layout-map-inner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(201, 168, 76, 0.2);
  cursor: pointer;
  width: 100%;
  aspect-ratio: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.layout-map-inner:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.layout-map-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: filter 0.4s ease;
}

.layout-map-inner:hover .layout-map-image {
  filter: brightness(0.85) contrast(1.05);
}

.layout-map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 27, 42, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(2px);
}

.layout-map-inner:hover .layout-map-overlay {
  opacity: 1;
}

.zoom-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.4);
  margin-bottom: 12px;
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.layout-map-inner:hover .zoom-icon-circle {
  transform: scale(1);
}

.zoom-text {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 27, 42, 0.95);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(8px);
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 40px;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  z-index: 100000;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--gold);
  transform: scale(1.1);
}

.lightbox-content-container {
  max-width: 90%;
  max-height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lightbox-modal.active .lightbox-img {
  transform: scale(1);
}

/* ===== OFFER SECTION ===== */
.offer-section {
  padding: 100px 0;
  background: linear-gradient(160deg, #1a0a00 0%, #3d1f00 40%, #1a1000 100%);
  position: relative;
  overflow: hidden;
}

.offer-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.offer-card {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 2px solid var(--gold);
  border-radius: 24px;
  padding: 60px 50px;
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 60px rgba(201,168,76,0.15);
  position: relative;
}

.offer-badge-label {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 20px;
  border-radius: 50px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.offer-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 8px;
}

.offer-days {
  color: var(--gold);
  font-size: clamp(36px, 5vw, 56px);
  display: block;
}

.offer-sub {
  font-family: 'Noto Sans Tamil', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 48px;
}

.offer-center {
  margin: 40px 0;
}

.offer-gift {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 30px 40px;
  border: 1px solid rgba(201,168,76,0.3);
}

/* AC Image Styles */
.ac-image-wrap {
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.ac-ribbon {
  background: linear-gradient(90deg, #e53e3e, #c0392b);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: 4px 4px 0 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.ac-product-img {
  width: 260px;
  max-width: 100%;
  height: auto;
  border-radius: 0 0 12px 12px;
  background: rgba(255,255,255,0.95);
  padding: 12px 16px 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(201,168,76,0.2);
  display: block;
}

.ac-brand-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 0 0 10px 10px;
  padding: 8px 20px;
  width: 100%;
  text-align: center;
}

.ac-brand-name {
  font-size: 13px;
  font-weight: 700;
  color: #5bc8f5;
  letter-spacing: 1px;
}

.ac-spec {
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 1.5px;
  font-weight: 600;
}

.offer-gift-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.get-text {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 3px;
}

.ac-text {
  font-family: 'Cinzel', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.ac-text strong {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(40px, 6vw, 64px);
}

.free-text {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  color: var(--gold);
  font-weight: 700;
  font-style: italic;
  margin-bottom: 16px;
}

.ac-offer-note {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.ac-offer-note strong {
  color: var(--gold);
}


.offer-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.offer-feat {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-offer {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient-gold);
  color: var(--navy);
  text-decoration: none;
  padding: 18px 50px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 800;
  transition: var(--transition);
  box-shadow: 0 8px 40px rgba(201,168,76,0.5);
  letter-spacing: 0.5px;
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { box-shadow: 0 8px 40px rgba(201,168,76,0.5); }
  50% { box-shadow: 0 8px 60px rgba(201,168,76,0.8); }
}

.btn-offer:hover {
  transform: translateY(-4px) scale(1.02);
}

/* ===== LOCATION SECTION ===== */
.location-section {
  padding: 100px 0;
  background: var(--cream-mid);
  overflow: hidden;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.map-placeholder {
  background: linear-gradient(135deg, #e8f4e8 0%, #d0e8d0 100%);
  border-radius: 20px;
  padding: 50px 30px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 2px dashed rgba(45,122,79,0.3);
}

.map-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.map-pin-big {
  font-size: 60px;
  animation: bounce 2s infinite;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.map-label {
  text-align: center;
  background: var(--white);
  border-radius: 12px;
  padding: 16px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.map-label strong {
  display: block;
  font-size: 16px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 4px;
}

.map-label span {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
}

.map-roads {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.map-road-h {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(100,100,100,0.2);
  transform: translateY(-50%);
}

.map-road-v {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(100,100,100,0.2);
  transform: translateX(-50%);
}

.map-link {
  display: block;
  text-align: center;
  background: var(--navy);
  color: var(--gold);
  text-decoration: none;
  padding: 14px;
  border-radius: 0 0 18px 18px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  margin: -2px -2px -2px;
}

.map-link:hover { background: var(--navy-mid); }

.location-map-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.location-item:last-child { border-bottom: none; }

.loc-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,168,76,0.2);
}

.location-item strong {
  display: block;
  font-size: 15px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 4px;
}

.location-item p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

.approval-details-box {
  background: var(--navy);
  border-radius: 14px;
  padding: 20px 24px;
  margin-top: 20px;
  border: 1px solid var(--gold-dark);
}

.approval-details-box h4 {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.approval-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.approval-row:last-child { border-bottom: none; }

.apr-label {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
}

.apr-value {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  position: relative;
}

.contact-info-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.contact-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.contact-logo {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-logo svg {
  width: 72px;
  height: 72px;
}

.contact-tamil {
  font-family: 'Noto Sans Tamil', sans-serif;
  font-size: 18px;
  color: var(--gold-light);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
}

.contact-tamil.contact-tamil-sub {
  font-size: 13px;
  color: rgba(240,208,120,0.7);
  font-weight: 400;
  margin-bottom: 6px;
}

.contact-brand h3 {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  color: var(--white);
  font-weight: 700;
}

.contact-project {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
}

.contact-items { display: flex; flex-direction: column; gap: 20px; }

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

.contact-icon {
  font-size: 20px;
  width: 42px;
  height: 42px;
  background: rgba(201,168,76,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.15);
}

.contact-item strong {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-item a {
  color: var(--gold-light);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition);
  display: block;
}

.contact-item a:hover { color: var(--gold); }

.contact-item span {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  line-height: 1.6;
}

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.contact-form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 28px;
  font-weight: 700;
}

.enquiry-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #e0d8c0;
  border-radius: 10px;
  font-size: 14px;
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  background: #fdfaf3;
  transition: var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gradient-navy);
  color: var(--gold);
  border: none;
  padding: 14px 30px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  background: var(--navy-light);
}

.form-success {
  text-align: center;
  padding: 40px;
}

.success-icon { font-size: 48px; margin-bottom: 16px; }

.form-success h4 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

.form-success p { color: var(--text-mid); }

/* CTA STRIP */
.cta-strip {
  margin-top: 60px;
  background: var(--gradient-gold);
  border-radius: 20px;
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
}

.cta-strip-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 6px;
}

.cta-strip-text p {
  font-size: 14px;
  color: rgba(13,27,42,0.7);
}

.cta-strip-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-cta-strip {
  background: var(--navy);
  color: var(--gold);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition);
}

.btn-cta-strip:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-cta-strip.secondary {
  background: rgba(13,27,42,0.6);
  color: var(--gold-light);
}

/* ===== FOOTER ===== */
.footer {
  background: #050d15;
  padding: 70px 0 0;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.footer-logo-svg {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer-logo-tamil {
  font-family: 'Noto Sans Tamil', sans-serif;
  font-size: 20px;
  color: var(--gold);
  font-weight: 700;
}

.footer-logo-tamil-sub {
  font-family: 'Noto Sans Tamil', sans-serif;
  font-size: 13px;
  color: rgba(201,168,76,0.65);
  font-weight: 400;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}

.footer-links-col h4,
.footer-contact-col h4,
.footer-approvals-col h4 {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-links-col ul { list-style: none; }
.footer-links-col ul li { margin-bottom: 10px; }
.footer-links-col ul a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer-links-col ul a:hover { color: var(--gold); }

.footer-contact-col p {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-contact-col a {
  color: var(--gold-light);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact-col a:hover { color: var(--gold); }

.footer-apr {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-apr-badge {
  background: var(--gradient-gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 6px;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.footer-apr strong {
  display: block;
  color: var(--white);
  font-size: 13px;
  margin-bottom: 2px;
}

.footer-apr p {
  color: rgba(255,255,255,0.4);
  font-size: 11px;
}

.footer-bottom {
  margin-top: 60px;
  padding: 20px 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 12px;
}

/* ===== FLOATING CALL BUTTON ===== */
.floating-call {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: var(--gradient-gold);
  color: var(--navy);
  text-decoration: none;
  border-radius: 50px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
  transition: var(--transition);
  animation: floatCall 3s ease-in-out infinite;
}

@keyframes floatCall {
  0%, 100% { transform: translateY(0); box-shadow: 0 8px 30px rgba(201,168,76,0.5); }
  50% { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(201,168,76,0.7); }
}

.floating-call:hover {
  padding: 14px 32px;
}

.floating-call-icon { font-size: 18px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.animate-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .about-grid,
  .location-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .blocks-overview { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(13,27,42,0.98);
    padding: 20px;
    gap: 4px;
    border-top: 1px solid rgba(201,168,76,0.2);
    backdrop-filter: blur(20px);
  }
  .hamburger { display: flex; }
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }
  .stat-divider { width: 60px; height: 1px; }
  .stat-item { padding: 0; }
  .cta-strip {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
  .footer-container { grid-template-columns: 1fr; gap: 30px; }
  .nav-container { padding: 16px 20px; }
  .section-container { padding: 0 20px; }
  .about-grid { gap: 40px; }
}

@media (max-width: 640px) {
  .hero { padding: 100px 20px 60px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .offer-card { padding: 40px 24px; }
  .offer-gift { flex-direction: column; gap: 16px; text-align: center; }
  .offer-gift-text { align-items: center; }
  .contact-info-card, .contact-form-card { padding: 28px 20px; }
  .nav-cta { display: none; }
  .strip-container { flex-direction: column; align-items: flex-start; padding: 0 20px; }
  .strip-sep { display: none; }
  .strip-item { padding: 10px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .floating-call-text { display: none; }
  .floating-call { padding: 16px; border-radius: 50%; width: 56px; height: 56px; justify-content: center; }
  .hero-badges { flex-direction: column; align-items: center; }

  /* Mobile Responsive Table and Header */
  .plot-table th, .plot-table td {
    padding: 8px 10px;
    font-size: 11px;
  }
  .table-header-bar {
    padding: 16px 20px;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }

  /* Hamburger touch target optimization */
  .hamburger {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Mobile menu tap target sizes */
  .nav-links.open a {
    padding: 14px 20px;
    display: block;
    width: 100%;
  }

  /* Footer links touch targets */
  .footer-bottom-links {
    gap: 16px;
    margin: 16px 0;
  }
  .footer-bottom-links a {
    padding: 8px 12px;
    display: inline-block;
  }
}

/* Footer bottom new links styles */
.footer-bottom-links {
  margin: 12px 0 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

.footer-link-divider {
  color: rgba(255, 255, 255, 0.15);
  font-size: 12px;
}

.footer-powered {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-powered a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
  position: relative;
}

.footer-powered a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1.5px;
  bottom: -2px;
  left: 0;
  background-color: var(--gold);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.footer-powered a:hover {
  color: var(--gold);
}

.footer-powered a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* ============================================================
   SUBPAGES — PRIVACY POLICY & TERMS OF CONDITIONS
   ============================================================ */
.subpage-body {
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.subpage-header {
  background: var(--gradient-navy);
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.subpage-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, rgba(201,168,76,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.subpage-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.subpage-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.subpage-content {
  flex: 1;
  max-width: 900px;
  margin: 60px auto;
  padding: 0 24px;
  width: 100%;
}

.conditions-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.condition-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-card);
  border-left: 5px solid var(--gold);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.condition-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(201,168,76,0.1);
}

.condition-num {
  position: absolute;
  top: -10px;
  right: 15px;
  font-size: 72px;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.05);
  font-family: 'Cinzel', serif;
  user-select: none;
}

.condition-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.condition-card h3 span.icon {
  font-size: 20px;
}

.condition-card p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.8;
}

.back-home-container {
  text-align: center;
  margin-top: 40px;
}

.btn-back-home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-navy);
  color: var(--gold);
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-back-home:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

@media (max-width: 768px) {
  .subpage-title { font-size: 30px; }
  .subpage-header { padding: 100px 0 50px; }
  .condition-card { padding: 24px; }
}
