/* ============================================================
   SAM ELEKTRİK MEKANİK — STYLE SHEET
   Color Palette:
   - Luster White:       #F4F1EC
   - Aster Flower Blue:  #9BACD8
   - Habañero (Orange):  #F98513
   - Jodhpur Tan:        #DAD1C8
   - Deep Space Royal:   #223382
   - Deadly Depths:      #111144
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:    #F4F1EC;
  --blue-lt:  #9BACD8;
  --orange:   #F98513;
  --tan:      #DAD1C8;
  --blue-dk:  #223382;
  --dark:     #111144;
  --text:     #2a2a4a;
  --muted:    #666;
  --radius:   12px;
  --radius-lg:20px;
  --shadow:   0 4px 24px rgba(17,17,68,.12);
  --shadow-lg:0 12px 48px rgba(17,17,68,.18);
  --trans:    0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.icon-svg {
  display: none; /* Hide any leftover SVGs if they still exist */
}

/* ── CONTAINER ─────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SECTION COMMON ────────────────────────────── */
.section { padding: 96px 0; }

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(249,133,19,.12);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.section-tag.light { color: var(--orange); background: rgba(249,133,19,.2); }

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

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title.light { color: #fff; }

.section-sub { color: var(--muted); font-size: 1.05rem; }
.section-sub.light { color: rgba(255,255,255,0.75); }

.accent { color: var(--orange); }

/* ── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--trans);
}
.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover {
  background: #e07610;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,133,19,.4);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  transform: translateY(-2px);
}
.full-w { width: 100%; justify-content: center; }

/* ── TOP BAR ─────────────────────────────────────── */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,.8);
  font-size: 0.8rem;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-divider { opacity: .3; margin: 0 4px; }
.topbar-icon {
  width: 13px; height: 13px;
  vertical-align: middle;
  margin-right: 4px;
  opacity: .85;
}
.footer-contact-icon {
  width: 14px; height: 14px;
  vertical-align: middle;
  margin-right: 5px;
}

/* ── NAVBAR ─────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(34,51,130,.1);
  transition: box-shadow var(--trans);
}
.navbar.scrolled { box-shadow: var(--shadow); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 52px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text .logo-title,
.logo-text .logo-sub {
  font-size: 1rem !important;
  font-weight: 800 !important;
  color: #223382 !important; /* Brand Blue */
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: .5px;
  position: relative;
  transition: color var(--trans);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--trans);
}
.nav-links a:hover { color: var(--blue-dk); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--trans);
}

/* ── HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Deep dark-blue brand background */
  background:
    radial-gradient(ellipse 70% 90% at 78% 50%, rgba(34,51,130,0.55) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 72% 48%, rgba(249,133,19,0.07) 0%, transparent 55%),
    linear-gradient(135deg, #070d1e 0%, #0c1432 35%, #101840 65%, #172054 100%);
}

/* Subtle grid lines */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(155,172,216,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(155,172,216,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 40%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  padding-top: 40px;
}
.hero-content {
  flex: 1;
  min-width: 0;
  max-width: 560px;
}

/* ── HERO 3D ──────────────────────────────────────── */
.hero-3d-wrapper {
  flex: 0 0 520px;
  width: 520px;
  height: 520px;
  position: relative;
  z-index: 2;
}

/* Outer glow ring behind the canvas */
.hero-3d-wrapper::before {
  content: '';
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(249,133,19,0.22) 0%,
    rgba(34,51,130,0.20) 40%,
    transparent 70%
  );
  pointer-events: none;
  animation: glowPulse 3.5s ease-in-out infinite;
}

/* Decorative ring */
.hero-3d-wrapper::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1px solid rgba(249,133,19,0.15);
  pointer-events: none;
  animation: rotateSlow 18s linear infinite;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    rgba(249,133,19,0.25) 20%,
    transparent 40%
  );
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.04); }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

#hero3d {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
}
.hero-badge {
  display: inline-block;
  background: rgba(249,133,19,.2);
  border: 1px solid rgba(249,133,19,.5);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeSlideIn .6s ease both;
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 24px;
  animation: fadeSlideIn .7s ease .1s both;
}
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  max-width: 540px;
  margin-bottom: 36px;
  animation: fadeSlideIn .7s ease .2s both;
}
.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeSlideIn .7s ease .3s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  animation: fadeSlideIn .7s ease .4s both;
}
.stat { text-align: center; padding: 0 28px; }
.stat:first-child { padding-left: 0; }
.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.5);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255,255,255,.4);
  border-bottom: 2px solid rgba(255,255,255,.4);
  transform: rotate(45deg);
  animation: bounce 1.6s ease infinite;
}

