/* ==========================================================================
   TRILOK CONSTRUCTIONS - PREMIUM DESIGN SYSTEM & STYLESHEET
   Brand Colors: Midnight Navy (#0A2342), Metallic Gold (#C89B3C), Slate Grey (#4B5563)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,400&display=swap');

:root {
  --navy: #0A2342;
  --navy-dark: #041021;
  --navy-light: #16365D;
  --navy-trans: rgba(10, 35, 66, 0.92);
  --gold: #C89B3C;
  --gold-light: #F3E5AB;
  --gold-hover: #E5C158;
  --gold-dark: #9E7728;
  --gold-gradient: linear-gradient(135deg, #C89B3C 0%, #F5D77F 50%, #B38728 100%);
  --gold-glow: 0 0 20px rgba(200, 155, 60, 0.4);
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --slate-dark: #1E293B;
  --slate-grey: #4B5563;
  --slate-light: #94A3B8;
  --slate-border: #E2E8F0;
  --bg-card: #FFFFFF;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -3px rgba(10, 35, 66, 0.08);
  --shadow-lg: 0 20px 35px -5px rgba(10, 35, 66, 0.15);
  --shadow-gold: 0 10px 30px -5px rgba(200, 155, 60, 0.35);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Cinzel', 'Playfair Display', serif;
  --font-subheading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
}

/* Base Resets */
*, *::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(--off-white);
  color: var(--slate-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.5px;
}

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

ul {
  list-style: none;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

/* Section Header Utility */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-dark);
  background: rgba(200, 155, 60, 0.1);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  border: 1px solid rgba(200, 155, 60, 0.2);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.2;
}

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

.section-desc {
  font-size: 1.1rem;
  color: var(--slate-grey);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--navy-dark);
  box-shadow: var(--shadow-gold);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(200, 155, 60, 0.5);
  color: var(--navy-dark);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-secondary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--off-white);
  color: var(--navy-dark);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

/* Header & Top Bar */
.top-bar {
  background: var(--navy-dark);
  color: var(--slate-light);
  font-size: 0.85rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(200, 155, 60, 0.2);
}

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

.top-bar-info {
  display: flex;
  gap: 24px;
}

.top-bar-info a {
  color: var(--slate-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-info a:hover {
  color: var(--gold);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-badge {
  background: var(--gold-gradient);
  color: var(--navy-dark);
  font-weight: 700;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--navy-trans);
  backdrop-filter: blur(12px);
  z-index: 1000;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}

.brand-logo img {
  height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

.logo-icon-svg {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 2px 8px rgba(200, 155, 60, 0.4));
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  font-weight: 900;
  letter-spacing: 1.5px;
  color: var(--white);
  line-height: 1;
}

.brand-title span {
  color: var(--gold);
}

.brand-tagline {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-light);
  margin-top: 3px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-left: auto;
}

.nav-link {
  color: var(--white);
  font-weight: 500;
  font-size: 0.92rem;
  position: relative;
  padding: 6px 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 12px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  background: linear-gradient(135deg, rgba(10, 35, 66, 0.92) 0%, rgba(4, 16, 33, 0.96) 100%), url('/public/assets/images/hero_villa.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 120px 0 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200, 155, 60, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

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

.hero-subheadline {
  font-size: 1.3rem;
  color: var(--gold);
  font-family: var(--font-subheading);
  font-style: italic;
  margin-bottom: 16px;
  font-weight: 600;
}

.hero-highlights {
  font-size: 1.05rem;
  color: var(--slate-light);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-price-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(200, 155, 60, 0.4);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  margin-bottom: 36px;
}

.hero-price-badge .label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--slate-light);
}

.hero-price-badge .price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-heading);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Quick Consultation Form Box in Hero */
.hero-form-card {
  background: rgba(10, 35, 66, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(200, 155, 60, 0.3);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.hero-form-title {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
  text-align: center;
}

.hero-form-subtitle {
  font-size: 0.88rem;
  color: var(--slate-light);
  text-align: center;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-light);
  margin-bottom: 6px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(200, 155, 60, 0.3);
}

.form-select option {
  background: var(--navy-dark);
  color: var(--white);
}

/* Instant Cost Calculator Section */
.calc-section {
  background: var(--white);
  position: relative;
}

.calc-card {
  background: linear-gradient(145deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 2px solid rgba(200, 155, 60, 0.25);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
}

.calc-option-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.range-slider-wrap {
  margin-bottom: 30px;
}

.slider-val-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.slider-val {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-dark);
  font-family: var(--font-heading);
}

.custom-range {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--slate-border);
  outline: none;
  accent-color: var(--gold);
  cursor: pointer;
}

