/* ==========================================================================
   ALFA ENTERPRISES - CONSTRUCTION & INTERIOR
   Modern Design System & Styling
   ========================================================================== */

:root {
  /* Color Palette matching banner */
  --navy-950: #050d1a;
  --navy-900: #0a192f;
  --navy-850: #0e223f;
  --navy-800: #132d54;
  --navy-700: #1b3d70;
  --blue-primary: #1d5cb0;
  --blue-bright: #2575fc;
  --blue-sky: #38bdf8;
  --gold-accent: #d4a34b;
  --gold-light: #f5cf7c;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --whatsapp: #25d366;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Shadows & Elevations */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 25, 47, 0.12);
  --shadow-lg: 0 16px 40px rgba(10, 25, 47, 0.18);
  --shadow-glow: 0 0 30px rgba(56, 189, 248, 0.25);
  --shadow-gold: 0 0 25px rgba(212, 163, 75, 0.3);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;
}

/* Reset & Base Setup */
*, *::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(--white);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button, input, select, textarea {
  font-family: inherit;
}

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

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-bar {
  background: linear-gradient(90deg, var(--navy-950) 0%, var(--navy-900) 100%);
  color: var(--gray-300);
  font-size: 0.85rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container {
  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: 20px;
  flex-wrap: wrap;
}

.gst-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 163, 75, 0.15);
  border: 1px solid rgba(212, 163, 75, 0.4);
  color: var(--gold-light);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 0.8rem;
}

.top-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gray-300);
}

.top-item svg {
  width: 14px;
  height: 14px;
  fill: var(--blue-sky);
  flex-shrink: 0;
}

.top-item a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* ==========================================================================
   MAIN NAVBAR
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(14, 34, 63, 0.08);
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
  padding: 4px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

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

.brand-logo img,
.brand-logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: none; /* Visible only when navbar is collapsed on mobile */
  align-items: center;
  justify-content: center;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.38rem;
  font-weight: 900;
  color: var(--navy-950);
  line-height: 1;
  letter-spacing: 1.2px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.brand-accent {
  color: var(--blue-primary);
  font-weight: 900;
}

.mobile-nav-item {
  display: none;
}

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

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

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-bright) 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(29, 92, 176, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(29, 92, 176, 0.45);
}

.btn-gold {
  background: linear-gradient(135deg, #c79035 0%, var(--gold-accent) 50%, #e6be6c 100%);
  color: var(--navy-950);
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(212, 163, 75, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 163, 75, 0.5);
  color: var(--navy-950);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

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

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background-color: var(--navy-900);
  margin: 5px 0;
  border-radius: 3px;
  transition: all var(--transition-fast);
}

/* ==========================================================================
   HERO BANNER SECTION (Exact Color Theme & Showcase)
   ========================================================================== */
.hero-banner {
  position: relative;
  background: radial-gradient(circle at 80% 20%, #15325b 0%, var(--navy-900) 50%, var(--navy-950) 100%);
  color: var(--white);
  padding: 60px 0 70px;
  overflow: hidden;
  border-bottom: 5px solid var(--gold-accent);
}

/* Background architectural grid lines */
.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* Hero Decorative Glows */
.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 117, 252, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  top: -100px;
  right: -50px;
  pointer-events: none;
}

.hero-banner-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  max-width: 560px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-sky);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero-title span.highlight {
  color: var(--gold-light);
  display: inline-block;
  text-shadow: 0 0 20px rgba(245, 207, 124, 0.3);
}

.hero-lead {
  font-size: 1.08rem;
  color: var(--gray-300);
  margin-bottom: 30px;
  line-height: 1.7;
}

/* ==========================================================================
   HERO SERVICES SHOWCASE (Checklist & Action Buttons)
   ========================================================================== */
.hero-services-showcase {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 5;
  padding: 10px 0;
}

.hero-bullets {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  margin-bottom: 32px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
}

