/* ============================================================
   NUJOOM AL RAYAN METAL WORKS EST — PREMIUM WEBSITE CSS
   Design System: Dark Navy + Orange Accent + White
   ============================================================ */

/* ── Google Fonts: Poppins + Inter ── */
/* Removed @import url(...) to prevent render-blocking chaining */

/* ════════════════════════════════════════
   1. CSS CUSTOM PROPERTIES (TOKENS)
   ════════════════════════════════════════ */
:root {
  --primary:       #0F172A;
  --secondary:     #1E293B;
  --accent:        #F97316;
  --accent-dark:   #EA6C0A;
  --accent-light:  #FED7AA;
  --bg-light:      #F8FAFC;
  --bg-card:       #FFFFFF;
  --text-main:     #1E293B;
  --text-muted:    #64748B;
  --text-light:    #94A3B8;
  --white:         #FFFFFF;
  --border:        #E2E8F0;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08);
  --shadow-md:     0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:     0 10px 40px rgba(0,0,0,.18);
  --shadow-xl:     0 20px 60px rgba(0,0,0,.25);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     32px;
  --transition:    all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head:     'Poppins', sans-serif;
  --font-body:     'Inter', sans-serif;
}

/* ════════════════════════════════════════
   2. RESET & BASE
   ════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--bg-light);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ════════════════════════════════════════
   3. LOADING SCREEN
   ════════════════════════════════════════ */
#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--primary);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: var(--font-head);
  font-size: 2rem; font-weight: 800;
  color: var(--white); margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
.loader-logo span { color: var(--accent); }
.loader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 99px; overflow: hidden;
}
.loader-bar-fill {
  height: 100%; width: 0;
  background: var(--accent);
  border-radius: 99px;
  animation: loadFill 1.8s ease forwards;
}
@keyframes loadFill { to { width: 100%; } }

/* ════════════════════════════════════════
   4. NAVIGATION
   ════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
  padding: 0 2rem;
}
#navbar.scrolled {
  background: rgba(15, 23, 42, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.1rem; font-weight: 800;
  color: var(--white); letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 0.5rem;
}
.nav-logo .logo-icon {
  width: 40px; height: 40px;
  background: var(--accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.nav-logo .logo-text span { color: var(--accent); }
.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-links a {
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 99px;
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 60%; }
.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: var(--transition) !important;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.35);
  border: none;
}
.nav-cta:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5) !important;
}
.nav-cta::after { display: none !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 0.5rem; border: none; background: none;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--white);
  border-radius: 99px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
  background: var(--primary);
  z-index: 999;
  flex-direction: column;
  padding: 2rem;
  gap: 0.5rem;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: none; /* hidden by default; JS sets display:flex */
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem; font-weight: 500;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--accent); padding-left: 0.5rem; }
.mobile-nav .nav-cta-mob {
  margin-top: 1rem;
  background: var(--accent);
  color: var(--white) !important;
  text-align: center; border-radius: var(--radius-sm);
  padding: 1rem !important;
  font-weight: 700;
  font-size: 1rem !important;
}

/* ════════════════════════════════════════
   5. UTILITY CLASSES
   ════════════════════════════════════════ */
.section { padding: 60px 2rem; overflow: hidden; }
.section-sm { padding: 70px 2rem; overflow: hidden; }
.container { max-width: 1300px; margin: 0 auto; width: 100%; }
.container-wide { max-width: 1500px; margin: 0 auto; width: 100%; }

.section-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(249, 115, 22, 0.12);
  color: var(--accent);
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.35rem 0.85rem;
  border-radius: 99px;
  margin-bottom: 1rem;
  border: 1px solid rgba(249, 115, 22, 0.25);
  max-width: 100%; white-space: normal;
  word-break: break-word;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 800; line-height: 1.2;
  color: var(--primary); margin-bottom: 1rem;
  letter-spacing: -0.02em;
  word-break: break-word;
  overflow-wrap: break-word;
}
.section-title.light { color: var(--white); }
.section-subtitle {
  font-size: 1rem; color: var(--text-muted);
  max-width: 600px; line-height: 1.8;
  word-break: break-word;
}
.section-subtitle.light { color: rgba(255,255,255,0.7); }
.text-accent { color: var(--accent); }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600; font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer; transition: var(--transition);
  text-align: center;
  max-width: 100%;
  overflow-wrap: break-word;
}
.btn-primary {
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(249,115,22,0.35);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(249,115,22,0.5);
}
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}
.btn-outline-dark:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