.package-radio-group, .floor-radio-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 30px;
}

.radio-card {
  border: 2px solid var(--slate-border);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}

.radio-card:hover, .radio-card.active {
  border-color: var(--gold);
  background: rgba(200, 155, 60, 0.05);
  box-shadow: var(--shadow-sm);
}

.radio-card input {
  display: none;
}

.radio-card .title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  display: block;
}

.radio-card .price-tag {
  font-size: 0.8rem;
  color: var(--gold-dark);
  font-weight: 600;
}

/* Calculator Result Panel */
.calc-result-panel {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.calc-result-panel::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(200, 155, 60, 0.2) 0%, transparent 70%);
}

.estimate-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-light);
}

.estimate-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  font-family: var(--font-heading);
  margin: 12px 0 24px;
  line-height: 1;
}

.breakdown-list {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  margin-bottom: 24px;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: var(--slate-light);
}

.breakdown-item span:last-child {
  color: var(--white);
  font-weight: 600;
}

/* About Us Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-box img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--navy);
  color: var(--white);
  padding: 24px 32px;
  border-radius: var(--radius-md);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about-badge .num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  font-family: var(--font-heading);
  line-height: 1;
}

.about-badge .txt {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--slate-light);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.mv-card {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.mv-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mv-card h4 i {
  color: var(--gold);
}

/* Stats Strip */
.stats-strip {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0;
  border-y: 1px solid var(--gold);
}

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

.stat-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--slate-light);
}

/* Why Choose Us Section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--slate-border);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}

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

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

.why-icon {
  width: 60px;
  height: 60px;
  background: rgba(200, 155, 60, 0.1);
  color: var(--gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.92rem;
  color: var(--slate-grey);
}

/* Our Services Section */
.services-section {
  background: #F1F5F9;
}

.services-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.tab-btn {
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: 1px solid var(--slate-border);
  background: var(--white);
  color: var(--slate-dark);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--slate-border);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.service-body {
  padding: 32px;
}

.service-icon-box {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--slate-grey);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-list {
  margin-bottom: 24px;
}

.service-list li {
  font-size: 0.88rem;
  color: var(--slate-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

/* 8-Step Construction Process */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-step-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  border: 1px solid var(--slate-border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.process-step-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.step-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(200, 155, 60, 0.2);
  font-family: var(--font-heading);
}

.step-icon {
  width: 50px;
  height: 50px;
  background: var(--navy);
  color: var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.step-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--slate-grey);
}

/* Our Promise Section */
.promise-section {
  background: var(--navy);
  color: var(--white);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.promise-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 155, 60, 0.25);
  padding: 28px 16px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}

.promise-card:hover {
  background: rgba(200, 155, 60, 0.15);
  transform: translateY(-5px);
  border-color: var(--gold);
}

.promise-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.promise-title {
  font-size: 1rem;
  color: var(--white);
  font-family: var(--font-heading);
}

/* Construction Packages */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  align-items: stretch;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--slate-border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
}

.package-card.popular {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: scale(1.03);
}

.popular-ribbon {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--gold-gradient);
  color: var(--navy-dark);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 6px 40px;
  transform: rotate(45deg);
  box-shadow: var(--shadow-sm);
}

.package-header {
  padding: 40px 32px 24px;
  text-align: center;
  border-bottom: 1px solid var(--slate-border);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 1) 100%);
}

.package-name {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.package-price-box {
  margin-bottom: 8px;
}

.package-starting {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--slate-grey);
  display: block;
}