/* ── FEATURES BAR ────────────────────────────────── */
.features-bar {
  background: var(--blue-dk);
  padding: 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  min-height: 110px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background var(--trans);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(255,255,255,.05); }
.feature-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 28px; height: 28px; stroke: var(--orange); }
.feature-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.feature-item p {
  font-size: 0.78rem;
  color: rgba(255,255,255,.6);
}

/* ── ABOUT ──────────────────────────────────────── */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.about-img-main {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top center;
  transition: transform .5s ease;
}
.about-img-main:hover img { transform: scale(1.04); }
.about-img-secondary {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-secondary img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform .5s ease;
}
.about-img-secondary:hover img { transform: scale(1.04); }
.about-badge-box {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--orange);
  color: #fff;
  padding: 12px 16px;
  border-radius: var(--radius);
  text-align: center;
  line-height: 1.1;
}
.about-badge-num { font-size: 1.5rem; font-weight: 900; display: block; }
.about-badge-text { font-size: 0.7rem; font-weight: 600; opacity: .9; }

.about-text {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: .97rem;
}
.about-list {
  margin: 28px 0 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
}
.check {
  display: inline-flex;
  width: 22px;
  height: 22px;
  background: rgba(249,133,19,.15);
  color: var(--orange);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── SERVICES ────────────────────────────────────── */
.services {
  position: relative;
  background: var(--dark);
  overflow: hidden;
}
.services-bg {
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34,51,130,.5) 0%, transparent 70%);
  pointer-events: none;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--blue-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(249,133,19,.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon-wrap {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(249,133,19,.12);
  border-radius: 12px;
  margin-bottom: 20px;
}
.service-icon-wrap svg { width: 26px; height: 26px; stroke: var(--orange); }
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform var(--trans);
}
.service-card:hover .service-link {
  transform: translateX(6px);
}

/* ── PRODUCTS ──────────────────────────────────── */
.products { background: var(--white); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover img { transform: scale(1.08); }
.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,68,.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--trans);
}
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay h3 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.product-overlay p {
  color: rgba(255,255,255,.75);
  font-size: 0.82rem;
}
.products-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--blue-dk) 0%, var(--dark) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.products-cta p {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
}

/* ── PROJECTS ─────────────────────────────────── */
.projects {
  position: relative;
  background: var(--dark);
  overflow: hidden;
}
.projects-bg {
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(249,133,19,.08) 0%, transparent 60%);
  pointer-events: none;
}
.projects-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item.large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,68,.85) 0%, rgba(34,51,130,.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--trans);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 8px;
}
.gallery-overlay h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
/* Link as block so the whole card is clickable */
a.gallery-item { display: block; text-decoration: none; color: inherit; }
.gallery-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 6px;
  transition: background var(--trans), transform var(--trans);
  width: fit-content;
}
.gallery-item:hover .gallery-cta { background: #e07610; transform: translateX(3px); }

/* ── WHY US ──────────────────────────────────── */
.whyus { background: var(--white); }
.whyus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.whyus-stats {
  display: flex;
  gap: 36px;
  margin-top: 36px;
}
.ws-item { text-align: left; }
.ws-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.ws-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}
.whyus-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.wc-card {
  background: #fff;
  border: 1px solid rgba(34,51,130,.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: var(--trans);
}
.wc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.wc-card.accent-card {
  background: linear-gradient(135deg, var(--blue-dk) 0%, var(--dark) 100%);
  border: none;
}
.wc-card.accent-card h4 { color: #fff; }
.wc-card.accent-card p { color: rgba(255,255,255,.65); }
.wc-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.wc-icon svg { width: 26px; height: 26px; stroke: var(--orange); }
.accent-card .wc-icon svg { stroke: #fff; }
.wc-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.wc-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── CONTACT ─────────────────────────────────── */
.contact {
  position: relative;
  background: var(--blue-dk);
  overflow: hidden;
}
.contact-bg {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249,133,19,.12) 0%, transparent 60%);
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact-details { margin: 32px 0; display: flex; flex-direction: column; gap: 20px; }
.cd-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.cd-icon {
  width: 44px;
  height: 44px;
  background: rgba(249,133,19,.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cd-icon svg { width: 20px; height: 20px; stroke: var(--orange); }
.cd-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}
.cd-value {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--trans);
}
a.cd-value:hover { color: var(--orange); }
.contact-owner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-top: 8px;
}
.owner-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--orange);
  filter: grayscale(20%);
}
.contact-owner strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}
.contact-owner span {
  display: block;
  color: rgba(255,255,255,.55);
  font-size: 0.8rem;
}

