/* Premium Theme CSS for Ellappa Constructions - Modern Typography & Responsive Layout System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap');

:root {
  --primary-blue: #1D4F91;
  --primary-green: #00964A;
  --color-charcoal: #0F172A;
  --color-emerald: #00964A;
  --color-emerald-hover: #007A3C;
  --color-gold: #00964A; /* Retained alias for backward compatibility */
  --color-gold-accent: #D4AF37;
  
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --text-dark: #0F172A;
  --text-muted: #475569;
  
  --radius-outer: 1.25rem;
  --radius-card: 16px;
  --radius-inner: 12px;
  --radius-btn: 8px; /* Refined architectural button curvature */
  
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.05);
  --shadow-hover: 0 20px 40px rgba(15, 23, 42, 0.12);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: 1px solid rgba(255, 255, 255, 0.25);
  
  --transition-bezier: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-duration: 0.4s;

  --font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.7;
  font-size: 1rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Accessible Focus Ring */
:focus-visible {
  outline: 3px solid #00964A !important;
  outline-offset: 3px !important;
}

/* Headings Font Family & Colors */
h1, h2, h3, h4, h5, h6, 
.elementor-heading-title, 
.tme-heading, 
.sec-title h2,
.title {
  font-family: var(--font-heading);
  color: var(--color-charcoal);
  letter-spacing: -0.025em;
  font-weight: 700;
}

/* Paragraph Max Width Constraint (Max 680px) */
p {
  color: var(--text-muted);
  font-family: var(--font-body);
  max-width: 680px;
}

.premium-card-core p,
.services-block p,
.project-block p,
.team-block p,
.testimonial-block p,
.footer-widget p,
.sidebar-widget p,
.nav p,
.full-width-p,
.service-details p,
.project-details p {
  max-width: 100%;
}

.sec-title,
.section-header,
.content-max-720,
.hero-content,
.slider-one-sec .content {
  max-width: 720px;
}

/* Eyebrow Tag - WCAG AA Contrast Compliant */
.eyebrow-tag,
.sec-title .sub-title,
.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 99px;
  padding: 0.35rem 1rem;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background-color: rgba(0, 150, 74, 0.1);
  color: #007A3C;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 150, 74, 0.2);
}

/* Architectural Buttons */
button, .theme-btn, .btn, .elementor-button, .tme-btn-md, .thm-btn {
  border-radius: var(--radius-btn);
  background-color: var(--primary-green);
  color: white !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  padding: 0.9rem 2rem;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.3s var(--transition-bezier);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  box-shadow: 0 4px 14px rgba(0, 150, 74, 0.25);
  cursor: pointer;
}

button:hover, .theme-btn:hover, .btn:hover, .elementor-button:hover, .tme-btn-md:hover, .thm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 150, 74, 0.4);
  background-color: var(--color-emerald-hover);
  color: white !important;
}

.btn-secondary-custom {
  background-color: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  color: white !important;
  box-shadow: none !important;
}

.btn-secondary-custom:hover {
  background-color: white !important;
  color: var(--color-charcoal) !important;
  transform: translateY(-2px);
}

/* Section Spacing — global reset, use .sec-pad class for specific sections */
section {
  padding-top: 0;
  padding-bottom: 0;
}

.hero-2026 {
  padding-top: 120px !important;
  padding-bottom: 120px !important;
}

/* Typography Hierarchy */
h1, .hero-h1 {
  font-family: var(--font-heading) !important;
  font-size: 60px !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
}

h2, .section-title {
  font-family: var(--font-heading) !important;
  font-size: 44px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

/* Responsive Rules */
@media (max-width: 991px) and (min-width: 768px) {
  h1, .hero-h1 { font-size: 46px !important; }
  h2, .section-title { font-size: 34px !important; }
}

@media (max-width: 767px) {
  h1, .hero-h1 { font-size: 36px !important; }
  h2, .section-title { font-size: 28px !important; }
  section { padding-top: 60px !important; padding-bottom: 60px !important; }
}

/* Card Shell */
.premium-card-2026 {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

.premium-card-2026:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

/* Hero 2026 Overlay */
.hero-2026 {
  position: relative;
  min-height: 85vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: white;
  padding: 140px 0 100px 0;
}

.hero-2026::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.6) 100%);
  z-index: 1;
}

.hero-2026 .container {
  position: relative;
  z-index: 2;
}

/* Trust Stats */
.trust-stats-sec {
  background: white;
  margin-top: -50px;
  position: relative;
  z-index: 10;
  border-radius: var(--radius-card);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.counter-card {
  text-align: center;
  padding: 2rem 1rem;
}

.counter-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1.1;
}

.counter-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.3rem;
}

