/* ==========================================================================
   ALYAM INTERNATIONAL L.L.C - Architectural Ultra-Luxe Light Theme
   ========================================================================== */

500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Architectural Palette */
  --primary: #0a192f;
  --primary-dark: #061020;
  --primary-light: #162a45;
  --primary-subtle: #eef3f8;
  
  --accent-gold: #d4af37;
  --accent-amber: #b8860b;
  --accent-gradient: linear-gradient(135deg, #e5c158 0%, #b8860b 100%);
  --accent-subtle: #fbf7ec;
  --accent-glow: rgba(212, 175, 55, 0.2);

  --emerald: #00a896;
  --emerald-subtle: #e6f6f4;

  /* Neutral Light Canvas */
  --bg-main: #f6f8fa;
  --bg-surface: #ffffff;
  --bg-subtle: #f0f4f8;
  --bg-dark-banner: #071325;
  
  --text-main: #0b1320;
  --text-muted: #334155;
  --text-light: #475569;
  --text-white: #ffffff;

  /* Borders & Shadows */
  --border-light: #e2e8f0;
  --border-accent: #e5c158;
  --border-subtle: rgba(10, 25, 47, 0.08);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 10px rgba(10, 25, 47, 0.03);
  --shadow-md: 0 12px 28px -6px rgba(10, 25, 47, 0.07), 0 4px 10px -2px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 24px 45px -12px rgba(10, 25, 47, 0.12), 0 10px 18px -4px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 30px 60px -15px rgba(10, 25, 47, 0.18);

  /* Fonts */
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', system-ui, -apple-system, sans-serif;

  /* 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-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  --max-width: 1280px;
}

/* --- Base Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-main);
  background-color: var(--bg-main);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

:focus-visible {
  outline: 3px solid var(--accent-gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -70px;
  left: 20px;
  background: var(--primary);
  color: var(--text-white);
  padding: 12px 24px;
  z-index: 10000;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 20px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.4rem, 4.5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5.5rem 0;
}

.bg-alt {
  background-color: var(--bg-subtle);
}

.bg-white {
  background-color: var(--bg-surface);
}

/* --- Buttons & UI --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 1.85rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-white);
  box-shadow: 0 8px 20px rgba(10, 25, 47, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(10, 25, 47, 0.3);
}

.btn-accent {
  background: var(--accent-gradient);
  color: #111111;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-accent:hover {
  filter: brightness(1.1);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.45);
}

.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary-subtle);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1.15rem 2.4rem;
  font-size: 1.1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 1rem;
  background-color: var(--primary-subtle);
  color: var(--primary-dark);
  font-size: 0.825rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid rgba(10, 25, 47, 0.12);
}

.badge-gold {
  background: var(--accent-subtle);
  color: var(--accent-amber);
  border-color: var(--border-accent);
}

.badge-emerald {
  background: var(--emerald-subtle);
  color: var(--emerald);
  border-color: rgba(0, 168, 150, 0.3);
}

/* --- Section Header --- */
.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem auto;
}

.section-header .badge {
  margin-bottom: 1.25rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--text-muted);
}

/* ==========================================================================
   HEADER & NAVIGATION (NO TAGLINE)
   ========================================================================== */
.top-bar {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  padding: 0.6rem 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: 1rem;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.top-bar-info span, .top-bar-info a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.9);
}

.top-bar-badge {
  background: var(--accent-gradient);
  color: #111;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.75rem;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.brand-name-header {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
  line-height: 1.1;
  display: inline-block;
}

.brand-name-header span {
  color: var(--accent-amber);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.85rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-main);
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--accent-gradient);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 280px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.85rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition-normal);
  list-style: none;
  z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item a {
  display: block;
  padding: 0.65rem 1.35rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.nav-dropdown-item a:hover {
  background-color: var(--primary-subtle);
  color: var(--primary-dark);
  padding-left: 1.6rem;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: var(--primary-dark);
  cursor: pointer;
  padding: 0.5rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  padding: 5.5rem 0 6.5rem 0;
  background: linear-gradient(135deg, #f6f8fa 0%, #eef4f8 50%, #f0f5fa 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  margin-bottom: 1.5rem;
}

.hero-title span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.22rem;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  gap: 1.15rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-light);
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.hero-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.hero-badge-num {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
}

.hero-badge-label {
  font-size: 0.825rem;
  color: var(--text-light);
}

.hero-visual {
  position: relative;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--bg-surface);
  background-color: var(--bg-surface);
}