.hero-bullet-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(37, 117, 252, 0.2);
  border: 1.5px solid var(--blue-sky);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-sky);
  font-size: 0.85rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 6px;
}

/* Bottom Strip in Banner Style */
.hero-bottom-strip {
  margin-top: 45px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 600;
}

.strip-item svg {
  width: 20px;
  height: 20px;
  fill: var(--gold-light);
  flex-shrink: 0;
}

.strip-item a {
  color: var(--white);
}

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

.strip-address {
  font-weight: 600;
  color: var(--gray-300);
}

/* ==========================================================================
   SERVICES SECTION (Banner Offerings)
   ========================================================================== */
.section {
  padding: 95px 0;
}

.section-bg-light {
  background-color: var(--gray-50);
}

.section-bg-navy {
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  color: var(--white);
}

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

.section-subtitle {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-primary);
  margin-bottom: 12px;
  background: rgba(29, 92, 176, 0.08);
  padding: 5px 14px;
  border-radius: var(--radius-full);
}

.section-bg-navy .section-subtitle {
  color: var(--gold-light);
  background: rgba(212, 163, 75, 0.15);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.2;
  margin-bottom: 16px;
}

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

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

.section-bg-navy .section-desc {
  color: var(--gray-300);
}

/* Service Cards Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(29, 92, 176, 0.25);
}

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

.service-icon-box {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(29, 92, 176, 0.1) 0%, rgba(37, 117, 252, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--blue-primary);
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon-box {
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--navy-800) 100%);
  color: var(--white);
  transform: scale(1.08);
}

.service-icon-box svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 14px;
}

.service-card-desc {
  color: var(--text-muted);
  font-size: 0.96rem;
  margin-bottom: 22px;
  flex-grow: 1;
}

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

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

.service-features-list li svg {
  width: 15px;
  height: 15px;
  fill: var(--blue-primary);
  flex-shrink: 0;
}

.service-card-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card-link:hover {
  color: var(--blue-bright);
  gap: 10px;
}

/* Testimonials */
.testimonial-card {
  display: flex;
  flex-direction: column;
}

.testimonial-rating {
  color: var(--gold-accent);
  font-size: 1.25rem;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.about-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 480px;
}

.about-floating-card {
  position: absolute;
  bottom: -30px;
  right: -25px;
  background: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 290px;
}

.about-exp-badge {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--blue-primary);
  line-height: 1;
}

.about-exp-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.3;
}

.about-content .section-subtitle {
  margin-bottom: 12px;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.about-lead {
  font-size: 1.08rem;
  color: var(--text-main);
  font-weight: 600;
  margin-bottom: 18px;
}

.about-text {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 28px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 35px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(29, 92, 176, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.about-feature-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.about-feature-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* ==========================================================================
   STATS COUNTER BAR
   ========================================================================== */
.stats-strip {
  background: linear-gradient(90deg, var(--navy-950) 0%, var(--navy-900) 50%, var(--navy-850) 100%);
  color: var(--white);
  padding: 55px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.stat-item {
  padding: 15px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   PROJECT SHOWCASE / PORTFOLIO
   ========================================================================== */
.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.filter-btn {
  background: var(--white);
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
  padding: 9px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 30px;
}

.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.project-img-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
  background-color: var(--navy-900);
}

.project-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.project-card:hover .project-img-wrapper img {
  transform: scale(1.08);
}

.project-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(10, 25, 47, 0.85);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

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

.project-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.project-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  flex-grow: 1;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
  font-size: 0.84rem;
  color: var(--gray-600);
  font-weight: 600;
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 34px 26px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--gold-accent);
  transform: translateY(-6px);
}

.why-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(212, 163, 75, 0.15);
  border: 1px solid rgba(212, 163, 75, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.why-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.why-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.why-desc {
  font-size: 0.92rem;
  color: var(--gray-300);
  line-height: 1.6;
}

/* ==========================================================================
   CONTACT SECTION & INTERACTIVE FORM
   ========================================================================== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 50px;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.contact-info-panel {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 50%, var(--navy-850) 100%);
  color: var(--white);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.contact-info-panel::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
}

.contact-info-header h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.contact-info-header p {
  color: var(--gray-300);
  font-size: 0.95rem;
  margin-bottom: 35px;
}

.contact-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

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

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-sky);
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-detail-content span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 3px;
}

.contact-detail-content a, .contact-detail-content p {
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 600;
}

.contact-detail-content a:hover {
  color: var(--blue-sky);
  text-decoration: underline;
}

.gst-verified-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(212, 163, 75, 0.5);
  padding: 16px 20px;
  border-radius: var(--radius-md);
}

.gst-verified-box .title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.gst-verified-box .code {
  font-family: monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

/* Contact Form */
.contact-form-panel {
  padding: 48px 45px;
}

.contact-form-panel h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.contact-form-panel p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 20px;
}

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

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 7px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-main);
  background-color: var(--gray-50);
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--blue-primary);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(29, 92, 176, 0.12);
}

textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

.form-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.form-feedback {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-top: 18px;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-feedback.success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-feedback.error {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Map Embed */
.map-container {
  margin-top: 50px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  height: 340px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--navy-950);
  color: var(--gray-400);
  padding: 70px 0 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-brand img {
  height: 54px;
  width: auto;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--gray-400);
  margin-bottom: 22px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold-accent);
}

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

.footer-links li a {
  font-size: 0.9rem;
  color: var(--gray-400);
  transition: all var(--transition-fast);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: var(--gray-300);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--blue-sky);
  flex-shrink: 0;
  margin-top: 3px;
}

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

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

/* ==========================================================================
   FLOATING ACTION BUTTONS (WhatsApp & Phone)
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: all var(--transition-fast);
  color: var(--white);
}

.float-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.float-btn.whatsapp {
  background-color: var(--whatsapp);
  animation: pulse-green 2s infinite;
}

.float-btn.call {
  background: var(--blue-primary);
}

.float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  z-index: 998;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--blue-primary);
  transform: translateY(-4px);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1080px) {
  .hero-banner-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-bullets {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual-showcase {
    justify-content: center;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-floating-card {
    right: 20px;
  }
}

@media (max-width: 768px) {
  .top-bar-left, .top-bar-right {
    justify-content: center;
    width: 100%;
  }

  .nav-links {
    position: fixed;
    top: 78px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 78px);
    background: var(--white);
    flex-direction: column;
    padding: 35px 25px;
    gap: 20px;
    transition: left var(--transition-normal);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }

  .nav-links.active {
    left: 0;
  }

  .mobile-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-actions .btn,
  .desktop-only-btn {
    display: none !important;
  }

  .mobile-nav-item {
    display: block !important;
    width: 100%;
    margin-top: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
  }

  .mobile-nav-whatsapp {
    width: 100%;
    padding: 13px 20px;
    font-size: 1rem;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .navbar .container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .brand-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
  }

  .brand-logo-img {
    height: 40px;
    width: auto;
    display: block;
  }

  .brand-text {
    display: flex !important;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    z-index: 10;
  }

  .brand-title {
    font-size: clamp(0.95rem, 3.8vw, 1.22rem);
    font-weight: 900;
    letter-spacing: 0.6px;
    white-space: nowrap;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    margin-left: auto;
  }

  .mobile-toggle {
    position: static;
    transform: none;
    margin-left: auto;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-bottom-strip {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .navbar .container {
    padding: 0 16px;
  }

  .brand-logo-img {
    height: 35px;
  }

  .brand-title {
    font-size: clamp(0.85rem, 3.5vw, 1.02rem);
    letter-spacing: 0.3px;
  }

  .mobile-toggle {
    margin-left: auto;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-bullets {
    grid-template-columns: 1fr;
  }

  .contact-info-panel, .contact-form-panel {
    padding: 30px 20px;
  }
}