/* Construction Timeline */
.process-timeline-2026 {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.timeline-step {
  flex: 1;
  min-width: 140px;
  background: white;
  padding: 1.5rem 1rem;
  border-radius: 16px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,0.04);
}

.timeline-step .step-number {
  width: 40px;
  height: 40px;
  background: var(--color-gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 0.75rem auto;
}

/* Before & After Interactive Slider */
.ba-slider-container {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.ba-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
}

.ba-after-img {
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.ba-slider-range {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
}

.ba-handle {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 4px;
  background: white;
  z-index: 5;
  pointer-events: none;
}

.ba-handle::after {
  content: '↔';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  background: var(--color-gold);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: bold;
}

/* Certifications Marquee */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  padding: 1.5rem 0;
  background: white;
  border-radius: var(--radius-card);
}

.marquee-content {
  display: inline-flex;
  gap: 3rem;
  animation: marquee 25s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-light);
  padding: 0.75rem 1.5rem;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-charcoal);
}

/* FAQ Accordion */
.faq-accordion-item {
  background: white;
  border-radius: 16px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-charcoal) !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-accordion-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem 1.5rem;
}

.faq-accordion-item.active .faq-icon {
  transform: rotate(180deg);
}

/* WhatsApp float & mobile CTA defined below in dedicated section */

/* ========================================================================
   RESPONSIVE HEADER STYLES (Desktop, Tablet, Mobile)
   ======================================================================== */
.site-header {
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  padding: 15px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.logo a {
  display: inline-block;
}

.logo img {
  max-height: 70px;
  width: auto;
  max-width: 100%;
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav ul li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-nav ul li a {
  text-decoration: none;
  color: var(--color-charcoal, #1F2937);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  transition: color 0.3s ease;
  padding: 10px 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold, #00964A);
  transition: width 0.3s ease;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: var(--color-gold, #00964A);
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
  width: 100%;
}

/* ==========================================================================
   2026 ENTERPRISE DROPDOWN NAVIGATION STYLES
   ========================================================================== */

.main-nav ul li.has-dropdown {
  position: relative;
}

.main-nav ul li.has-dropdown > a .dropdown-arrow {
  font-size: 11px;
  transition: transform 0.3s ease;
  margin-top: 1px;
}

.main-nav ul li.has-dropdown:hover > a .dropdown-arrow {
  transform: rotate(180deg);
}

.main-nav ul li .dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  min-width: 230px;
  background: #ffffff;
  border-radius: 12px;
  padding: 8px 0;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15), 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(226, 232, 240, 0.8);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
  margin: 0;
}

.main-nav ul li.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 15px;
  display: block;
}

.main-nav ul li.has-dropdown:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}

.main-nav ul li .dropdown-menu-custom li {
  width: 100%;
  margin: 0;
  padding: 0;
}

.main-nav ul li .dropdown-menu-custom li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 14.5px;
  font-weight: 600;
  color: #334155;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.main-nav ul li .dropdown-menu-custom li a::after {
  display: none !important;
}

.main-nav ul li .dropdown-menu-custom li a:hover,
.main-nav ul li .dropdown-menu-custom li a.active {
  background-color: rgba(0, 150, 74, 0.06);
  color: #00964A;
  padding-left: 24px;
}

.main-nav ul li .dropdown-menu-custom li a i {
  font-size: 12px;
  color: #94A3B8;
  transition: color 0.2s ease;
}

.main-nav ul li .dropdown-menu-custom li a:hover i,
.main-nav ul li .dropdown-menu-custom li a.active i {
  color: #00964A;
}

/* Mobile Dropdown Navigation */
.mobile-nav ul li.has-dropdown-mobile {
  position: relative;
}

