:root {
  --primary: #C8381D;
  --primary-dark: #9E2610;
  --primary-light: #FDF1EE;
  --navy: #0F2C59;
  --navy-dark: #07152B;
  --navy-light: #1E3F73;
  --gold: #D97706;
  --gold-light: #FEF3C7;
  --green: #10B981;
  --green-dark: #059669;
  --bg-warm: #FAF8F5;
  --bg-card: #FFFFFF;
  --text-dark: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --border-light: #E2E8F0;
  --shadow-sm: 0 2px 4px rgba(15, 44, 89, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(15, 44, 89, 0.1), 0 8px 10px -6px rgba(15, 44, 89, 0.05);
  --shadow-lg: 0 20px 35px -10px rgba(200, 56, 29, 0.15), 0 10px 15px -5px rgba(15, 44, 89, 0.08);
  --shadow-glow: 0 0 25px rgba(200, 56, 29, 0.3);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-warm);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(200, 56, 29, 0.2);
}

.section-title {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.85rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #FFFFFF;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #d44024 0%, #871f0c 100%);
}

.btn-navy {
  background: var(--navy);
  color: #FFFFFF;
}

.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(15, 44, 89, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: #FFFFFF;
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
}

.btn-whatsapp:hover {
  background: #1EBE5D;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* ==========================================================================
   Top Banner & Header
   ========================================================================== */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-blessing {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-bar-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #FFFFFF;
}

.top-bar-link:hover {
  color: var(--gold-light);
}

/* Main Header & Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(15, 44, 89, 0.08);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(200, 56, 29, 0.3);
}

.brand-text h1 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.1;
}

.brand-text h1 span {
  color: var(--primary);
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  position: relative;
  padding: 0.4rem 0;
}

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

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  font-size: 1.5rem;
  color: var(--navy);
}

/* ==========================================================================
   Page Subheader / Breadcrumb Banner
   ========================================================================== */
.page-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: #FFFFFF;
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 100%;
  background: radial-gradient(circle, rgba(200, 56, 29, 0.25) 0%, rgba(200, 56, 29, 0) 70%);
  pointer-events: none;
}

.page-title {
  font-size: 3rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumbs a {
  color: var(--gold-light);
}

.breadcrumbs a:hover {
  color: #FFFFFF;
}

/* ==========================================================================
   SLIDER REVOLUTION - COLUMN MINI POPUP PRESET ANIMATION
   ========================================================================== */
.hero-carousel-container {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  background: var(--navy-dark);
  perspective: 1200px;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: visibility 0.9s ease;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* 5 Column Slices Grid */
.column-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  height: 100%;
  perspective: 1200px;
}

.col-slice {
  height: 100%;
  background-size: 500% 100%;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translateY(90px) scale(0.82) rotateX(20deg);
  transition: transform 0.85s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s ease;
  will-change: transform, opacity;
}

/* Staggered Column Mini Popup Delays (Slider Revolution Preset) */
.carousel-slide.active .col-slice:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0) scale(1) rotateX(0deg); }
.carousel-slide.active .col-slice:nth-child(2) { transition-delay: 0.16s; opacity: 1; transform: translateY(0) scale(1) rotateX(0deg); }
.carousel-slide.active .col-slice:nth-child(3) { transition-delay: 0.27s; opacity: 1; transform: translateY(0) scale(1) rotateX(0deg); }
.carousel-slide.active .col-slice:nth-child(4) { transition-delay: 0.38s; opacity: 1; transform: translateY(0) scale(1) rotateX(0deg); }
.carousel-slide.active .col-slice:nth-child(5) { transition-delay: 0.49s; opacity: 1; transform: translateY(0) scale(1) rotateX(0deg); }

/* Controls (Prev/Next Glassmorphism Arrows) */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 54px;
  height: 54px;
  background: rgba(15, 44, 89, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition);
}

.carousel-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(200, 56, 29, 0.6);
  transform: translateY(-50%) scale(1.12);
}

.carousel-btn-prev { left: 2rem; }
.carousel-btn-next { right: 2rem; }

.carousel-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.carousel-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}

.carousel-dot.active, .carousel-dot:hover {
  background: var(--primary);
  width: 38px;
  border-radius: 20px;
  border-color: #FFFFFF;
}

/* Action Strip Below Slider */
.action-strip {
  background: var(--navy-dark);
  color: #FFFFFF;
  padding: 1.75rem 0;
  border-bottom: 4px solid var(--primary);
  box-shadow: var(--shadow-md);
}

.action-strip-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.strip-icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 56, 29, 0.2);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  border: 1px solid rgba(200, 56, 29, 0.4);
}

.strip-text h4 {
  color: #FFFFFF;
  font-size: 1.05rem;
  line-height: 1.2;
}

.strip-text p {
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
}

.strip-cta-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   Executive Team Section
   ========================================================================== */
.team-section {
  padding: 5rem 0;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
}

.exec-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  color: #FFFFFF;
  box-shadow: var(--shadow-lg);
}