.hero-image-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.hero-image-frame:hover img {
  transform: scale(1.04);
}

.hero-glass-pill {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  padding: 1.25rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 1.1rem;
  max-width: 310px;
  z-index: 10;
  animation: floatAnimation 4s ease-in-out infinite;
}

@keyframes floatAnimation {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-glass-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* ==========================================================================
   METRICS COUNTER BAR
   ========================================================================== */
.stats-bar {
  background-color: var(--primary-dark);
  color: var(--text-white);
  padding: 3.5rem 0;
  margin-top: -2.5rem;
  position: relative;
  z-index: 20;
  box-shadow: var(--shadow-lg);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-card {
  padding: 1rem;
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.12);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

/* ==========================================================================
   SERVICES GRID CARDS
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.25rem;
}

.service-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-accent);
}

.service-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.service-card:hover .service-card-image img {
  transform: scale(1.08);
}

.service-card-badge {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  background-color: rgba(10, 25, 47, 0.9);
  color: var(--text-white);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(6px);
}

.service-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
}

.service-card-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border-light);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--primary);
}

.link-arrow i {
  transition: transform var(--transition-fast);
}

.service-card:hover .link-arrow i {
  transform: translateX(5px);
}

/* ==========================================================================
   POWDER COATING PROCESS TIMELINE
   ========================================================================== */
.feature-banner {
  background: linear-gradient(135deg, #0a192f 0%, #061020 100%);
  color: var(--text-white);
  border-radius: var(--radius-lg);
  padding: 4rem 3.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.feature-banner::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.feature-banner-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.feature-banner-content h2 {
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.feature-banner-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.timeline-step {
  background: rgba(255, 255, 255, 0.07);
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.timeline-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: #111;
  font-family: var(--font-heading);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.timeline-step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-white);
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.timeline-step-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ==========================================================================
   PORTFOLIO & LIGHTBOX SHOWCASE
   ========================================================================== */
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 3.5rem;
}

.filter-btn {
  padding: 0.65rem 1.35rem;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  background-color: var(--bg-surface);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
  box-shadow: 0 6px 16px rgba(10, 25, 47, 0.22);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  cursor: pointer;
  height: 340px;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 16, 32, 0.94) 0%, rgba(6, 16, 32, 0.35) 60%, transparent 100%);
  opacity: 0;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: opacity var(--transition-fast);
  color: var(--text-white);
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-category {
  font-size: 0.825rem;
  font-weight: 800;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.portfolio-title {
  font-size: 1.25rem;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.portfolio-zoom-icon {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(6, 16, 32, 0.92);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 940px;
  width: 100%;
  background-color: var(--bg-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.lightbox-img-wrapper {
  max-height: 72vh;
  overflow: hidden;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrapper img {
  max-height: 72vh;
  width: auto;
  object-fit: contain;
}

.lightbox-info {
  padding: 1.6rem 2rem;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.65);
  color: #fff;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background-color var(--transition-fast);
}

.lightbox-close:hover {
  background-color: var(--primary);
}

/* ==========================================================================
   LEADERSHIP & TEAM CARDS
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 2.25rem;
}

.team-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 2.25rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-accent);
}

.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--primary-subtle);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  border: 3px solid var(--accent-gold);
  box-shadow: var(--shadow-sm);
}

.team-name {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.team-role {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent-amber);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   CONTACT FORM & LOCATION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3.75rem;
}

.contact-info-card {
  background-color: var(--primary-dark);
  color: var(--text-white);
  border-radius: var(--radius-lg);
  padding: 3.25rem 2.75rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-card h3 {
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.contact-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.85rem;
  margin-bottom: 2rem;
}

.contact-detail-item {
  display: flex;
  gap: 1.35rem;
  align-items: flex-start;
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-text label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-text span,
.contact-text a {
  color: var(--text-white);
  font-size: 1.05rem;
  font-weight: 600;
}

.form-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 3.25rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.15rem;
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: var(--text-main);
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.form-control:focus {
  background-color: var(--bg-surface);
  border-color: var(--primary);
  box-shadow: 0 0 0 3.5px var(--primary-subtle);
  outline: none;
}

textarea.form-control {
  resize: vertical;
  min-height: 135px;
}

/* ==========================================================================
   SERVICE DETAIL PAGES (5 IMAGES GRID)
   ========================================================================== */
.page-header {
  padding: 4.5rem 0 3.5rem 0;
  background: linear-gradient(135deg, #0a192f 0%, #061020 100%);
  color: var(--text-white);
  text-align: center;
}

.page-header h1 {
  color: var(--text-white);
  margin-bottom: 0.85rem;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
}

.breadcrumbs a {
  color: var(--accent-gold);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3.75rem;
}

.service-main-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 2.75rem;
  border: 1px solid var(--border-light);
}

.service-main-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.service-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.35rem;
  margin: 2rem 0;
}

.service-gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 170px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.service-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-fast);
}

.service-gallery-item:hover img {
  transform: scale(1.09);
}

.sidebar-widget {
  background-color: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 2.25rem;
  margin-bottom: 2.25rem;
  box-shadow: var(--shadow-sm);
}

.sidebar-widget h4 {
  margin-bottom: 1.35rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid var(--primary-subtle);
}

.sidebar-nav-list {
  list-style: none;
}

.sidebar-nav-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
  transition: color var(--transition-fast);
}

.sidebar-nav-item a:hover,
.sidebar-nav-item a.active {
  color: var(--primary);
}

.sidebar-cta-widget {
  background: var(--accent-gradient);
  color: #111;
  border-radius: var(--radius-md);
  padding: 2.25rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.sidebar-cta-widget h4 {
  color: #111;
  margin-bottom: 0.85rem;
  border: none;
  padding: 0;
}

.sidebar-cta-widget p {
  color: #222;
  font-size: 0.98rem;
  margin-bottom: 1.6rem;
}

/* Specs Table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.75rem 0;
}

.specs-table th,
.specs-table td {
  padding: 0.95rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.specs-table th {
  background-color: var(--bg-subtle);
  font-family: var(--font-heading);
  color: var(--primary-dark);
}

/* Floating Quick Quote Button */
.floating-quote-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: var(--accent-gradient);
  color: #111;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: all var(--transition-normal);
}

.floating-quote-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 32px rgba(212, 175, 55, 0.55);
  color: #111;
}

/* ==========================================================================
   FOOTER (NO LOGO IMAGE)
   ========================================================================== */
.footer {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.82);
  padding: 5rem 0 2.25rem 0;
  margin-top: auto;
  border-top: 4px solid var(--accent-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3.5rem;
  margin-bottom: 3.75rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.01em;
}

.footer-brand-title span {
  color: var(--accent-gold);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.98rem;
}

.footer-col h4 {
  color: var(--text-white);
  font-size: 1.15rem;
  margin-bottom: 1.6rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 2.5px;
  background: var(--accent-gradient);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-gold);
  transform: translateX(5px);
}

.footer-bottom {
  padding-top: 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .feature-banner-grid,
  .contact-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 84px;
    left: 0;
    width: 100%;
    background-color: var(--bg-surface);
    flex-direction: column;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border-light);
    gap: 1.25rem;
    align-items: flex-start;
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    width: 100%;
    padding-left: 1rem;
  }

  .top-bar-info {
    font-size: 0.78rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stat-card:not(:last-child)::after {
    display: none;
  }

  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .floating-quote-btn {
    bottom: 20px;
    right: 20px;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
}