.mobile-nav ul li.has-dropdown-mobile > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav ul li.has-dropdown-mobile > a .dropdown-arrow-mobile {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.mobile-nav ul li.has-dropdown-mobile.open > a .dropdown-arrow-mobile {
  transform: rotate(180deg);
}

.mobile-nav .dropdown-menu-mobile {
  display: none;
  list-style: none;
  padding: 5px 0 5px 12px;
  margin: 5px 0 0 0;
  border-left: 2px solid rgba(0, 150, 74, 0.25);
}

.mobile-nav ul li.has-dropdown-mobile.open .dropdown-menu-mobile {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav .dropdown-menu-mobile li {
  border-bottom: none !important;
}

.mobile-nav .dropdown-menu-mobile li a {
  font-size: 15px;
  font-weight: 500;
  color: #475569;
  padding: 8px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-nav .dropdown-menu-mobile li a:hover,
.mobile-nav .dropdown-menu-mobile li a.active {
  color: #00964A;
  background: rgba(0, 150, 74, 0.08);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1002;
}

.nav-toggle .hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-charcoal, #1F2937);
  position: relative;
  transition: all 0.3s;
}

.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 3px;
  background-color: var(--color-charcoal, #1F2937);
  left: 0;
  transition: all 0.3s;
}

.nav-toggle .hamburger::before { top: -8px; }
.nav-toggle .hamburger::after { top: 8px; }

.nav-toggle[aria-expanded="true"] .hamburger { background-color: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
  padding: 90px 30px 40px;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1001;
  overflow-y: auto;
}

.mobile-nav[aria-hidden="false"] {
  right: 0;
}

.mobile-nav nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav nav ul li {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav nav ul li:last-child {
  border-bottom: none;
}

.mobile-nav nav ul li a {
  display: block;
  text-decoration: none;
  color: var(--color-charcoal, #1F2937);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  padding: 12px 0;
  transition: color 0.3s, transform 0.3s;
}

.mobile-nav nav ul li a:hover {
  color: var(--color-gold, #00964A);
  transform: translateX(5px);
}

/* Tablet & Mobile Media Queries */
@media (max-width: 991px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  
  .header-container .d-none.d-lg-block {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .logo img {
    max-height: 55px;
  }
  .site-header {
    padding: 10px 0;
  }
}
.text-theme { color: var(--color-gold) !important; }
/* Premium Horizontal Service Card */
.premium-service-horizontal {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  border: 1px solid rgba(0,0,0,0.04);
}
.premium-service-horizontal:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  border-color: var(--color-gold);
}
.premium-service-horizontal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 250px;
  transition: transform 0.6s ease;
}
.premium-service-horizontal:hover img {
  transform: scale(1.08);
}
.premium-service-horizontal .img-wrap {
  overflow: hidden;
  height: 100%;
}

/* ========================================================================
   2026 BENTO GRID LAYOUT SYSTEM
   ======================================================================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.bento-card {
  background: #ffffff;
  border-radius: var(--radius-card);
  padding: 2.25rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-soft);
  transition: all 0.4s var(--transition-bezier);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 150, 74, 0.3);
}

.bento-card-col-8 { grid-column: span 8; }
.bento-card-col-6 { grid-column: span 6; }
.bento-card-col-4 { grid-column: span 4; }
.bento-card-col-3 { grid-column: span 3; }

@media (max-width: 991px) {
  .bento-card-col-8, .bento-card-col-6, .bento-card-col-4, .bento-card-col-3 {
    grid-column: span 12;
  }
}

.bento-card-hero {
  background: linear-gradient(145deg, #0F172A 0%, #1E293B 100%);
  color: #ffffff;
}

.bento-card-hero h3, .bento-card-hero h4 {
  color: #ffffff !important;
}

.bento-card-hero p {
  color: #94A3B8 !important;
}

/* Glassmorphism Panel */
.glass-panel {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* ========================================================================
   2026 AI CONSTRUCTION COST & MATERIAL ESTIMATOR WIDGET
   ======================================================================== */
.ai-estimator-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
  position: relative;
}

.estimator-input-group label {
  font-weight: 700;
  color: var(--color-charcoal);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  display: block;
}

.ai-slider {
  width: 100%;
  accent-color: #00964A;
  height: 8px;
  border-radius: 4px;
  background: #E2E8F0;
}

.estimator-result-card {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.estimator-big-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #22C55E;
  line-height: 1.1;
}

.spec-chip {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 0.75rem;
}

.spec-chip-label {
  font-size: 0.8rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spec-chip-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
}

/* Trust Badges Marquee & Grid */
.trust-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  padding: 0.6rem 1.2rem;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-charcoal);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* ==========================================================================
   2026 ENTERPRISE CONSTRUCTION FOOTER STYLES
   ========================================================================== */
.site-footer-2026 {
  background-color: #0B1120;
  color: #94A3B8;
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--color-emerald);
}

.footer-top-banner {
  background: linear-gradient(135deg, #0F172A 0%, #042E18 100%);
  border-radius: 16px;
  border: 1px solid rgba(0, 150, 74, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.footer-widget-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--color-emerald);
  border-radius: 2px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 0.65rem;
}

.footer-links-list a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s var(--transition-bezier);
}

.footer-links-list a i {
  font-size: 0.75rem;
  color: var(--color-emerald);
  transition: transform 0.25s ease;
}

.footer-links-list a:hover {
  color: #34D399;
  transform: translateX(4px);
}

.footer-links-list a:hover i {
  transform: translateX(3px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 10px;
  background: rgba(0, 150, 74, 0.15);
  color: #34D399;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.footer-contact-text {
  font-size: 0.9rem;
  color: #CBD5E1;
  line-height: 1.5;
}

.footer-contact-text strong {
  color: #FFFFFF;
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-btn:hover {
  background: var(--color-emerald);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 150, 74, 0.4);
}

.footer-badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.8rem;
  color: #CBD5E1;
  font-weight: 500;
}

.footer-bottom-bar {
  background-color: #070B14;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: #64748B;
}

.footer-bottom-bar a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-bar a:hover {
  color: #34D399;
}

/* ==========================================================================
   2026 ARCHITECTURAL SPECIFICATION PANEL MODULE (Sobha / Prestige / L&T Spec)
   ========================================================================== */
.arch-spec-section {
  background-color: #F8FAFC;
  background-image: 
    linear-gradient(to right, rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  position: relative;
  overflow: hidden;
}

.arch-spec-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 30%, rgba(0, 150, 74, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.arch-spec-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.arch-spec-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
  border-color: #CBD5E1;
}

.arch-spec-card.popular-spec-card {
  border: 2px solid #00964A;
  box-shadow: 0 20px 50px rgba(0, 150, 74, 0.15);
  background: linear-gradient(180deg, #FFFFFF 0%, #F4FBF7 100%);
  transform: scale(1.02);
}

.arch-spec-card.popular-spec-card:hover {
  transform: scale(1.02) translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 150, 74, 0.22);
}

.arch-badge-floating {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.arch-badge-popular {
  background: linear-gradient(135deg, #00964A 0%, #059669 100%);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.arch-card-header-img {
  height: 220px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #E2E8F0;
}

.arch-card-header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.arch-spec-card:hover .arch-card-header-img img {
  transform: scale(1.08);
}

.arch-card-header-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, transparent 100%);
  color: #FFFFFF;
}

.arch-price-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.arch-spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 1rem;
}

.spec-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px dashed #E2E8F0;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}

.spec-item-row:nth-child(even) {
  background-color: #F8FAFC;
}

.spec-item-row:hover {
  background-color: #F1F5F9;
}

.spec-label {
  color: #64748B;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}



.arch-card-header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.arch-spec-card:hover .arch-card-header-img img {
  transform: scale(1.08);
}

.arch-card-header-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, transparent 100%);
  color: #FFFFFF;
}

.arch-price-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.arch-spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 1rem;
}