.package-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold-dark);
  font-family: var(--font-heading);
}

.package-body {
  padding: 32px;
  flex-grow: 1;
}

.spec-list-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 16px;
}

.package-spec-list li {
  font-size: 0.92rem;
  color: var(--slate-dark);
  padding: 10px 0;
  border-bottom: 1px dashed var(--slate-border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.package-spec-list li i {
  color: var(--gold-dark);
}

.package-footer {
  padding: 24px 32px 36px;
  text-align: center;
}

.package-disclaimer {
  font-size: 0.8rem;
  color: var(--slate-light);
  margin-top: 16px;
  font-style: italic;
}

/* Project Gallery */
.gallery-filter-wrap {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 320px;
  cursor: pointer;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 35, 66, 0.9) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
}

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

.gallery-cat {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  font-weight: 700;
}

.gallery-title {
  font-size: 1.2rem;
  color: var(--white);
}

/* Live Project Progress Demo Banner */
.progress-demo-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 60px;
}

.progress-demo-preview {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(200, 155, 60, 0.3);
}

.progress-bar-wrap {
  margin: 16px 0;
}

.progress-bar-bg {
  width: 100%;
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 72%;
  background: var(--gold-gradient);
  border-radius: 6px;
}

/* Loan / EMI Calculator */
.emi-section {
  background: var(--off-white);
}

.emi-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-border);
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  border: 1px solid var(--slate-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 24px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold-dark);
  background: rgba(200, 155, 60, 0.03);
}

.faq-icon {
  color: var(--gold);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 32px;
  color: var(--slate-grey);
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 32px 24px;
}

/* Blog Cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.blog-body {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(200, 155, 60, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.blog-title {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.blog-excerpt {
  font-size: 0.9rem;
  color: var(--slate-grey);
  margin-bottom: 20px;
}

/* Contact Us Section */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}

.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--gold);
  box-shadow: var(--shadow-lg);
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(200, 155, 60, 0.15);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.info-text p, .info-text a {
  color: var(--slate-light);
  font-size: 0.95rem;
}

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

/* Footer */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 80px 0 30px;
  border-top: 2px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-col p {
  color: var(--slate-light);
  font-size: 0.92rem;
  margin-top: 16px;
  line-height: 1.7;
}

.footer-title {
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 24px;
  position: relative;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--slate-light);
  font-size: 0.9rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--slate-light);
}

/* Global Floating Action Bar & Quick Connect */
.floating-quick-connect {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 12px;
  z-index: 999;
}

.floating-whatsapp {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.08);
}

