@import url('https://fonts.googleapis.com/css2?family=Mukta+Malar:wght@400;600;700&family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Theme Color: #0A5C36 (Deep Executive Emerald Green) */
  --green-primary: #0A5C36;
  --green-dark: #064025;
  --green-light: #16824E;
  --green-subtle: #DCFCE7;
  --green-glow: rgba(10, 92, 54, 0.35);
  
  /* Yellow Theme: User requested exact code #FFB343 */
  --yellow-primary: #FFB343;
  --bg-page: #FFFDF5;
  --bg-header: #FFB343;
  --bg-footer: #FFB343;
  --bg-card: #FFB343;
  --bg-card-hover: #FFA323;
  --bg-yellow-light: #FFDFB0;
  --bg-yellow-medium: #FFC66B;
  
  --dark-900: #063820;
  --dark-800: #0A5C36;
  --dark-700: #136F43;
  --dark-600: #1E8050;

  --text-main: #063820;
  --text-muted: #0D492B;
  --text-light: #F2FAF6;
  
  --border-subtle: #FFB343;
  --border-green: rgba(10, 92, 54, 0.45);
  --border-yellow: #0A5C36;

  --shadow-sm: 0 2px 8px rgba(10, 92, 54, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 92, 54, 0.12);
  --shadow-lg: 0 16px 40px rgba(10, 92, 54, 0.18);
  --shadow-green: 0 8px 25px rgba(10, 92, 54, 0.3);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Tamil Script Class */
.tamil-text {
  font-family: 'Mukta Malar', 'Outfit', sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Concierge Banner - #FFB343 Yellow BG */
.top-bar {
  background: #FFB343;
  color: #063820;
  font-size: 0.85rem;
  font-weight: 700;
  border-bottom: 2px solid var(--green-primary);
  padding: 10px 0;
  position: relative;
  z-index: 100;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.top-wa-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #FFFFFF;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.78rem;
  text-decoration: none;
  border: 1px solid #1EBE5D;
}
.top-wa-badge:hover {
  background: #1EBE5D;
  color: #FFFFFF;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0A5C36;
  color: #FFFFFF;
  border: 1px solid #064025;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.live-dot {
  width: 7px;
  height: 7px;
  background-color: #EF4444;
  border-radius: 50%;
  animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.lang-toggle {
  background: var(--green-primary);
  border: 1px solid var(--green-dark);
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  transition: var(--transition);
}
.lang-toggle:hover {
  background: var(--green-dark);
}

/* Header Navigation - #FFB343 Yellow BG with NO OVERLAY */
.navbar {
  background: #FFB343;
  border-bottom: 2px solid var(--green-primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: #FFB343;
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 84px;
  gap: 16px;
}

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

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  border: 2px solid #063820;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 900;
  font-size: 1.35rem;
  box-shadow: var(--shadow-sm);
}

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

.logo-main {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--dark-900);
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-sub {
  font-size: 0.78rem;
  color: var(--green-dark);
  font-weight: 800;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  flex-wrap: nowrap;
}

.nav-link {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 800;
  font-size: 0.90rem;
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--green-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--green-primary);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Buttons - #0A5C36 Executive Theme */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: #FFFFFF;
  border: 1px solid var(--green-dark);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--green-light), var(--green-primary));
  box-shadow: var(--shadow-green);
  color: #FFFFFF;
}

.btn-gold {
  background: #FFB343;
  color: #063820;
  font-weight: 800;
  border: 2px solid #0A5C36;
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover {
  transform: translateY(-2px);
  background: #0A5C36;
  color: #FFFFFF;
  box-shadow: var(--shadow-green);
}

.btn-outline {
  background: transparent;
  color: var(--dark-900);
  border: 2px solid var(--dark-900);
  font-weight: 800;
}
.btn-outline:hover {
  background: var(--dark-900);
  color: #FFFBEB;
}

/* Mobile Menu Button */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--dark-900);
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6, 56, 32, 0.93) 0%, rgba(10, 92, 54, 0.85) 55%, rgba(10, 92, 54, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 760px;
  padding: 60px 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFB343;
  color: #063820;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}

.hero-title span {
  color: #FFB343;
}

.hero-tamil {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #FFB343;
  margin-bottom: 20px;
  display: block;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.94);
  margin-bottom: 34px;
  max-width: 660px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

/* Property Finder Box - PERFECTLY ALIGNED #FFB343 Yellow Box */
.property-search-section {
  background: var(--bg-page);
  padding: 24px 0;
  border-bottom: 2px solid var(--green-primary);
}

.property-search-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 28px 32px;
  border: 3px solid var(--green-primary);
}

.search-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  align-items: end;
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-field label {
  font-size: 0.84rem;
  font-weight: 900;
  color: var(--dark-900);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.search-field select, .search-field input {
  padding: 13px 14px;
  border: 2px solid var(--green-primary);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-main);
  background: #FFFFFF;
  outline: none;
  font-weight: 700;
  transition: var(--transition);
  width: 100%;
}