.spec-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px dashed #E2E8F0;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}

.spec-item-row:nth-child(even) {
  background-color: #F8FAFC;
}

.spec-item-row:hover {
  background-color: #F1F5F9;
}

.spec-label {
  color: #64748B;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.spec-val {
  color: #0F172A;
  font-weight: 700;
  text-align: right;
  font-family: var(--font-heading);
}

.spec-brand-tag {
  background: #F1F5F9;
  color: #0F172A;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid #CBD5E1;
  text-transform: uppercase;
}

.arch-quality-bar-wrap {
  background: #E2E8F0;
  border-radius: 10px;
  height: 8px;
  overflow: hidden;
  margin-top: 6px;
}

.arch-quality-bar-fill {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, #00964A 0%, #10B981 100%);
  transition: width 1s ease-in-out;
}

.arch-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-family: var(--font-heading);
  text-decoration: none;
  transition: all 0.3s ease;
}

.arch-cta-btn-primary {
  background: #00964A;
  color: #FFFFFF;
  box-shadow: 0 10px 25px rgba(0, 150, 74, 0.25);
}

.arch-cta-btn-primary:hover {
  background: #007D3E;
  color: #FFFFFF;
  box-shadow: 0 15px 35px rgba(0, 150, 74, 0.35);
  transform: translateY(-2px);
}

.arch-cta-btn-outline {
  border: 2px solid #0F172A;
  color: #0F172A;
  background: transparent;
}

.arch-cta-btn-outline:hover {
  background: #0F172A;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.arch-cta-btn-gold {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #FFFFFF;
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.25);
}

.arch-cta-btn-gold:hover {
  background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(217, 119, 6, 0.35);
}

/* ==========================================================================
   2026 ARCHITECTURAL SPECIFICATION CATALOGUE (SOBHA / PRESTIGE LEVEL)
   ========================================================================== */
.catalogue-card-2026 {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: visible !important;
}

.catalogue-card-2026:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
  border-color: #CBD5E1;
}