/* ════════════════════════════════════════
   6. HERO SECTION
   ════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  background: var(--primary);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero-image.webp') center/cover no-repeat;
  opacity: 0.18;
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.97) 0%, rgba(15,23,42,0.75) 50%, rgba(15,23,42,0.55) 100%);
}
.hero-particles {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-particles .dot {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--accent);
  border-radius: 50%;
  animation: floatDot var(--dur, 8s) var(--delay, 0s) infinite ease-in-out;
  opacity: 0.4;
}
@keyframes floatDot {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50% { transform: translateY(-30px) scale(1.5); opacity: 0.8; }
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1300px; margin: 0 auto;
  padding: 6rem 2rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  width: 100%;
  box-sizing: border-box;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.3);
  color: var(--accent); font-size: 0.75rem;
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; padding: 0.4rem 0.85rem;
  border-radius: 99px; margin-bottom: 1.5rem;
  max-width: 100%; white-space: normal;
  word-break: break-word; text-align: center;
}
.hero-badge .dot-pulse {
  width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 5vw, 3.8rem);
  font-weight: 900; line-height: 1.15;
  color: var(--white); margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  word-break: break-word;
  overflow-wrap: break-word;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--accent), #FBBF24);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.75);
  line-height: 1.85; margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-head);
  font-size: 2rem; font-weight: 800;
  color: var(--white); display: flex;
  align-items: baseline; justify-content: center;
  gap: 0.1rem;
}
.stat-number .suffix { color: var(--accent); font-size: 1.4rem; }
.stat-label {
  font-size: 0.75rem; color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-top: 0.25rem;
}
.hero-image-wrap {
  position: relative;
}
.hero-image-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(ellipse at center, rgba(249,115,22,0.25) 0%, transparent 70%);
  border-radius: var(--radius-xl);
}
.hero-image-card {
  position: relative; z-index: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-image-card img {
  width: 100%; height: 500px;
  object-fit: cover;
  display: block;
}
.hero-badge-float {
  position: absolute;
  background: rgba(15,23,42,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
  color: var(--white);
  animation: floatCard 3s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-badge-float.top-left { top: 1.5rem; left: -2rem; }
.hero-badge-float.bottom-right { bottom: 1.5rem; right: -2rem; }
.badge-icon {
  width: 40px; height: 40px;
  background: var(--accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--white); flex-shrink: 0;
}
.badge-text strong { display: block; font-size: 0.95rem; font-weight: 700; }
.badge-text small { font-size: 0.75rem; color: rgba(255,255,255,0.6); }

/* ════════════════════════════════════════
   7. ABOUT SECTION
   ════════════════════════════════════════ */
#about { background: var(--white); }
.about-image-wrap {
  position: relative;
  border-radius: var(--radius-xl); overflow: hidden;
}
.about-image-wrap img {
  width: 100%; height: 560px;
  object-fit: cover; border-radius: var(--radius-xl);
  transition: transform 0.6s ease;
}
.about-image-wrap:hover img { transform: scale(1.03); }
.about-accent-bar {
  position: absolute; top: 2rem; left: -0.75rem;
  width: 6px; height: 120px;
  background: var(--accent); border-radius: 3px;
}
.about-exp-badge {
  position: absolute; bottom: 2rem; right: -1.5rem;
  background: var(--accent);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  text-align: center; color: var(--white);
  box-shadow: 0 15px 40px rgba(249,115,22,0.4);
}
.about-exp-badge .big { font-size: 2.5rem; font-weight: 900; line-height: 1; }
.about-exp-badge small { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.9; }
.about-content { padding-left: 2rem; }
.about-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.25rem; margin-top: 2.5rem;
}
.about-feature {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.about-feature:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(249,115,22,0.1);
  transform: translateY(-2px);
}
.about-feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(249,115,22,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.1rem;
}
.about-feature h3 {
  font-family: var(--font-head);
  font-size: 0.9rem; font-weight: 700;
  margin-bottom: 0.25rem;
}
.about-feature p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ════════════════════════════════════════
   8. SERVICES SECTION
   ════════════════════════════════════════ */
