/* ==========================================================================
   AKEL KALIP CNC - Design System & Modern Industrial Stylesheet
   Rules: Abides by skill_pro_web.md & seo_rules.md
   Themes: Light & Dark Mode via [data-theme="light"] / [data-theme="dark"]
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- Root & Theme Variables --- */
:root {
  /* Default: Dark Theme (Industrial High-Precision Dark Mode) */
  --bg-body: #0A0F1D;
  --bg-surface: #121A2D;
  --bg-card: #18233C;
  --bg-card-hover: #202D4C;
  --bg-nav: rgba(18, 26, 45, 0.9);
  
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  
  /* Brand Industrial Color Palette (Blue, Steel, Precision Cyan) */
  --brand-blue: #2563EB;
  --brand-blue-hover: #1D4ED8;
  --brand-steel: #475569;
  --brand-cyan: #38BDF8;
  --brand-cyan-glow: rgba(56, 189, 248, 0.18);
  --brand-accent: #0EA5E9;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(56, 189, 248, 0.35);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.5);
  --shadow-cyan: 0 0 25px rgba(56, 189, 248, 0.2);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

[data-theme="light"] {
  --bg-body: #F8FAFC;
  --bg-surface: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F1F5F9;
  --bg-nav: rgba(255, 255, 255, 0.94);
  
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  
  --brand-blue: #1D4ED8;
  --brand-blue-hover: #1E40AF;
  --brand-steel: #64748B;
  --brand-cyan: #0284C7;
  --brand-cyan-glow: rgba(2, 132, 199, 0.15);
  --brand-accent: #0369A1;

  --border-color: rgba(15, 23, 42, 0.1);
  --border-hover: rgba(2, 132, 199, 0.4);

  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.12);
  --shadow-cyan: 0 0 25px rgba(2, 132, 199, 0.15);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

/* Base Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
}

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

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

.text-cyan {
  color: var(--brand-cyan);
}

/* --- PREMIUM FLOATING & GLASSMORPHIC NAVBAR --- */
.header-sticky {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.nav-capsule {
  width: 100%;
  max-width: 1340px;
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

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

.nav-logo-icon {
  height: 40px;
  width: 40px;
  object-fit: contain;
}

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

.logo-main-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.3px;
  color: var(--text-primary);
  line-height: 1.1;
}

.logo-sub-text {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--brand-cyan);
}

.footer-logo-box {
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
  background: var(--brand-cyan-glow);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--brand-cyan);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

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

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

/* Theme Toggle Button */
.theme-toggle-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-bounce);
}

.theme-toggle-btn:hover {
  border-color: var(--brand-cyan);
  background: var(--brand-cyan-glow);
  transform: scale(1.06) rotate(15deg);
  box-shadow: 0 0 14px var(--brand-cyan-glow);
}

.theme-toggle-btn #themeIcon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Toggle Hamburger Button */
.nav-mobile-toggle {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.nav-mobile-toggle:hover {
  border-color: var(--brand-cyan);
  color: var(--brand-cyan);
}

/* Mobile Dropdown Drawer Menu */
.nav-mobile-menu {
  position: fixed;
  top: 76px;
  left: 20px;
  right: 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-normal);
}

.nav-mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile-menu .nav-link {
  font-size: 16px;
  padding: 12px 18px;
  width: 100%;
  text-align: left;
}

.nav-mobile-menu .nav-link::after {
  display: none;
}

.nav-mobile-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

/* Buttons */
.btn-primary {
  background: var(--brand-blue);
  color: #FFFFFF;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: all var(--transition-bounce);
}