.search-field select:focus, .search-field input:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(10, 92, 54, 0.2);
}

/* Stats Bar */
.stats-bar {
  background: var(--green-primary);
  color: #FFFFFF;
  padding: 44px 0;
  border-top: 2px solid var(--dark-900);
  border-bottom: 2px solid var(--dark-900);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 10px;
}

.stat-number {
  font-size: 2.7rem;
  font-weight: 900;
  color: #FFB343;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.98rem;
  font-weight: 700;
  color: #FFFFFF;
}

/* Section Headings */
.section-pad {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px auto;
}

.sub-title {
  display: inline-block;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  background: var(--green-primary);
  padding: 5px 16px;
  border-radius: var(--radius-full);
}

.main-title {
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  font-weight: 900;
  color: var(--dark-900);
  line-height: 1.25;
  margin-bottom: 14px;
}

.main-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 42px;
}

.tab-btn {
  background: var(--bg-card);
  border: 2px solid var(--green-primary);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-main);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--green-primary);
  color: #FFFFFF;
  border-color: var(--green-dark);
  box-shadow: var(--shadow-sm);
}

/* FIXED EXACT CROPPED VIDEO BOXES FOR ALL CARDS */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

/* PROJECT CARD - #FFB343 Yellow BG Box Content */
.project-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--green-primary);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-dark);
  background: var(--bg-card-hover);
}

/* EXACT 240px CROPPED CONTAINER FOR PROJECT VIDEOS / IMAGES */
.project-media {
  position: relative;
  width: 100%;
  height: 240px;
  min-height: 240px;
  max-height: 240px;
  overflow: hidden;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.project-media video, .project-media img {
  width: 100% !important;
  height: 240px !important;
  max-height: 240px !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block;
}

.cctv-live-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(6, 56, 32, 0.94);
  color: #FFFFFF;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #16824E;
  z-index: 5;
}

.status-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--green-primary);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  z-index: 5;
}

.project-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.project-location {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.project-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark-900);
  margin-bottom: 10px;
}

.project-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 14px 0;
  padding: 12px 0;
  border-top: 1px solid rgba(10, 92, 54, 0.3);
  border-bottom: 1px solid rgba(10, 92, 54, 0.3);
}

.spec-item {
  font-size: 0.85rem;
  color: var(--text-main);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
}

.project-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark-900);
}

.project-price span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Video Gallery Grid Section - FIXED CROPPING AND ALIGNMENT */
.video-gallery-section {
  background: #FFFDF5;
  border-top: 2px solid var(--green-primary);
  border-bottom: 2px solid var(--green-primary);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

/* VIDEO CARD #FFB343 YELLOW BG BOX CONTENT */
.video-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--green-primary);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.video-card:hover {
  border-color: var(--green-dark);
  box-shadow: var(--shadow-md);
  background: var(--bg-card-hover);
}

/* EXACT 240px CROPPED WRAPPER FOR ALL VIDEO CARDS */
.video-player-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  min-height: 240px;
  max-height: 240px;
  overflow: hidden;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.video-player-wrapper video {
  width: 100% !important;
  height: 240px !important;
  max-height: 240px !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block;
}

.video-card-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.video-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark-900);
  margin-bottom: 8px;
}

/* Live CCTV & Work Progress Showcase Section */
.cctv-section {
  background: var(--green-primary);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--dark-900);
  border-bottom: 3px solid var(--dark-900);
}

.cctv-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.cctv-player-box {
  background: #000000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid #FFB343;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  position: relative;
}

.cctv-video-frame {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.cctv-video-frame video, .cctv-video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cctv-overlay-top {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.cctv-rec {
  background: rgba(0, 0, 0, 0.8);
  color: #EF4444;
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.cctv-timestamp {
  background: rgba(0, 0, 0, 0.8);
  color: #FFB343;
  font-family: monospace;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 6px;
}

.cctv-camera-selector {
  display: flex;
  background: var(--dark-900);
  padding: 10px;
  gap: 10px;
}

.cam-btn {
  flex: 1;
  background: #0B4A2C;
  border: 1px solid #136F43;
  color: #E6FBF2;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.cam-btn.active, .cam-btn:hover {
  background: #FFB343;
  border-color: #FFB343;
  color: #063820;
}

/* District Land Explorer - #FFB343 Yellow Card Box Background */
.district-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.district-card {
  background: var(--bg-card);
  border: 2px solid var(--green-primary);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
  cursor: pointer;
}

.district-card:hover {
  border-color: var(--green-dark);
  box-shadow: var(--shadow-md);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.district-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark-900);
  margin-bottom: 6px;
}

.district-tamil {
  font-size: 0.9rem;
  color: var(--green-dark);
  font-weight: 700;
  margin-bottom: 12px;
}

.district-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-main);
  font-weight: 600;
  border-top: 1px solid rgba(10, 92, 54, 0.3);
  padding-top: 10px;
}