#services {
  background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
  position: relative; overflow: hidden;
}
#services::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.services-header { text-align: center; margin-bottom: 4rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(249,115,22,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.service-img {
  height: 180px; overflow: hidden; position: relative;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.85);
}
.service-card:hover .service-img img { transform: scale(1.05); }
.service-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(15,23,42,0.9));
}
.service-body { padding: 1.5rem; }
.service-icon {
  width: 48px; height: 48px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.2rem;
  margin-bottom: 1rem;
}
.service-body h3 {
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.6rem;
  line-height: 1.35;
}
.service-body p {
  font-size: 0.83rem; color: rgba(255,255,255,0.6);
  line-height: 1.7; margin-bottom: 1.25rem;
}
.service-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; font-weight: 600;
  color: var(--accent);
  transition: gap 0.3s ease;
}
.service-link:hover { gap: 0.75rem; }

/* ════════════════════════════════════════
   9. INDUSTRIES SECTION
   ════════════════════════════════════════ */
#industries { background: var(--bg-light); }
.industries-header { text-align: center; margin-bottom: 4rem; }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.25rem;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.industry-card:hover {
  border-color: var(--accent);
  background: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.industry-card:hover .industry-icon { background: var(--accent); color: var(--white); }
.industry-card:hover .industry-name { color: var(--white); }
.industry-icon {
  width: 60px; height: 60px; margin: 0 auto 1rem;
  background: rgba(249,115,22,0.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.5rem;
  transition: var(--transition);
}
.industry-name {
  font-family: var(--font-head);
  font-size: 0.85rem; font-weight: 700;
  color: var(--text-main); line-height: 1.35;
  transition: var(--transition);
}

/* ════════════════════════════════════════
   10. WHY CHOOSE US
   ════════════════════════════════════════ */
#why {
  background: linear-gradient(135deg, var(--primary) 0%, #162035 100%);
  position: relative; overflow: hidden;
}
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.why-right { position: relative; }
.why-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.why-stat-card {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.why-stat-card:hover { background: rgba(249,115,22,0.12); border-color: rgba(249,115,22,0.3); }
.why-stat-card .num {
  font-family: var(--font-head);
  font-size: 2rem; font-weight: 900;
  color: var(--white); display: flex;
  align-items: baseline; justify-content: center; gap: 2px;
}
.why-stat-card .num sup { color: var(--accent); font-size: 1.2rem; }
.why-stat-card p { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 0.25rem; text-transform: uppercase; letter-spacing: 0.06em; }
.why-stat-card.accent-bg { grid-column: span 2; background: var(--accent); border-color: var(--accent); }
.why-stat-card.accent-bg .num { color: var(--white); }
.why-stat-card.accent-bg .num sup { color: rgba(255,255,255,0.8); }
.why-stat-card.accent-bg p { color: rgba(255,255,255,0.85); }
.why-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.why-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.why-item:hover {
  background: rgba(249,115,22,0.08);
  border-color: rgba(249,115,22,0.25);
  transform: translateX(4px);
}
.why-check {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.85rem;
}
.why-item span {
  font-size: 0.95rem; font-weight: 500;
  color: rgba(255,255,255,0.85);
}

/* ════════════════════════════════════════
   11. PROCESS SECTION
   ════════════════════════════════════════ */
#process { background: var(--white); }
.process-header { text-align: center; margin-bottom: 5rem; }
.process-timeline {
  display: flex; align-items: flex-start;
  gap: 0; position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute; top: 60px; left: 5%; right: 5%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(249,115,22,0.2));
}
.process-step {
  flex: 1; text-align: center; padding: 0 1rem;
  position: relative; z-index: 1;
}
.process-step-num {
  width: 60px; height: 60px; margin: 0 auto 1.5rem;
  background: var(--white);
  border: 3px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem; font-weight: 800;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}
.process-step:hover .process-step-num {
  background: var(--accent); border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(249,115,22,0.4);
  transform: scale(1.1);
}
.process-step-icon {
  font-size: 1rem; color: var(--accent);
  margin-bottom: 0.75rem;
}
.process-step h3 {
  font-family: var(--font-head);
  font-size: 0.9rem; font-weight: 700;
  color: var(--primary); margin-bottom: 0.5rem;
}
.process-step p {
  font-size: 0.8rem; color: var(--text-muted); line-height: 1.6;
}

/* ════════════════════════════════════════
   12. GALLERY SECTION
   ════════════════════════════════════════ */
#gallery { background: var(--bg-light); }
.gallery-header { text-align: center; margin-bottom: 3rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden; position: relative; cursor: pointer;
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(15,23,42,0.85));
  opacity: 0; transition: opacity 0.4s ease;
  display: flex; align-items: flex-end;
  padding: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text {
  color: var(--white);
  font-size: 0.9rem; font-weight: 600;
  font-family: var(--font-head);
}
.gallery-overlay-text small {
  display: block; font-size: 0.75rem;
  color: var(--accent); font-weight: 500; margin-bottom: 0.2rem;
}

/* ════════════════════════════════════════
   13. PROJECTS SECTION
   ════════════════════════════════════════ */
#projects {
  background: var(--primary);
}
.projects-header { text-align: center; margin-bottom: 4rem; }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.project-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--transition);
  position: relative;
}
.project-card:hover {
  border-color: rgba(249,115,22,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.project-img {
  height: 220px; overflow: hidden; position: relative;
}
.project-img img {
  width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.5s ease;
}
.project-card:hover .project-img img { transform: scale(1.06); }
.project-category {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem; border-radius: 99px;
}
.project-body { padding: 1.5rem; }
.project-body h3 {
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.5rem;
}
.project-body p { font-size: 0.83rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ════════════════════════════════════════
   14. TESTIMONIALS SECTION
   ════════════════════════════════════════ */
#testimonials { background: var(--bg-light); }
.testimonials-header { text-align: center; margin-bottom: 3.5rem; }
.swiper-testimonials { padding-bottom: 3rem !important; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative; overflow: hidden;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(249,115,22,0.3);
  box-shadow: var(--shadow-lg);
}
.quote-icon {
  position: absolute; top: 1.5rem; right: 2rem;
  font-size: 4rem; color: rgba(249,115,22,0.08);
  font-family: serif; line-height: 1;
}
.stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.95rem; color: var(--text-muted);
  line-height: 1.85; margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1rem;
  font-weight: 800; color: var(--white);
  flex-shrink: 0;
}
.author-info strong { font-size: 0.9rem; font-weight: 700; display: block; }
.author-info small { font-size: 0.78rem; color: var(--text-muted); }
.swiper-pagination-bullet { background: var(--text-muted); }
.swiper-pagination-bullet-active { background: var(--accent); }

/* ════════════════════════════════════════
   15. FAQ SECTION
   ════════════════════════════════════════ */
#faq { background: var(--white); }
.faq-header { text-align: center; margin-bottom: 3.5rem; }
.faq-wrap {
  column-count: 2;
  column-gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden; transition: var(--transition);
  height: max-content;
  break-inside: avoid;
  margin-bottom: 1.5rem;
}
.faq-item.active {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(249,115,22,0.1);
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600; font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition);
  background: none; border: none; width: 100%; text-align: left;
}
.faq-question:hover { color: var(--accent); }
.faq-item.active .faq-question { color: var(--accent); }
.faq-toggle {
  width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(249,115,22,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 0.9rem;
  transition: transform 0.35s ease, background 0.35s ease;
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: var(--accent); color: var(--white);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
  padding: 0 1.5rem;
}
.faq-item.active .faq-answer { max-height: 300px; padding: 0 1.5rem 1.5rem; }
.faq-answer p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; }

/* ════════════════════════════════════════
   16. CONTACT SECTION
   ════════════════════════════════════════ */
#contact {
  background: var(--bg-light);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 4rem; align-items: start;
}
.contact-info-card {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  transition: var(--transition);
}
.contact-info-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(249,115,22,0.08);
}
.contact-info-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(249,115,22,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.1rem;
}
.contact-info-text strong { font-size: 0.85rem; font-weight: 700; display: block; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.2rem; }
.contact-info-text a, .contact-info-text span { font-size: 0.95rem; font-weight: 500; color: var(--text-main); }
.contact-info-text a:hover { color: var(--accent); }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form-wrap h3 {
  font-family: var(--font-head);
  font-size: 1.3rem; font-weight: 800;
  margin-bottom: 0.5rem;
}
.contact-form-wrap p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.9rem;
  color: var(--text-main); background: var(--bg-light);
  transition: var(--transition); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.btn-submit {
  width: 100%; padding: 1rem;
  background: var(--accent);
  color: var(--white);
  font-size: 1rem; font-weight: 700;
  border: none; border-radius: var(--radius-sm);
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body);
  box-shadow: 0 4px 20px rgba(249,115,22,0.35);
}
.btn-submit:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(249,115,22,0.5);
}