.btn-primary:hover {
  background: var(--brand-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-outline:hover {
  border-color: var(--brand-cyan);
  background: var(--brand-cyan-glow);
  transform: translateY(-2px);
}

/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  padding-top: 140px;
  padding-bottom: 88px;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.bg-svg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-cyan-glow);
  border: 1px solid var(--border-hover);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-cyan);
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--brand-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--brand-cyan);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-title {
  font-size: clamp(34px, 4.5vw, 52px);
  letter-spacing: -1.2px;
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-description {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-stats-row {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
}

.stat-label {
  font-size: 12.5px;
  color: var(--text-muted);
}

.hero-visual-wrapper {
  position: relative;
}

.hero-img-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.hero-img-box img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-img-box:hover img {
  transform: scale(1.03);
}

.floating-tech-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(12px);
  z-index: 2;
}

.tech-card-icon {
  width: 40px;
  height: 40px;
  background: var(--brand-cyan-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-cyan);
}

.tech-card-title {
  font-size: 13.5px;
  font-weight: 700;
}

.tech-card-sub {
  font-size: 11.5px;
  color: var(--text-muted);
}

/* --- MARQUEE STRIP --- */
.marquee-strip {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-content {
  display: inline-flex;
  gap: 48px;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.marquee-item svg {
  color: var(--brand-cyan);
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --- SECTION HEADERS --- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px auto;
}

.section-tag {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--brand-cyan);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 38px);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 15.5px;
  color: var(--text-secondary);
}

/* --- BENTO GRID SECTION --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-cyan);
}

.bento-card.span-2-col {
  grid-column: span 2;
}

.bento-badge {
  background: var(--brand-blue);
  color: #FFF;
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.bento-card-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.bento-card-desc {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 20px;
}

.bento-img-wrap {
  margin-top: auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  max-height: 200px;
}

.bento-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-secondary);
}

.feature-item svg {
  color: var(--brand-cyan);
  flex-shrink: 0;
}

/* --- PORTFOLIO & GALLERY --- */
.gallery-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-tab {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-tab:hover, .filter-tab.active {
  background: var(--brand-blue);
  color: #FFFFFF;
  border-color: var(--brand-blue);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

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

.gallery-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
}

.gallery-item:hover {
  transform: translateY(-5px);
  border-color: var(--brand-cyan);
  box-shadow: var(--shadow-md);
}

.gallery-img-box {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 29, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

.gallery-view-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-cyan);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: transform var(--transition-bounce);
}

.gallery-item:hover .gallery-view-icon {
  transform: scale(1);
}

.gallery-info {
  padding: 18px;
}

.gallery-cat {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--brand-cyan);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.gallery-title {
  font-size: 17px;
  margin-bottom: 6px;
}

.gallery-desc {
  font-size: 13px;
  color: var(--text-secondary);
}

/* --- LIGHTBOX MODAL --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

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

.modal-container {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.modal-content-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-details {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* --- BLOG SECTION --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}

.blog-img-box {
  height: 190px;
  position: relative;
  overflow: hidden;
}

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

.blog-card:hover .blog-img-box img {
  transform: scale(1.05);
}

.blog-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.blog-title {
  font-size: 17.5px;
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-excerpt {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.blog-link {
  margin-top: auto;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--brand-cyan);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* --- LOCATION & MAP SECTION --- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.location-info-box {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--brand-cyan-glow);
  color: var(--brand-cyan);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.contact-detail-val {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-primary);
}

.map-wrapper {
  width: 100%;
  min-height: 380px;
  position: relative;
}

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

/* --- CONTACT & ENLARGED QUOTE FORM --- */
.contact-form-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

.quote-highlights-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  margin-bottom: 36px;
}

.quote-highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.quote-highlight-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-cyan-glow);
  color: var(--brand-cyan);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quote-highlight-item strong {
  display: block;
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.2;
}

.quote-highlight-item span {
  display: block;
  font-size: 12.5px;
  color: var(--text-muted);
}

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

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

.form-label {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.2px;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  min-height: 52px;
  transition: all var(--transition-fast);
}

.form-textarea {
  min-height: 140px;
  line-height: 1.6;
  resize: vertical;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--brand-cyan);
  background: var(--bg-card-hover);
  box-shadow: 0 0 0 4px var(--brand-cyan-glow);
}

.quote-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 18px 32px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border-radius: var(--radius-full);
  margin-top: 8px;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.quote-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.55);
}

/* --- FOOTER --- */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  padding: 56px 0 28px 0;
}

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

.footer-brand-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin-top: 14px;
  max-width: 320px;
}

.footer-title {
  font-size: 15px;
  margin-bottom: 18px;
}

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

.footer-links-list a {
  font-size: 13.5px;
  color: var(--text-secondary);
}

.footer-links-list a:hover {
  color: var(--brand-cyan);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--text-muted);
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 992px) {
  .nav-links {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card.span-2-col {
    grid-column: span 1;
  }

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

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

  .modal-content-flex {
    grid-template-columns: 1fr;
  }

  .contact-form-box {
    padding: 40px 32px;
  }

  .quote-highlights-bar {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .header-sticky {
    top: 8px;
    padding: 0 12px;
  }

  .nav-capsule {
    padding: 8px 16px;
  }

  .brand-logo {
    gap: 8px;
  }

  .nav-logo-icon {
    height: 34px;
    width: 34px;
  }

  .logo-main-text {
    font-size: 15.5px;
  }

  .logo-sub-text {
    font-size: 9.5px;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .nav-mobile-menu .btn-primary {
    display: inline-flex;
    justify-content: center;
    width: 100%;
  }

  .hero-section {
    padding-top: 120px;
    padding-bottom: 64px;
  }

  .hero-title {
    font-size: clamp(30px, 7vw, 42px);
  }

  .hero-description {
    font-size: 16.5px;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-stats-row {
    flex-wrap: wrap;
    gap: 20px;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

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

  .nav-mobile-menu {
    left: 12px;
    right: 12px;
    padding: 18px;
  }

  .bento-card {
    padding: 22px;
  }

  .location-info-box {
    padding: 24px;
  }

  .contact-form-box {
    padding: 28px 18px;
  }
}
