/* ============================================================
   SP Technology Solutions — Main Stylesheet
   Color System: Dark Navy + Orange (SH Enterprise reference)
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --navy:       #0d1b2a;
  --navy-mid:   #162233;
  --navy-light: #1e3048;
  --orange:     #e8500a;
  --orange-hover: #c94208;
  --orange-light: #ff6b1a;
  --white:      #ffffff;
  --light-bg:   #f5f7fa;
  --gray:       #6b7280;
  --gray-light: #e5e7eb;
  --text-dark:  #1a1a2e;
  --text-body:  #374151;

  --font-main: 'Inter', sans-serif;
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius:    6px;
  --radius-lg: 12px;
}

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

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

body {
  font-family: var(--font-main);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

/* ---------- Typography ---------- */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-title span { color: var(--orange); }

.section-sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
}
.btn-primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,80,10,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-outline-dark {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline-dark:hover {
  background: var(--orange);
  color: var(--white);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--navy-light);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.topbar-contact {
  display: flex;
  gap: 20px;
  align-items: center;
}

.topbar-contact a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.75);
}
.topbar-contact a:hover { color: var(--orange); }
.topbar-contact i { color: var(--orange); font-size: 0.8rem; }

.topbar-social {
  display: flex;
  gap: 10px;
}
.topbar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy-light);
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  transition: var(--transition);
}
.topbar-social a:hover {
  background: var(--orange);
  color: var(--white);
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}

.logo-text .name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.3px;
}
.logo-text .tagline {
  font-size: 0.68rem;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }

.nav-link {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-link:hover,
.nav-link.active { color: var(--orange); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  margin-left: 10px;
  padding: 9px 22px;
  font-size: 0.88rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13,27,42,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link {
  color: var(--white);
  font-size: 1.3rem;
  padding: 14px 40px;
}
.mobile-nav .nav-link:hover { color: var(--orange); }
.mobile-nav .nav-cta { margin-top: 10px; }
.mobile-nav-close {
  position: absolute;
  top: 22px; right: 22px;
  font-size: 1.8rem;
  color: var(--white);
  cursor: pointer;
  padding: 6px 12px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 600px;
  background:
    linear-gradient(135deg, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.75) 60%, rgba(232,80,10,0.3) 100%),
    url('../images/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Fallback pattern when no image */
.hero-pattern {
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1a3a5c 100%);
}

.hero::before {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-content {
  max-width: 680px;
  padding: 80px 0 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,80,10,0.2);
  border: 1px solid rgba(232,80,10,0.4);
  color: var(--orange-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-badge i { font-size: 0.75rem; }

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 20px;
}
.hero-title span { color: var(--orange-light); }

.hero-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat .num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--orange-light);
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ============================================================
   ABOUT SNIPPET
   ============================================================ */
.about-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  background: var(--navy-mid);
}

.about-img-placeholder {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 3rem;
}

.about-img-placeholder p {
  font-size: 0.9rem;
  margin-top: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-badge-box {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--orange);
  color: var(--white);
  padding: 22px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge-box .big { font-size: 2.2rem; font-weight: 800; line-height: 1; }
.about-badge-box .small { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.5px; margin-top: 4px; opacity: 0.9; }

.about-content { padding-right: 20px; }

.about-features {
  margin: 28px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about-feature-icon {
  width: 42px;
  height: 42px;
  background: rgba(232,80,10,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.about-feature h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.about-feature p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { background: var(--light-bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid var(--gray-light);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(232,80,10,0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--orange);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--orange);
  color: var(--white);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 18px;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link:hover gap { gap: 10px; }
.service-link i { transition: var(--transition); font-size: 0.75rem; }
.service-card:hover .service-link i { transform: translateX(4px); }

/* ============================================================
   PROJECTS / PORTFOLIO
   ============================================================ */
.projects-section { background: var(--white); }

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  background: var(--navy-light);
  cursor: pointer;
}

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

.project-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 2.5rem;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.92) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
  transition: var(--transition);
}

.project-card:hover .project-img { transform: scale(1.06); }

.project-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 6px;
}

.project-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 50px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--orange-light);
  line-height: 1;
}
.stat-plus { color: var(--orange); }
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 8px;
}

/* ============================================================
   PARTNERS STRIP
   ============================================================ */
.partners-section { background: var(--light-bg); }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.partner-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
}
.partner-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
  transform: translateY(-3px);
}

.partner-logo {
  width: 52px;
  height: 52px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
}

.partner-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}
.partner-card .role {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.partner-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background:
    linear-gradient(135deg, rgba(13,27,42,0.95) 0%, rgba(232,80,10,0.85) 100%),
    url('../images/cta-bg.jpg') center/cover no-repeat;
  padding: 80px 0;
  text-align: center;
}
.cta-section .section-title { color: var(--white); }
.cta-section .section-title span { color: var(--orange-light); }
.cta-section .section-sub { color: rgba(255,255,255,0.8); margin: 0 auto 36px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text .name { color: var(--white); }
.footer-brand .logo-text .tagline { color: rgba(255,255,255,0.5); }

.footer-about {
  font-size: 0.88rem;
  line-height: 1.75;
  margin: 18px 0 22px;
  color: rgba(255,255,255,0.6);
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--orange);
  color: var(--white);
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a::before {
  content: '›';
  color: var(--orange);
  font-size: 1rem;
  font-weight: 700;
}
.footer-links a:hover { color: var(--orange-light); padding-left: 4px; }

.footer-contact-items { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.footer-contact-item i {
  color: var(--orange);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: var(--orange); }
.footer-bottom a:hover { color: var(--orange-light); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-btn-group {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
}

.whatsapp-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: pulse-green 2.5s infinite;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}

.back-top-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}
.back-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-top-btn:hover {
  background: var(--orange-hover);
  transform: translateY(-3px);
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}

/* ============================================================
   PAGE HERO BANNER (inner pages)
   ============================================================ */
.page-hero {
  background:
    linear-gradient(135deg, rgba(13,27,42,0.9) 0%, rgba(13,27,42,0.75) 100%),
    url('../images/hero-bg.jpg') center/cover no-repeat;
  padding: 70px 0;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.breadcrumb a { color: var(--orange-light); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 0.65rem; color: rgba(255,255,255,0.4); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--light-bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-top: 48px;
}

/* Contact Form */
.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}
.contact-form-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.contact-form-box .sub {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--text-body);
  transition: var(--transition);
  background: var(--white);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,80,10,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; cursor: pointer; }

.form-submit { width: 100%; justify-content: center; padding: 14px; font-size: 1rem; }

/* Locations */
.locations-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.locations-box .sub {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 28px;
}

.location-cards { display: flex; flex-direction: column; gap: 16px; }

.location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.location-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}

.location-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.location-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.location-info p {
  font-size: 0.83rem;
  color: var(--gray);
  line-height: 1.55;
}
.location-info a { color: var(--orange); font-weight: 600; }
.location-info a:hover { color: var(--orange-hover); }

/* Map */
.map-section { padding: 0; }
.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-10 { margin-bottom: 10px; }
.hidden { display: none !important; }