.quick-connect-item {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.05rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
  transform: translateY(8px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  text-decoration: none;
}

.floating-quick-connect.open .quick-connect-item {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.quick-connect-item.facebook { background: #1877f2; }
.quick-connect-item.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.quick-connect-item.whatsapp { background: #25D366; }
.quick-connect-item.whatsapp-alt { background: #128C7E; }

.floating-quick-connect.open .floating-whatsapp {
  transform: rotate(45deg);
}

.floating-quick-bar {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: var(--navy);
  border: 1px solid var(--gold);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
}

.floating-quick-bar a {
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Modal Popup & Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 35, 66, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

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

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

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

.modal-close:hover {
  color: var(--navy);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .top-bar-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .top-bar-right {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
  }
  .hero-grid, .calc-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .why-grid, .services-grid, .process-timeline, .package-grid, .gallery-grid, .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .promise-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .top-bar {
    padding: 8px 0;
  }
  .top-bar-content {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .top-bar-info,
  .top-bar-right {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .top-bar-info a,
  .top-bar-right a,
  .top-bar-right button {
    font-size: 0.8rem;
    width: 100%;
    justify-content: center;
  }
  .top-bar-badge {
    align-self: flex-start;
  }
  .nav-container {
    position: relative;
    padding: 12px 16px;
    gap: 8px;
    align-items: center;
  }
  .brand-logo {
    gap: 8px;
    flex: 1;
    min-width: 0;
  }
  .brand-logo img {
    height: 42px;
  }
  .brand-title {
    font-size: 0.9rem;
    line-height: 1.1;
    letter-spacing: 0.8px;
  }
  .brand-tagline {
    font-size: 0.5rem;
    white-space: normal;
    line-height: 1.3;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    background: rgba(10, 35, 66, 0.98);
    padding: 14px 16px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 1100;
  }
  .nav-menu.is-open {
    display: flex;
  }
  .nav-menu li {
    width: 100%;
  }
  .nav-link {
    display: block;
    padding: 10px 0;
    font-size: 0.95rem;
    width: 100%;
  }
  .mobile-toggle {
    display: block;
    padding: 6px 8px;
  }
  .nav-actions .btn-primary {
    display: none;
  }
  .hero {
    padding: 100px 0 80px;
  }
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .section-padding {
    padding: 70px 0;
  }
  .btn,
  .btn-primary,
  .btn-outline-gold {
    width: 100%;
    justify-content: center;
  }
  .why-grid, .services-grid, .process-timeline, .package-grid, .gallery-grid, .blog-grid {
    grid-template-columns: 1fr;
  }
  .promise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-title {
    margin-bottom: 14px;
  }
  .floating-quick-bar {
    display: none;
  }
  .floating-quick-connect {
    bottom: 16px;
    right: 16px;
    gap: 10px;
  }
  .floating-whatsapp {
    width: 54px;
    height: 54px;
    font-size: 1.4rem;
  }
  .quick-connect-item {
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }
  .top-bar-info a,
  .top-bar-right a,
  .top-bar-right button {
    font-size: 0.74rem;
  }
  .top-bar-badge {
    font-size: 0.68rem;
  }
  .nav-container {
    padding: 10px 14px;
  }
  .brand-logo img {
    height: 38px;
  }
  .brand-title {
    font-size: 0.82rem;
  }
  .brand-tagline {
    display: none;
  }
  .nav-menu {
    left: 14px;
    right: 14px;
    padding: 12px 14px;
  }
  .nav-link {
    font-size: 0.9rem;
    padding: 8px 0;
  }
  .hero {
    padding: 90px 0 70px;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-subtitle {
    font-size: 0.9rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .section-desc {
    font-size: 0.95rem;
  }
  .section-padding {
    padding: 60px 0;
  }
  .floating-quick-connect {
    bottom: 14px;
    right: 14px;
  }
  .floating-whatsapp {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  .quick-connect-item {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  .footer-bottom {
    font-size: 0.78rem;
  }
  
  /* Cost Calculator & Form Mobile Enhancements */
  .calc-result-panel {
    padding: 20px 16px !important;
  }
  .estimate-amount {
    font-size: 2.2rem !important;
  }
  .package-radio-group, .floor-radio-group {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-bottom: 20px !important;
  }
  .package-radio-group .radio-card, .floor-radio-group .radio-card {
    width: 100% !important;
    padding: 14px !important;
    box-sizing: border-box !important;
  }
  .slider-val-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .slider-val {
    align-self: flex-start;
  }
  .modal-content {
    width: 95% !important;
    margin: 10% auto !important;
    padding: 24px 16px !important;
  }
  .modal-header h3 {
    font-size: 1.25rem !important;
  }
  .contact-info-card {
    padding: 24px 16px !important;
  }
  .contact-form-card {
    padding: 24px 16px !important;
  }
  
  /* Progress Demo Stack Fix */
  .progress-demo-card {
    grid-template-columns: 1fr !important;
    padding: 24px !important;
    gap: 24px !important;
  }
  .progress-demo-preview {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Top Bar & Contact Info Wrapping Fix */
  .top-bar-info {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  .top-bar-info a {
    display: inline-block;
    word-break: break-all;
  }
  .top-bar {
    display: none !important;
  }
  .top-bar.is-open {
    display: block !important;
  }
  .info-toggle {
    display: inline-block !important;
  }
  .nav-actions {
    display: flex !important;
    gap: 8px !important;
    align-items: center !important;
  }
}