.catalogue-card-featured {
  border: 2px solid #16A34A;
  box-shadow: 0 25px 60px rgba(22, 163, 74, 0.16);
  background: linear-gradient(180deg, #FFFFFF 0%, #F4FDF7 100%);
  transform: translateY(-10px);
}

.catalogue-card-featured:hover {
  transform: translateY(-16px);
  box-shadow: 0 35px 75px rgba(22, 163, 74, 0.22);
}

.catalogue-badge-popular {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: linear-gradient(135deg, #16A34A 0%, #059669 100%);
  color: #FFFFFF !important;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 8px 22px;
  border-radius: 30px;
  box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
  border: 2px solid #FFFFFF;
  white-space: nowrap;
}

.catalogue-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.catalogue-cta-dark {
  background: #0F172A;
  color: #FFFFFF !important;
  border: 1px solid #0F172A;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

.catalogue-cta-dark:hover {
  background: #1E293B;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.25);
}

.catalogue-cta-green {
  background: #16A34A;
  color: #FFFFFF !important;
  border: 1px solid #16A34A;
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.3);
}

.catalogue-cta-green:hover {
  background: #15803D;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(22, 163, 74, 0.4);
}

.catalogue-cta-gold {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #FFFFFF !important;
  border: none;
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
}

.catalogue-cta-gold:hover {
  background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(217, 119, 6, 0.4);
}

.spec-category-row {
  padding: 14px 0;
  border-bottom: 1px solid #F1F5F9;
  transition: background 0.2s ease;
}

.spec-category-row:last-child {
  border-bottom: none;
}

.spec-category-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #0F766E;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.spec-category-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   RAMCO HILUX STYLE DUAL VERTICAL MARQUEE TESTIMONIAL SHOWCASE
   ========================================================================== */
.hilux-testi-section {
  background-color: #FAFBC;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

.hilux-testi-wrapper {
  display: flex;
  gap: 20px;
  max-height: 540px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 40px, #000 calc(100% - 40px), transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 40px, #000 calc(100% - 40px), transparent 100%);
}

.hilux-testi-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
  animation: hiluxScrollUp 18s linear infinite;
  will-change: transform;
}

.hilux-testi-col-down {
  animation: hiluxScrollDown 18s linear infinite;
  will-change: transform;
}

.hilux-testi-col:hover {
  animation-play-state: paused;
}

@keyframes hiluxScrollUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes hiluxScrollDown {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

.hilux-testi-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hilux-testi-card:hover {
  background: #FFFFFF;
  border-color: #00964A;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 150, 74, 0.12);
}

.hilux-testi-stars {
  color: #F59E0B;
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: flex;
  gap: 4px;
}

.hilux-testi-text {
  color: #334155;
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 18px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
}

.hilux-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hilux-testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00964A 0%, #059669 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.95rem;
  font-family: 'Manrope', sans-serif;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 150, 74, 0.2);
}

.hilux-testi-avatar-blue {
  background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.2);
}

.hilux-testi-avatar-amber {
  background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
  box-shadow: 0 4px 10px rgba(217, 119, 6, 0.2);
}

.hilux-testi-avatar-purple {
  background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
  box-shadow: 0 4px 10px rgba(124, 58, 237, 0.2);
}

.hilux-testi-name {
  color: #0F172A;
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0;
  font-family: 'Manrope', sans-serif;
}

.hilux-testi-role {
  color: #00964A;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 991px) {
  .hilux-testi-wrapper {
    max-height: 480px;
    flex-direction: column;
  }
  .hilux-testi-col {
    width: 100%;
  }
}

/* ==========================================================================
   2026 INDUSTRY-STANDARD FAQ ARCHITECTURE & INTERACTIVE ACCORDION MATRIX
   ========================================================================== */
.faq-2026-section {
  background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  border-top: 1px solid #E2E8F0;
}

.faq-sidebar-box {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  padding: 32px;
  position: sticky;
  top: 100px;
}

