/* ============================================================
   ROTARI CONSTRUCTION INC — style.css
   Palette: #0A1628 (navy) · #E87722 (amber) · #FFFFFF (white)
   Fonts: Oswald (headings) + Open Sans (body) via Google Fonts
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Open+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --navy:       #0A1628;
  --navy-mid:   #0f1f3d;
  --navy-light: #152444;
  --amber:      #E87722;
  --amber-dark: #c5621a;
  --amber-glow: rgba(232, 119, 34, 0.18);
  --white:      #FFFFFF;
  --off-white:  #F4F5F7;
  --gray:       #8C98AA;
  --gray-light: #D4D9E1;
  --text-dark:  #1a2a42;
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.35);
  --shadow-md:  0 8px 30px rgba(0,0,0,0.2);
  --shadow-sm:  0 3px 12px rgba(0,0,0,0.12);
  --radius:     6px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Oswald', sans-serif; line-height: 1.15; }

.section-label {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
}

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

.section-body {
  font-size: 1.0rem;
  color: #4a5568;
  max-width: 620px;
  line-height: 1.8;
}

.divider {
  width: 56px; height: 4px;
  background: var(--amber);
  margin-bottom: 2rem;
}

.divider.center { margin-left: auto; margin-right: auto; }

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

section { padding: 100px 0; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(232, 119, 34, 0.4);
}
.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 119, 34, 0.55);
}

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

.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 22px 0;
}

#navbar.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
  padding: 14px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo-icon {
  width: 44px; height: 44px;
  background: var(--amber);
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text .name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-logo-text .sub {
  font-size: 0.62rem;
  color: var(--amber);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

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

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--amber);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-links .btn { padding: 10px 24px; font-size: 0.85rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
}

.mobile-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--amber); }

.mobile-nav .btn { font-size: 1rem; padding: 14px 40px; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  animation: heroZoom 14s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.92) 0%,
    rgba(10, 22, 40, 0.78) 50%,
    rgba(10, 22, 40, 0.65) 100%
  );
}

/* Diagonal amber accent */
.hero-accent {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 8px;
  background: var(--amber);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 100px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both;
}

.hero-eyebrow-line {
  width: 40px; height: 2px;
  background: var(--amber);
}

.hero-eyebrow span {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
}

.hero-title {
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.08;
  margin-bottom: 0.3rem;
  animation: fadeUp 0.8s 0.15s ease both;
}

.hero-title-accent {
  color: var(--amber);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.25s ease both;
}

.hero-tagline {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin-bottom: 2.8rem;
  font-weight: 300;
  line-height: 1.75;
  animation: fadeUp 0.8s 0.35s ease both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s ease both;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0;
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.12);
  animation: fadeUp 0.8s 0.6s ease both;
}

.hero-stat {
  flex: 1;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; }

.hero-stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

/* ── Arrow bounce ── */
.scroll-arrow {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 38px; height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: border-color var(--transition);
}
.scroll-arrow:hover { border-color: var(--amber); }
.scroll-arrow svg { fill: none; stroke: rgba(255,255,255,0.6); stroke-width: 2; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   ABOUT
   ============================================================ */
#about { background: var(--off-white); }

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

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.about-image-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--amber);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-image-badge .num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.about-image-badge .lbl {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 4px;
}

.about-image-frame {
  position: absolute;
  top: -16px; left: -16px;
  right: 32px; bottom: 32px;
  border: 3px solid var(--amber);
  border-radius: var(--radius);
  z-index: 0;
  pointer-events: none;
}

.about-image-wrapper .about-image { position: relative; z-index: 1; }

.about-text .section-body { max-width: 100%; margin-bottom: 1.5rem; }

.about-checklist {
  margin: 1.8rem 0 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.96rem;
  color: #3a4a5c;
}

.check-icon {
  width: 22px; height: 22px;
  background: var(--amber);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-icon svg { width: 12px; height: 12px; stroke: white; stroke-width: 2.5; fill: none; }

/* ============================================================
   SERVICES
   ============================================================ */
#services { background: var(--white); }

.services-header { text-align: center; margin-bottom: 60px; }
.services-header .section-body { margin: 0 auto; text-align: left; max-width: 560px; }
.services-header .divider { margin: 0 auto 1.5rem; }

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

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--amber);
  transition: width var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before { width: 100%; }