/* ── CONTACT FORM ────────────────────────────── */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid #e8e8ec;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--dark);
  background: #fff;
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-dk);
  box-shadow: 0 0 0 3px rgba(34,51,130,.12);
}
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 14px;
}

/* ── MAP ─────────────────────────────────────── */
.map-strip {
  width: 100%;
  overflow: hidden;
}
.map-strip iframe {
  display: block;
}

/* ── FOOTER ──────────────────────────────────── */
.footer {
  background: var(--dark);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
  margin: 16px 0 24px;
  line-height: 1.7;
}
.footer-logo {
  height: 52px;
  border-radius: 8px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.65);
  transition: color var(--trans);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-contact a:hover { color: var(--orange); }
.footer-col h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
  transition: color var(--trans);
}
.footer-col ul li a:hover { color: var(--orange); }
.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,.5);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.footer-emergency {
  margin-top: 20px;
  background: rgba(249,133,19,.1);
  border: 1px solid rgba(249,133,19,.3);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-emergency span {
  font-size: 0.75rem;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-emergency a {
  font-size: 0.88rem;
  color: #fff;
  font-weight: 600;
  transition: color var(--trans);
}
.footer-emergency a:hover { color: var(--orange); }
.footer-bottom {
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,.3);
}

/* ── FLOAT CALL ──────────────────────────────── */
.float-call {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(249,133,19,.5);
  transition: transform var(--trans), box-shadow var(--trans);
  animation: pulse 2.5s ease infinite;
}
.float-call svg { width: 24px; height: 24px; stroke: #fff; }
.float-call:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 36px rgba(249,133,19,.7);
  animation: none;
}

/* ── ANIMATIONS ──────────────────────────────── */
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(8px); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(249,133,19,.5); }
  50%       { box-shadow: 0 8px 40px rgba(249,133,19,.8); }
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-layout { flex-direction: column; align-items: flex-start; gap: 0; }
  .hero-content { max-width: 100%; }
  .hero-3d-wrapper { display: none; }
}

@media (max-width: 768px) {
  /* Hide topbar — frees up space and fixes nav dropdown position */
  .topbar { display: none; }

  .section { padding: 56px 0; }
  .section-header { margin-bottom: 40px; }

  /* Nav dropdown positions right below the navbar */
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(34,51,130,.1);
    transform: translateY(-120%);
    transition: transform var(--trans);
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); }
  .hamburger { display: flex; }

  /* Hero */
  .hero { min-height: auto; padding: 72px 0 56px; }
  .hero-badge { letter-spacing: 1px; padding: 6px 14px; font-size: 0.72rem; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); letter-spacing: -0.5px; }
  .hero-desc { font-size: 1rem; margin-bottom: 28px; }
  .hero-cta-row { flex-direction: column; gap: 12px; margin-bottom: 40px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; justify-content: flex-start; }
  .stat-divider { display: none; }
  .stat { padding: 0 16px 0 0; }
  .hero-scroll-hint { display: none; }
  .hero-3d-wrapper { display: flex; width: 220px; height: 220px; margin: 32px auto 0; flex: none; }

  /* Features bar */
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 20px 16px; }
  .feature-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-images { grid-template-columns: 1fr; }
  .about-img-main { grid-column: auto; }
  .about-list { grid-template-columns: 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Products */
  .products-grid { grid-template-columns: 1fr; }
  .products-cta { flex-direction: column; text-align: center; gap: 16px; }

  /* Projects gallery */
  .projects-gallery { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gallery-item.large { grid-column: span 2; aspect-ratio: 16/9; }

  /* Why us */
  .whyus-grid { grid-template-columns: 1fr; gap: 40px; }
  .whyus-stats { flex-wrap: wrap; gap: 20px; }
  .whyus-cards { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; align-items: center; text-align: center; gap: 6px; }

  /* Buttons */
  .btn { width: 100%; justify-content: center; }
}

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

  /* Features & projects full width */
  .features-grid { grid-template-columns: 1fr; }
  .projects-gallery { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: auto; aspect-ratio: 4/3; }

  /* Why us cards */
  .whyus-cards { grid-template-columns: 1fr; }

  /* Footer single column */
  .footer-grid { grid-template-columns: 1fr; }

  /* Contact form */
  .contact-form-wrap { padding: 20px 16px; }

  /* Float call button */
  .float-call { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}