.faq-tab-pill {
  width: 100%;
  text-align: left;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  color: #334155;
  font-family: 'Manrope', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.faq-tab-pill:hover {
  border-color: #00964A;
  color: #00964A;
  background: #F4FDF7;
  transform: translateX(4px);
}

.faq-tab-pill.active {
  background: #0F172A;
  border-color: #0F172A;
  color: #FFFFFF !important;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

.faq-tab-pill.active i {
  color: #00964A !important;
}

.faq-card-2026 {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 24px 28px;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-card-2026:hover {
  border-color: #CBD5E1;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.faq-card-2026.active {
  border-color: #00964A;
  box-shadow: 0 12px 35px rgba(0, 150, 74, 0.08);
  background: #FFFFFF;
}

.faq-header-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.faq-question-text {
  font-family: 'Manrope', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
  line-height: 1.45;
  transition: color 0.25s ease;
}

.faq-card-2026.active .faq-question-text {
  color: #00964A;
}

.faq-toggle-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F1F5F9;
  color: #0F172A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-card-2026.active .faq-toggle-icon {
  background: #00964A;
  color: #FFFFFF;
  transform: rotate(45deg);
}

.faq-body-drawer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-card-2026.active .faq-body-drawer {
  max-height: 400px;
  opacity: 1;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #F1F5F9;
}

.faq-answer-content {
  color: #334155;
  font-family: 'Inter', sans-serif;
  font-size: 0.96rem;
  line-height: 1.7;
  margin: 0;
}

.faq-category-tag {
  display: inline-block;
  background: rgba(0, 150, 74, 0.08);
  color: #00964A;
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
}

/* ==========================================================================
   COMPLETED PROJECTS 2026 SHOWCASE & IMPACT STATS
   ========================================================================== */
.completed-projects-hero {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.completed-projects-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(circle at 80% 20%, rgba(0, 150, 74, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.impact-stat-title {
  font-family: 'Manrope', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: #F59E0B;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1;
}

.impact-stat-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #1E293B;
  margin-top: 8px;
}

.location-list-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.location-item-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  transition: all 0.2s ease;
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1E293B;
}

.location-item-row:hover {
  background: #F1F5F9;
  transform: translateX(4px);
}

.loc-dot-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #F59E0B;
  border: 3px solid #FDE68A;
  box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.3);
  flex-shrink: 0;
}

.portfolio-card-2026 {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.portfolio-card-2026:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  border-color: #00964A;
}

.portfolio-img-box {
  position: relative;
  height: 270px;
  overflow: hidden;
  background: #0F172A;
}

.portfolio-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card-2026:hover .portfolio-img-box img {
  transform: scale(1.08);
}

.portfolio-overlay-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 150, 74, 0.9);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 150, 74, 0.4);
}

.portfolio-card-2026:hover .portfolio-overlay-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.portfolio-content-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-location-tag {
  color: #00964A;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: 'Manrope', sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.portfolio-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 10px;
  line-height: 1.4;
}

.portfolio-spec-chip {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.82rem;
  color: #475569;
  font-family: 'Inter', sans-serif;
  margin-top: auto;
}

/* ==========================================================================
   SECTION PADDING — used on all <section class="sec-pad"> elements
   ========================================================================== */
.sec-pad {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

@media (max-width: 767px) {
  .sec-pad {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}

/* ==========================================================================
   ULTRA-CLEAN, SIMPLE & PROFESSIONAL FAQ ACCORDION
   ========================================================================== */
.clean-faq-sec {
  background-color: #FFFFFF;
  padding: 60px 0;
  border-top: 1px solid #F1F5F9;
  border-bottom: 1px solid #F1F5F9;
}

.clean-faq-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

.clean-faq-item {
  border-bottom: 1px solid #E2E8F0 !important;
  padding: 22px 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: border-color 0.25s ease;
}

.clean-faq-item:first-child {
  border-top: 1px solid #E2E8F0 !important;
}

.clean-faq-btn {
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  text-align: left !important;
  cursor: pointer !important;
  outline: none !important;
  box-shadow: none !important;
}

.clean-faq-qtext {
  font-family: 'Manrope', sans-serif !important;
  font-size: 1.08rem !important;
  font-weight: 700 !important;
  color: #0F172A !important;
  margin: 0 !important;
  line-height: 1.45 !important;
  background: transparent !important;
  transition: color 0.25s ease !important;
}

.clean-faq-btn:hover .clean-faq-qtext,
.clean-faq-item.active .clean-faq-qtext {
  color: #00964A !important;
  background: transparent !important;
}

.clean-faq-icon {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: #F8FAFC !important;
  color: #64748B !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.85rem !important;
  flex-shrink: 0 !important;
  margin-left: 16px !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.clean-faq-btn:hover .clean-faq-icon {
  background: #E2E8F0 !important;
  color: #0F172A !important;
}

.clean-faq-item.active .clean-faq-icon {
  background: #00964A !important;
  color: #FFFFFF !important;
  transform: rotate(180deg) !important;
}

.clean-faq-drawer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent !important;
}

.clean-faq-item.active .clean-faq-drawer {
  max-height: 350px;
  opacity: 1;
  margin-top: 14px;
}

.clean-faq-atext {
  color: #475569 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.98rem !important;
  line-height: 1.75 !important;
  margin: 0 !important;
  background: transparent !important;
}

/* ==========================================================================
   GLOBAL VIEWPORT OVERFLOW RESET (FIXES WHITE GAP ON RIGHT SIDE)
   ========================================================================== */
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background-color: #0B1120 !important;
}

.page-wrapper {
  overflow: hidden !important;
  width: 100% !important;
  position: relative !important;
}

/* ==========================================================================
   FOOTER SERVICE ZONE CHIPS & RICH CONTACT CARDS
   ========================================================================== */

.footer-tag-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  margin-top: 10px !important;
}