/* ROI Land Appreciation Matrix Calculator - 100% READABLE TEXT ON #FFB343 */
.roi-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: #063820;
  border: 3px solid var(--green-primary);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.slider-group {
  margin-bottom: 24px;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  font-weight: 900;
  margin-bottom: 10px;
  color: #063820;
}

.calc-slider {
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: rgba(6, 56, 32, 0.25);
  accent-color: #0A5C36;
  cursor: pointer;
}

.roi-result-box {
  background: #FFFFFF;
  border: 3px solid var(--green-primary);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
}

.roi-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--green-primary);
  line-height: 1.1;
  margin: 12px 0;
}

/* Core Services Pillars - #FFB343 Yellow Card Box Background */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 2px solid var(--green-primary);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--green-dark);
  box-shadow: var(--shadow-md);
  background: var(--bg-card-hover);
  transform: translateY(-5px);
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--green-primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark-900);
  margin-bottom: 10px;
}

/* Customer Video Walkthrough Testimonials - #FFB343 Yellow Card Box */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 2px solid var(--green-primary);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-stars {
  color: var(--green-primary);
  font-size: 1.1rem;
}

.review-text {
  font-size: 0.98rem;
  color: var(--text-main);
  font-style: italic;
  font-weight: 500;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  border-top: 1px solid rgba(10, 92, 54, 0.3);
  padding-top: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

/* Bottom Footer - EXACT USER YELLOW CODE #FFB343 */
.luxury-footer {
  background: #FFB343;
  color: #063820;
  padding: 80px 0 30px 0;
  border-top: 4px solid var(--green-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: var(--dark-900);
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 20px;
  position: relative;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #063820;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  font-size: 0.94rem;
}

.footer-links a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 2px solid rgba(6, 56, 32, 0.25);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #063820;
}

.footer-bottom a {
  color: #063820;
  text-decoration: none;
  font-weight: 700;
}
.footer-bottom a:hover {
  color: #FFFFFF;
}

/* Full UNUK Emblem & Ribbon Badge Logo */
.logo-emblem-cutout {
  width: 60px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(6, 56, 32, 0.25));
}

.logo-emblem-cutout img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Sticky Floating WhatsApp & Call Integration Widget (Icons Only) */
.floating-contact-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 99990;
}

.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: var(--transition);
  color: #FFFFFF;
  font-size: 1.65rem;
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.float-wa {
  background: #25D366;
  border: 3px solid #FFFFFF;
}

.float-call {
  background: #0A5C36;
  border: 3px solid #FFFFFF;
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 56, 32, 0.82);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  padding: 20px;
}

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

.modal-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  padding: 34px;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 3px solid var(--green-primary);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-main);
}

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--dark-900);
}

.form-group input, .form-group select, .form-group textarea {
  padding: 12px 14px;
  border: 1px solid var(--green-primary);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background: #FFFFFF;
}

/* Responsive Breakpoints */
@media (max-width: 1180px) {
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
}

@media (max-width: 1024px) {
  .search-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .projects-grid, .video-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .district-grid, .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cctv-container, .roi-card {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
  }
  .hide-mobile {
    display: none !important;
  }
  .top-bar {
    padding: 8px 0;
  }
  .top-bar-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  .top-bar-left, .top-bar-right {
    justify-content: center;
    gap: 12px;
    width: 100%;
    font-size: 0.76rem;
  }
  .navbar-inner {
    height: 72px;
    padding: 0 10px;
    gap: 8px;
  }
  .brand-logo {
    gap: 8px;
  }
  .logo-emblem-cutout {
    width: 44px;
  }
  .logo-main {
    font-size: 1.15rem;
  }
  .logo-sub {
    font-size: 0.62rem;
  }
  .nav-actions {
    gap: 6px;
  }
  .nav-actions .btn-outline {
    display: none;
  }
  .nav-actions .btn-primary {
    padding: 6px 10px;
    font-size: 0.78rem;
    white-space: nowrap;
  }
  .mobile-toggle {
    font-size: 1.4rem;
    padding: 4px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .search-grid {
    grid-template-columns: 1fr;
  }
  .hero-content {
    padding: 30px 0;
  }
  .projects-grid, .video-grid, .testimonials-grid, .district-grid, .services-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .roi-card {
    padding: 24px;
  }
  .floating-contact-widget {
    bottom: 16px;
    right: 16px;
  }
  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 1.35rem;
  }
}

@media (max-width: 480px) {
  .top-bar-left span:nth-child(2) {
    display: block;
    width: 100%;
  }
  .hero-badge {
    padding: 6px 12px;
    font-size: 0.74rem;
    line-height: 1.3;
    max-width: 95%;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .logo-sub {
    display: none;
  }
}

/* Mobile Navigation Drawer - #FFB343 */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #FFB343;
  color: #063820;
  z-index: 99999;
  padding: 30px 24px;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  border-left: 3px solid var(--green-primary);
}

.mobile-drawer.active {
  right: 0;
}

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.drawer-links a {
  color: #063820;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 800;
}