/* ════════════════════════════════════════
   17. MAP SECTION
   ════════════════════════════════════════ */
#map { padding: 0; }
#map iframe {
  width: 100%; height: 420px;
  border: none; display: block;
  filter: grayscale(20%) brightness(95%);
}

/* ════════════════════════════════════════
   18. FOOTER
   ════════════════════════════════════════ */
footer {
  background: var(--primary);
  padding: 80px 2rem 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem; max-width: 1300px; margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.1rem; font-weight: 800;
  color: var(--white); margin-bottom: 1rem;
}
.footer-logo span { color: var(--accent); }
.footer-logo .logo-text span:first-child { color: #ff8a3d !important; }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem; transition: var(--transition);
}
.social-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--white); transform: translateY(-2px); }

/* Override for social buttons in light sections (like contact) */
.contact-grid .social-btn {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-main);
}
.contact-grid .social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.9rem; font-weight: 700;
  color: var(--white); margin-bottom: 1.25rem;
  position: relative; padding-bottom: 0.75rem;
}
.footer-col h4::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--accent); border-radius: 1px;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: var(--transition); display: flex; align-items: center; gap: 0.4rem; }
.footer-links a:hover { color: var(--accent); padding-left: 0.25rem; }
.footer-links a i { font-size: 0.7rem; color: var(--accent); }
.footer-contact-item { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 0.85rem; }
.footer-contact-item i { color: var(--accent); font-size: 0.9rem; margin-top: 0.2rem; flex-shrink: 0; }
.footer-contact-item span, .footer-contact-item a { font-size: 0.83rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1300px; margin: 0 auto;
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8rem; color: rgba(255,255,255,0.7);
}
.footer-bottom a { color: var(--accent); }