.footer-zone-tag {
  display: inline-block !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #CBD5E1 !important;
  font-size: 0.78rem !important;
  font-family: 'Inter', sans-serif !important;
  padding: 4px 10px !important;
  border-radius: 6px !important;
  transition: all 0.25s ease !important;
}

.footer-zone-tag:hover {
  background: rgba(0, 150, 74, 0.25) !important;
  border-color: #00964A !important;
  color: #FFFFFF !important;
}

.footer-contact-card {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
}

.bg-slate-900 { background-color: #0F172A !important; }
.border-slate-800 { border-color: #1E293B !important; }
.text-slate-200 { color: #E2E8F0 !important; }
.text-slate-300 { color: #CBD5E1 !important; }
.text-slate-400 { color: #94A3B8 !important; }

/* ==========================================================================
   FLOATING WHATSAPP CTA BUTTON & MOBILE ACTION BAR
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  width: 54px;
  height: 54px;
  bottom: 24px;
  right: 24px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  color: #FFF;
  transform: scale(1.1);
}

.mobile-bottom-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: #0F172A;
  padding: 10px 14px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  gap: 10px;
}

@media (max-width: 767px) {
  .mobile-bottom-cta {
    display: flex;
  }
  .whatsapp-float {
    bottom: 75px;
    right: 16px;
    width: 46px;
    height: 46px;
  }
}

/* ==========================================================================
   FULL-WIDTH HERO IMAGE SLIDER (NO SIDE BARS)
   ========================================================================== */
#hero-fullwidth-wrap {
  width: 100%;
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  overflow: hidden;
  background: #fff !important;
  line-height: 0; /* remove bottom gap under img */
}

#hero-fullwidth-wrap .carousel,
#hero-fullwidth-wrap .carousel-inner {
  width: 100%;
  background: #fff !important;
  overflow: hidden;
  line-height: 0;
}

/* The hero image — shows the full 21:9 banner at natural size */
.hero-banner-img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  display: block !important;
  object-fit: unset !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0;
}

/* Responsive homepage hero: preserve both purpose-designed artworks in full. */
#hero-section .hero-banner-picture {
  display: block;
  width: 100%;
  line-height: 0;
}

#hero-section > .hero-banner-picture > .hero-banner-img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: none !important;
  object-fit: contain !important;
  margin: 0 !important;
  padding: 0 !important;
}

@media (max-width: 767.98px) {
  #hero-section > .hero-banner-picture > .hero-banner-img {
    aspect-ratio: 1073 / 1600;
  }
}

@media (min-width: 768px) {
  #hero-section > .hero-banner-picture > .hero-banner-img {
    aspect-ratio: 1877 / 838;
  }
}


.hero-slide-item {
  min-height: 640px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
}

.hero-slide-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.72) 0%, rgba(15, 23, 42, 0.88) 100%);
  z-index: 1;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
}

.hero-h1 {
  font-family: 'Manrope', sans-serif !important;
  font-weight: 800 !important;
  font-size: clamp(2.3rem, 4.5vw, 3.5rem) !important;
  line-height: 1.2 !important;
  color: #FFFFFF !important;
  letter-spacing: -0.5px;
}

.hero-description {
  font-family: 'Inter', sans-serif !important;
  font-size: clamp(1rem, 2vw, 1.15rem) !important;
  line-height: 1.7 !important;
  color: #CBD5E1 !important;
  max-width: 660px;
}

.glass-trust-card {
  background: rgba(15, 23, 42, 0.75) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 20px !important;
  padding: 28px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4) !important;
}

.carousel-control-prev,
.carousel-control-next {
  width: 54px !important;
  height: 54px !important;
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 50% !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  opacity: 0.85 !important;
  transition: all 0.3s ease !important;
}

.carousel-control-prev { left: 25px !important; }
.carousel-control-next { right: 25px !important; }

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: #00964A !important;
  border-color: #00964A !important;
  opacity: 1 !important;
  transform: translateY(-50%) scale(1.1) !important;
}

.carousel-indicators [data-bs-target] {
  width: 32px !important;
  height: 6px !important;
  border-radius: 4px !important;
  background-color: rgba(255, 255, 255, 0.4) !important;
  border: none !important;
  margin: 0 5px !important;
  transition: all 0.3s ease !important;
}

.carousel-indicators .active {
  width: 48px !important;
  background-color: #00964A !important;
}

@media (max-width: 991px) {
  .hero-slide-item {
    min-height: 560px;
    padding: 70px 0 60px;
  }
  .carousel-control-prev,
  .carousel-control-next {
    display: none !important;
  }
}

@media (max-width: 575px) {
  .hero-slide-item {
    min-height: 500px;
    padding: 50px 0 50px;
  }
  .glass-trust-card {
    padding: 20px !important;
  }
}