.service-card-number {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(232, 119, 34, 0.08);
  line-height: 1;
  position: absolute;
  top: 16px; right: 24px;
  user-select: none;
  transition: color var(--transition);
}
.service-card:hover .service-card-number { color: rgba(232, 119, 34, 0.14); }

.service-icon {
  width: 58px; height: 58px;
  background: var(--amber-glow);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: background var(--transition);
}
.service-card:hover .service-icon { background: var(--amber); }

.service-icon svg {
  width: 28px; height: 28px;
  stroke: var(--amber);
  stroke-width: 1.8;
  fill: none;
  transition: stroke var(--transition);
}
.service-card:hover .service-icon svg { stroke: var(--white); }

.service-card h3 {
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-card p {
  font-size: 0.9rem;
  color: #5a6a7e;
  line-height: 1.75;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
#why {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* Geometric background texture */
#why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.015) 0px,
      rgba(255,255,255,0.015) 1px,
      transparent 1px,
      transparent 40px
    );
  pointer-events: none;
}

#why::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,119,34,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.why-header { text-align: center; margin-bottom: 64px; }
.why-header .section-title { color: var(--white); }
.why-header .section-body { color: rgba(255,255,255,0.6); margin: 0 auto; }
.why-header .divider { margin: 0 auto 1.5rem; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--amber);
  transform: translateY(-6px);
}

.why-icon {
  width: 68px; height: 68px;
  background: var(--amber-glow);
  border: 1px solid rgba(232,119,34,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  transition: background var(--transition), border-color var(--transition);
}
.why-card:hover .why-icon {
  background: var(--amber);
  border-color: var(--amber);
}

.why-icon svg {
  width: 30px; height: 30px;
  stroke: var(--amber);
  stroke-width: 1.8;
  fill: none;
  transition: stroke var(--transition);
}
.why-card:hover .why-icon svg { stroke: var(--white); }

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.contact-info .section-body { max-width: 100%; margin-bottom: 2.4rem; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 22px; height: 22px;
  stroke: var(--amber);
  stroke-width: 1.8;
  fill: none;
}

.contact-item-text strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-item-text a,
.contact-item-text span {
  font-size: 0.92rem;
  color: #5a6a7e;
  transition: color var(--transition);
}
.contact-item-text a:hover { color: var(--amber); }

/* Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

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

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

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--navy);
}

.form-group input,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232, 119, 34, 0.12);
}

.form-group textarea { resize: vertical; min-height: 130px; }

#submit-btn {
  width: 100%;
  padding: 16px;
  justify-content: center;
  font-size: 1rem;
  margin-top: 8px;
  position: relative;
}

#submit-btn .btn-text { transition: opacity 0.2s; }
#submit-btn .btn-loader {
  display: none;
  position: absolute;
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

#submit-btn.loading .btn-text { opacity: 0; }
#submit-btn.loading .btn-loader { display: block; }

@keyframes spin { to { transform: rotate(360deg); } }

.form-message {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
}

.form-message.success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.form-message.error {
  display: block;
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .nav-logo { margin-bottom: 20px; }

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--amber);
  transition: opacity var(--transition);
}
.footer-phone:hover { opacity: 0.8; }
.footer-phone svg { width: 20px; height: 20px; stroke: var(--amber); stroke-width: 1.8; fill: none; }

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--amber);
  display: inline-block;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition), padding-left var(--transition);
  display: block;
}
.footer-col ul li a:hover { color: var(--amber); padding-left: 6px; }

.footer-col .addr {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom p span { color: var(--amber); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-image-wrapper { order: -1; }
  .about-image-badge { bottom: -16px; right: -12px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
    border-top: none;
    padding-top: 28px;
  }
  .hero-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 0 0 20px;
  }
  .hero-stat:last-child { border-bottom: none; padding-bottom: 0; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; }

  .contact-form-wrapper { padding: 32px 24px; }

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

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .why-grid { grid-template-columns: 1fr; }
  .about-image-frame { display: none; }
  .about-image-badge { position: static; margin-top: 16px; display: inline-block; }
}