/* ════════════════════════════════════════
   19. FLOATING BUTTONS
   ════════════════════════════════════════ */
.float-btns {
  position: fixed; bottom: 2rem; right: 1.5rem;
  z-index: 900; display: flex; flex-direction: column;
  gap: 0.75rem; align-items: center;
}
.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-size: 1.3rem; cursor: pointer;
  border: none; transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  text-decoration: none; color: var(--white);
}
.float-btn:hover { transform: scale(1.1); }
#btn-back-top {
  background: var(--secondary);
  border: 1px solid rgba(255,255,255,0.15);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease, transform 0.3s ease;
}
#btn-back-top.visible { opacity: 1; pointer-events: all; }
.btn-whatsapp { background: #25D366; }
.btn-call { background: var(--accent); }

.float-call-left {
  position: fixed; bottom: 2rem; left: 1.5rem;
  z-index: 900;
}

/* Tooltip labels */
.float-btn-wrap {
  position: relative; display: flex; align-items: center;
}
.float-tooltip {
  position: absolute; right: calc(100% + 0.75rem);
  white-space: nowrap;
  background: var(--secondary);
  color: var(--white); font-size: 0.78rem; font-weight: 600;
  padding: 0.35rem 0.75rem; border-radius: var(--radius-sm);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}
.float-btn-wrap:hover .float-tooltip { opacity: 1; }

/* ════════════════════════════════════════
   20. RESPONSIVE DESIGN
   ════════════════════════════════════════ */

/* ── Tablet Landscape: ≤1200px ── */
@media (max-width: 1200px) {
  .hero-inner { gap: 2.5rem; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
  .footer-grid > .footer-col:last-child { grid-column: 1 / -1; }
  .why-visual { padding: 1.75rem; }
}

/* ── Tablet: ≤1024px ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; padding: 5rem 1.5rem 4rem; }
  .hero-image-wrap { display: none; }
  .hero-content { text-align: center; }
  .hero-badge { margin: 0 auto 1.5rem; }
  .hero-desc { margin: 0 auto 2rem; }
  .hero-btns { justify-content: center; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery-item.wide { grid-column: auto; }
  .gallery-item.tall { grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { gap: 3rem; }
  .process-timeline { flex-wrap: wrap; justify-content: center; }
  .process-step { flex: 0 0 calc(33.33% - 1rem); min-width: 180px; }
  .process-timeline::before { display: none; }
}

/* ── Tablet Portrait: ≤768px ── */
@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none !important; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .nav-inner { height: 70px; }

  /* Sections */
  .section { padding: 40px 1.25rem; }
  .section-sm { padding: 45px 1.25rem; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 4.5rem 1.25rem 3rem;
    text-align: center;
  }
  .hero-image-wrap { display: none; }
  .hero-badge { display: inline-flex; margin: 0 auto 1.25rem; }
  .hero-title { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .hero-desc { margin: 0 auto 2rem; max-width: 100%; }
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* About */
  .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-content { padding-left: 0; }
  .about-image-wrap img { height: 340px; }
  .about-exp-badge { right: 1rem; bottom: 1.5rem; }
  .about-accent-bar { display: none; }
  .about-features { grid-template-columns: 1fr; gap: 0.85rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .services-header { margin-bottom: 2.5rem; }

  /* Industries */
  .industries-grid { grid-template-columns: repeat(2, 1fr); }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .why-visual { grid-template-columns: 1fr 1fr; }
  .why-stat-card.accent-bg { grid-column: span 2; }

  /* Process */
  .process-timeline {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .process-timeline::before { display: none; }
  .process-step { width: 100%; max-width: 480px; padding: 0 1rem; }
  .process-header { margin-bottom: 3rem; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
    gap: 0.75rem;
  }
  .gallery-item.wide { grid-column: auto; }
  .gallery-item.tall { grid-row: auto; }

  /* Projects */
  .projects-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.75rem 1.5rem; }

  /* Testimonials */
  .swiper-testimonials { padding-bottom: 2.5rem !important; }

  /* CTA Banner */
  .cta-banner { padding: 50px 1.25rem; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 300px; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding: 1.25rem 0;
  }
  footer { padding: 60px 1.25rem 0; }

  /* Floating buttons */
  .float-btns { bottom: 1.25rem; right: 1rem; }
  .float-call-left { bottom: 1.25rem; left: 1rem; }
  .float-btn { width: 46px; height: 46px; font-size: 1.15rem; }

  /* Map */
  #map iframe { height: 300px; }
}

/* ── Mobile: ≤480px ── */
@media (max-width: 480px) {
  /* Nav */
  .nav-logo { font-size: 0.95rem; }
  .nav-inner { height: 64px; }
  #navbar { padding: 0 1rem; }

  /* Hero */
  .hero-title { font-size: 1.75rem; }
  .hero-desc { font-size: 0.92rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .stat-number { font-size: 1.5rem; }
  .stat-label { font-size: 0.7rem; }
  .hero-btns { max-width: 100%; }

  /* Section headings */
  .section-title { font-size: 1.55rem; }
  .section-subtitle { font-size: 0.9rem; }
  .section { padding: 30px 1rem; }

  /* Services */
  .service-img { height: 160px; }

  /* Industries */
  .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .industry-icon { width: 50px; height: 50px; font-size: 1.25rem; margin-bottom: 0.75rem; }
  .industry-name { font-size: 0.8rem; }
  .industry-card { padding: 1.5rem 0.75rem; }

  /* Why */
  .why-visual { padding: 1.25rem; gap: 0.75rem; }
  .why-stat-card .num { font-size: 1.6rem; }
  .why-item { padding: 0.85rem 1rem; }
  .why-item span { font-size: 0.88rem; }

  /* Process */
  .process-step { max-width: 100%; }
  .process-step-num { width: 52px; height: 52px; font-size: 1rem; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }

  /* Projects */
  .project-img { height: 180px; }

  /* FAQ */
  .faq-question { font-size: 0.88rem; padding: 1rem 1.25rem; }

  /* Contact */
  .contact-form-wrap { padding: 1.25rem 1rem; }
  .contact-info-card { padding: 1rem; }

  /* About */
  .about-image-wrap img { height: 280px; }
  .about-exp-badge { padding: 1rem 1.25rem; }
  .about-exp-badge .big { font-size: 2rem; }

  /* Footer */
  footer { padding: 50px 1rem 0; }
  .footer-logo { font-size: 1rem; }

  /* Map */
  #map iframe { height: 260px; }
}

/* ── Small Mobile: ≤360px ── */
@media (max-width: 360px) {
  .hero-title { font-size: 1.5rem; }
  .section-title { font-size: 1.35rem; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .why-visual { grid-template-columns: 1fr; }
  .why-stat-card.accent-bg { grid-column: auto; }
  .about-features { gap: 0.65rem; }
  .btn { font-size: 0.88rem; padding: 0.75rem 1.25rem; }
}

/* ════════════════════════════════════════
   21. SCROLL REVEAL CUSTOM ANIMATIONS
   ════════════════════════════════════════ */
[data-aos] { transition-property: transform, opacity; }

/* ════════════════════════════════════════
   22. MISC / POLISH
   ════════════════════════════════════════ */
::selection { background: var(--accent); color: var(--white); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--primary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* Divider */
.section-divider {
  height: 1px; width: 100%;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
/* Quote CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #EA6C0A 100%);
  padding: 60px 2rem;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800; color: var(--white); margin-bottom: 0.5rem;
}
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; font-size: 1rem; }
.cta-banner .btn-white {
  background: var(--white); color: var(--accent);
  font-weight: 700; border: 2px solid transparent;
}
.cta-banner .btn-white:hover { background: transparent; border-color: var(--white); color: var(--white); }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Success message */
.form-success {
  display: none;
  background: #DCFCE7; border: 1px solid #86EFAC;
  color: #166534; padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem; font-size: 0.9rem;
  align-items: center; gap: 0.5rem;
}
.form-success.show { display: flex; }

/* ---------------------------------------------------
   GALLERY SECTION
---------------------------------------------------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2rem;
}

.gallery-filters .filter-btn {
  padding: 8px 16px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-filters .filter-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.gallery-filters .filter-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  background: #fff;
  aspect-ratio: 4 / 3;
}

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

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

.gallery-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 2rem;
}

.gallery-pagination .page-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.gallery-pagination .page-btn:hover:not(:disabled) {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.gallery-pagination .page-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.gallery-pagination .page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ---------------------------------------------------
   PAGINATION BUTTONS (SUBPAGES)
---------------------------------------------------- */
.pagination-btn {
  padding: 8px 16px;
  background: #141313;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white, #fff);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pagination-btn:hover:not(:disabled) {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.pagination-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ---------------------------------------------------
   LIGHTBOX
---------------------------------------------------- */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.show {
  display: block;
  opacity: 1;
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.lightbox-content.zoomed {
  transform: scale(2);
  cursor: zoom-out;
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: var(--accent);
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 700px){
  .lightbox-content {
    width: 100%;
  }
}

/* ---------------------------------------------------
   MATERIALS SECTION
---------------------------------------------------- */
.materials-header { text-align: center; margin-bottom: 3rem; }
.materials-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; max-width: 900px; margin: 0 auto; }
.material-badge { background: var(--bg-card); border: 1px solid var(--border); border-radius: 99px; padding: 12px 24px; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-sm); transition: var(--transition); cursor: default; }
.material-badge i { color: var(--accent); font-size: 1.2rem; }
.material-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent); color: var(--accent); }

/* Fix for mobile logo text overflow */
@media (max-width: 768px) {
  .logo-text span:first-child { font-size: 1.1rem !important; }
  .logo-text span:last-child { font-size: 0.75rem !important; white-space: normal !important; text-align: center; line-height: 1.2 !important; }
  .nav-logo img { height: 40px !important; }
}
@media (max-width: 480px) {
  .logo-text span:first-child { font-size: 0.9rem !important; }
  .logo-text span:last-child { font-size: 0.65rem !important; }
  .nav-logo img { height: 35px !important; }
}

/* ============================================================
   FONT AWESOME FONT-DISPLAY SWAP OVERRIDES
   ============================================================ */
@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.woff2") format("woff2"),
       url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.ttf") format("truetype");
}
@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-brands-400.woff2") format("woff2"),
       url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-brands-400.ttf") format("truetype");
}
@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-regular-400.woff2") format("woff2"),
       url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-regular-400.ttf") format("truetype");
}