/* ==============================================================
   HERO SLIDER - PRODUCTION 2026 EDGE-TO-EDGE 21:9 IMPLEMENTATION
   --------------------------------------------------------------
   - Zero colored side panels, zero dark overlays, zero gradients.
   - Clean 100% full width banner artwork.
   - Desktop height: 820px-900px | Laptop: 720px | Tablet: 600px | Mobile: 480px.
   ============================================================== */

body, .page-wrapper {
  background-color: #ffffff !important;
  overflow-x: hidden;
}

#hero-section,
#hero-section .carousel,
#hero-section .carousel-inner,
#hero-section .carousel-item {
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
  background: transparent !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  /* Let the 21:9 image define the height — no fixed height */
  height: auto !important;
  min-height: unset !important;
  max-height: none !important;
}

/* Remove all overlay pseudo-elements completely */
#hero-section::before,
#hero-section::after,
#hero-section .carousel-item::before,
#hero-section .carousel-item::after,
#hero-section .carousel-inner::before,
#hero-section .carousel-inner::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

/* No fixed heights — the 21:9 image aspect ratio defines the section height naturally */


/* Hero Image — display full 21:9 banner at 100% width, no cropping */
#hero-section .carousel-item img.hero-banner-img {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  display: block !important;
  object-fit: unset !important;
  margin: 0 !important;
  border: 0 !important;
  outline: none !important;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

/* Fade transition for auto-height 21:9 banner images */
/* carousel-inner must be relative; inactive items overlay the active one */
#hero-section .carousel-inner {
  position: relative !important;
}

#hero-section.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 0.8s ease-in-out !important;
  will-change: opacity;
  /* Stack inactive slides on top of active — only active drives height */
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 1;
  display: block !important; /* override Bootstrap display:none on inactive */
  pointer-events: none;
}

#hero-section.carousel-fade .carousel-item.active {
  position: relative !important; /* Active item defines container height */
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

#hero-section.carousel-fade .carousel-item-next.carousel-item-start,
#hero-section.carousel-fade .carousel-item-prev.carousel-item-end {
  opacity: 1;
  z-index: 3;
  pointer-events: auto;
}

#hero-section.carousel-fade .active.carousel-item-start,
#hero-section.carousel-fade .active.carousel-item-end {
  opacity: 0;
  transition: opacity 0.8s ease-in-out !important;
  z-index: 3;
}

/* Modern Minimal Navigation Arrows */
#hero-section .carousel-control-prev,
#hero-section .carousel-control-next {
  width: 46px !important;
  height: 46px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  background: rgba(15, 23, 42, 0.35) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 50% !important;
  z-index: 20 !important;
  transition: all 0.3s ease !important;
}

#hero-section .carousel-control-prev {
  left: 24px !important;
}

#hero-section .carousel-control-next {
  right: 24px !important;
}

/* Desktop: Visible Only on Hover */
@media (min-width: 992px) {
  #hero-section .carousel-control-prev,
  #hero-section .carousel-control-next {
    opacity: 0 !important;
    visibility: hidden !important;
  }

  #hero-section:hover .carousel-control-prev,
  #hero-section:hover .carousel-control-next {
    opacity: 0.85 !important;
    visibility: visible !important;
  }

  #hero-section:hover .carousel-control-prev:hover,
  #hero-section:hover .carousel-control-next:hover {
    opacity: 1 !important;
    background: #00964A !important;
    border-color: #00964A !important;
    transform: translateY(-50%) scale(1.08) !important;
  }
}

/* Mobile & Tablet: Always Visible */
@media (max-width: 991px) {
  #hero-section .carousel-control-prev,
  #hero-section .carousel-control-next {
    opacity: 0.85 !important;
    visibility: visible !important;
    width: 38px !important;
    height: 38px !important;
  }

  #hero-section .carousel-control-prev {
    left: 12px !important;
  }

  #hero-section .carousel-control-next {
    right: 12px !important;
  }
}

/* Minimal Navigation Indicators Centered Below */
#hero-section .carousel-indicators {
  bottom: 24px !important;
  margin-bottom: 0 !important;
  z-index: 20 !important;
  gap: 8px !important;
}

#hero-section .carousel-indicators [data-bs-target] {
  width: 24px !important;
  height: 4px !important;
  border-radius: 2px !important;
  background-color: rgba(255, 255, 255, 0.45) !important;
  border: none !important;
  margin: 0 !important;
  transition: all 0.3s ease !important;
  opacity: 0.6;
}

#hero-section .carousel-indicators .active {
  width: 42px !important;
  background-color: #00964A !important;
  opacity: 1 !important;
}