.exec-profiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.exec-card-wide {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.exec-avatar {
  width: 70px;
  height: 70px;
  background: var(--primary);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.exec-info h4 {
  color: #FFFFFF;
  font-size: 1.35rem;
  margin-bottom: 0.2rem;
}

.exec-role-text {
  font-size: 0.85rem;
  color: var(--gold-light);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.exec-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.05rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.4rem 1rem;
  border-radius: 50px;
}

.exec-phone-link:hover {
  background: var(--primary);
}

/* ==========================================================================
   About Us Section
   ========================================================================== */
.about-section {
  padding: 6rem 0;
  background: var(--bg-warm);
}

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

.about-images-wrapper {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 5px solid #FFFFFF;
  height: 440px;
  object-fit: cover;
  width: 100%;
}

.about-img-secondary {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 260px;
  height: 220px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 4px solid #FFFFFF;
  object-fit: cover;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.highlight-box {
  background: #FFFFFF;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
}

.highlight-box h4 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.highlight-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
  padding: 6rem 0;
  background: #FFFFFF;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-warm);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  background: #FFFFFF;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 8px 16px rgba(200, 56, 29, 0.3);
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.service-list {
  list-style: none;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.service-list li i {
  color: var(--primary);
  font-size: 0.75rem;
}

/* ==========================================================================
   Interactive Tool Section (Vaastu Checker & Cost Estimator)
   ========================================================================== */
.tools-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: #FFFFFF;
}

.tools-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.tool-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.tab-btn {
  padding: 0.85rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(200, 56, 29, 0.4);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Vaastu Tool Grid */
.vaastu-tool-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.vaastu-questions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.vaastu-q-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.vaastu-q-item label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--gold-light);
}

.vaastu-q-item select {
  width: 100%;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--navy-dark);
  color: #FFFFFF;
  font-size: 0.95rem;
  outline: none;
}

.vaastu-score-card {
  background: linear-gradient(135deg, rgba(200, 56, 29, 0.2) 0%, rgba(217, 119, 6, 0.2) 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
}

.score-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 6px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: rgba(0, 0, 0, 0.3);
}

.score-num {
  font-size: 2.75rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
}

.score-label {
  font-size: 0.75rem;
  color: var(--gold-light);
  font-weight: 700;
  text-transform: uppercase;
}

/* Cost Estimator Grid */
.cost-estimator-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
}

.form-group-custom {
  margin-bottom: 1.5rem;
}

.form-group-custom label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.form-group-custom input, .form-group-custom select {
  width: 100%;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--navy-dark);
  color: #FFFFFF;
  font-size: 1rem;
  outline: none;
}

.cost-result-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.est-amount-box {
  text-align: center;
  padding: 1.5rem;
  background: rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(16, 185, 129, 0.4);
  margin-bottom: 1.5rem;
}

.est-amount-val {
  font-size: 2.5rem;
  font-weight: 800;
  color: #10B981;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-section {
  padding: 6rem 0;
  background: var(--bg-warm);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  background: #FFFFFF;
  color: var(--navy);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(200, 56, 29, 0.25);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.gallery-img-holder {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.gallery-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-img-holder img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 44, 89, 0) 0%, rgba(15, 44, 89, 0.88) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info h4 {
  color: #FFFFFF;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.gallery-info p {
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
}

.gallery-zoom-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
}

/* Modal Lightbox */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(7, 21, 43, 0.95);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 950px;
  width: 100%;
  text-align: center;
}

.lightbox-content img {
  max-height: 80vh;
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  color: #FFFFFF;
  font-size: 2rem;
  cursor: pointer;
}

/* ==========================================================================
   Contact Us Section
   ========================================================================== */
.contact-section {
  padding: 6rem 0;
  background: #FFFFFF;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
}

.contact-card-info {
  background: var(--navy-dark);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 56, 29, 0.2);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  border: 1px solid rgba(200, 56, 29, 0.4);
}

.contact-info-text h5 {
  color: var(--gold-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-info-text p, .contact-info-text a {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
}

.contact-info-text a:hover {
  color: var(--gold-light);
}

/* Contact Form */
.contact-form-holder {
  background: var(--bg-warm);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.full-width {
  grid-column: span 2;
}

.input-box {
  margin-bottom: 1.25rem;
}

.input-box label {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.input-box input, .input-box select, .input-box textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: #FFFFFF;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}

.input-box input:focus, .input-box select:focus, .input-box textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200, 56, 29, 0.15);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 3.5rem;
  right: 2rem;
  z-index: 1500;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse-ring 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1EBE5D;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 2rem;
  border-top: 4px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand h3 {
  color: #FFFFFF;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.footer-brand h3 span { color: var(--primary); }

.footer-title {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-carousel-container {
    height: 480px;
  }
  .action-strip-grid {
    justify-content: center;
  }
  .about-grid, .vaastu-tool-grid, .cost-estimator-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .exec-profiles-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
	.nav-actions .btn{display:none;}
	.brand-text h1 {
	font-size: 1.15rem;}
  .hero-carousel-container {
    height: 280px;
  }
  .carousel-btn-prev { left: 0.5rem; }
  .carousel-btn-next { right: 0.5rem; }
  .section-title {
    font-size: 2rem;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #FFFFFF;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
  }
  .nav-menu.active {
    left: 0;
  }
  .mobile-toggle {
    display: block;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .full-width {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
