/* ============================================================
   JB HOMEWORKS — Main Stylesheet
   Brand Colors:
     Navy (primary bg):  #0B2540
     Gold/Cream (accent): #FADCA4
     Dark Navy:           #071b2e
     Mid Navy:            #102f50
============================================================ */

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

:root {
  --navy:        #0B2540;
  --navy-dark:   #071b2e;
  --navy-mid:    #102f50;
  --navy-light:  #163c61;
  --gold:        #FADCA4;
  --gold-dark:   #e6c27a;
  --gold-light:  #fce8c3;
  --white:       #ffffff;
  --text-light:  #e2e8f0;
  --text-muted:  #94a3b8;
  --font-head:   'Oswald', sans-serif;
  --font-body:   'Open Sans', sans-serif;
  --transition:  0.3s ease;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.2);
  --shadow-md:   0 8px 24px rgba(0,0,0,0.35);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.5);
  --radius:      8px;
  --radius-lg:   16px;
}

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

body {
  font-family: var(--font-body);
  background: var(--navy-dark);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ------ UTILITY CLASSES ------ */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 96px 0; }

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

.section-eyebrow {
  display: block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

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

/* ------ SHARED BG IMAGE LAYERS ------ */
/* Every section that needs a bg photo uses these helpers */
.section-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.section-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg,
    rgba(7,27,46,0.88) 0%,
    rgba(11,37,64,0.80) 50%,
    rgba(7,27,46,0.88) 100%);
}

.section-bg-overlay--dark {
  background: linear-gradient(135deg,
    rgba(4,16,30,0.93) 0%,
    rgba(7,27,46,0.90) 100%);
}

.section-bg-overlay--why {
  background: linear-gradient(135deg,
    rgba(7,27,46,0.82) 0%,
    rgba(11,37,64,0.72) 100%);
}

/* ------ BUTTONS ------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 32px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: 0 4px 20px rgba(250,220,164,0.35);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(250,220,164,0.5);
}

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

.btn-full { width: 100%; justify-content: center; }
.btn-sm   { padding: 10px 22px; font-size: 0.85rem; }

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

.navbar.scrolled {
  background: rgba(7,27,46,0.97);
  backdrop-filter: blur(12px);
  padding: 8px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Real logo image in nav */
.nav-logo-img {
  height: 64px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
  transition: transform var(--transition);
}
.nav-logo:hover .nav-logo-img { transform: scale(1.04); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active { color: var(--gold); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: all var(--transition);
  margin-left: 10px;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

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

/* ============================================================
   HERO SECTION — full-bleed photo
============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 140px 24px 100px;
}

/* The actual full-bleed photo */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
  /* Slow Ken-Burns zoom on load */
  animation: heroZoom 20s ease-in-out infinite alternate;
}

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

/* Gradient overlay so text is legible */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(7,27,46,0.70) 0%,
      rgba(7,27,46,0.55) 40%,
      rgba(7,27,46,0.75) 100%),
    radial-gradient(ellipse at 60% 50%, rgba(250,220,164,0.06) 0%, transparent 65%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  width: 100%;
}

/* Big centered logo above headline */
.hero-logo-wrap {
  margin-bottom: 36px;
  display: flex;
  justify-content: center;
}

.hero-logo-img {
  width: clamp(180px, 28vw, 280px);
  height: auto;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.6));
  animation: fadeSlideDown 0.9s ease both;
}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(250,220,164,0.1);
  border: 1px solid rgba(250,220,164,0.28);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeSlideDown 0.9s 0.15s ease both;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 700;
  line-height: 1.04;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 22px;
  text-shadow: 0 3px 20px rgba(0,0,0,0.5);
  animation: fadeSlideDown 0.9s 0.25s ease both;
}

.headline-accent {
  color: var(--gold);
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.75;
  animation: fadeSlideDown 0.9s 0.35s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeSlideDown 0.9s 0.45s ease both;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeSlideDown 0.9s 0.55s ease both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}
.trust-item .fa-star       { color: #f59e0b; font-size: 0.75rem; }
.trust-item .fa-shield-alt,
.trust-item .fa-clock      { color: var(--gold); }
.trust-item span { font-family: var(--font-head); letter-spacing: 0.05em; }

.trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(250,220,164,0.25);
}

/* Scroll hint arrow */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-hint a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border: 2px solid rgba(250,220,164,0.35);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.9rem;
  animation: bounce 2.2s infinite;
  transition: all var(--transition);
}
.hero-scroll-hint a:hover { border-color: var(--gold); background: rgba(250,220,164,0.12); }

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

/* ============================================================
   ABOUT SECTION
============================================================ */
.about {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.about-inner { position: relative; z-index: 2; }

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

/* Photo card */
.about-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Logo badge overlaid on photo corner */
.about-photo-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--navy-dark);
  border-radius: var(--radius);
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(250,220,164,0.2);
}
.badge-logo {
  width: 120px;
  height: auto;
  display: block;
}

.about-stat-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.stat-card {
  background: var(--navy-mid);
  border: 1px solid rgba(250,220,164,0.12);
  border-radius: var(--radius);
  padding: 22px 12px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.stat-card:hover { border-color: rgba(250,220,164,0.38); transform: translateY(-3px); }

.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.about-content .section-eyebrow { text-align: left; }
.about-content .section-title   { text-align: left; }

.about-body {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 1.02rem;
  line-height: 1.82;
}
.about-body strong { color: var(--gold); font-weight: 600; }

.about-list {
  margin: 22px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 0.98rem;
  color: var(--text-light);
}
.about-list .fa-check-circle { color: var(--gold); font-size: 1.05rem; flex-shrink: 0; }

/* ============================================================
   SERVICES SECTION — textured bg
============================================================ */
.services {
  position: relative;
  overflow: hidden;
  background: var(--navy-dark);
}

.services .container { position: relative; z-index: 2; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: rgba(11,37,64,0.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(250,220,164,0.12);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  border-color: rgba(250,220,164,0.32);
  transform: translateY(-7px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
  background: rgba(16,47,80,0.92);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 54px; height: 54px;
  background: rgba(250,220,164,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.35rem;
  color: var(--gold);
  transition: background var(--transition);
}
.service-card:hover .service-icon { background: rgba(250,220,164,0.2); }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.service-card--cta {
  background: rgba(250,220,164,0.07);
  border-color: rgba(250,220,164,0.28);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.service-card--cta .service-icon { margin: 0 auto 20px; }
.service-card--cta .btn { margin-top: 20px; }

/* ============================================================
   WHY CHOOSE US — dramatic full-bleed
============================================================ */
.why-us {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
}

.why-inner { position: relative; z-index: 2; }

.why-header {
  text-align: center;
  margin-bottom: 56px;
}

.why-title {
  font-size: clamp(2rem, 4vw, 3rem);
}

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

.why-item {
  text-align: center;
  padding: 36px 24px;
  background: rgba(7,27,46,0.6);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(250,220,164,0.14);
  transition: all var(--transition);
}
.why-item:hover {
  background: rgba(11,37,64,0.8);
  border-color: rgba(250,220,164,0.3);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}

.why-item h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.why-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   CONTACT SECTION
============================================================ */
.contact { background: var(--navy); }

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

/* Form */
.contact-form {
  background: var(--navy-mid);
  border: 1px solid rgba(250,220,164,0.1);
  border-radius: var(--radius-lg);
  padding: 44px;
}

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

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

.form-group label {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.req { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--navy);
  border: 1.5px solid rgba(250,220,164,0.15);
  border-radius: var(--radius);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.97rem;
  padding: 14px 17px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23FADCA4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 38px;
}
.form-group select option { background: var(--navy-dark); color: var(--text-light); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: #3d5270; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(250,220,164,0.12);
}

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

.form-error {
  font-size: 0.78rem;
  color: #f87171;
  min-height: 16px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #86efac;
  font-weight: 600;
  margin-top: 16px;
}

/* Contact Info Sidebar */
.contact-info h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(250,220,164,0.1);
  text-decoration: none;
  transition: color var(--transition);
}
.contact-info-item:first-of-type { border-top: 1px solid rgba(250,220,164,0.1); }
.contact-info-item:hover { color: var(--gold); }

.ci-icon {
  width: 46px; height: 46px;
  background: rgba(250,220,164,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: background var(--transition);
}
.contact-info-item:hover .ci-icon { background: rgba(250,220,164,0.18); }

.ci-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ci-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-head);
}
.ci-value {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 600;
  font-family: var(--font-head);
}

.social-section { margin-top: 28px; }
.social-section h4 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.social-links { display: flex; gap: 12px; }

.social-btn {
  width: 46px; height: 46px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: var(--navy-mid);
  border: 1px solid rgba(250,220,164,0.15);
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-btn:hover {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(250,220,164,0.3);
}

.contact-badge {
  margin-top: 28px;
  background: rgba(250,220,164,0.07);
  border: 1px solid rgba(250,220,164,0.2);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}
.contact-badge .fa-shield-alt { color: var(--gold); font-size: 1.4rem; flex-shrink: 0; }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(250,220,164,0.1);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1fr;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(250,220,164,0.08);
}

/* Real logo in footer */
.footer-logo-img {
  width: 150px;
  height: auto;
  display: block;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  transition: transform var(--transition);
}
.footer-brand a:hover .footer-logo-img { transform: scale(1.03); }

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 260px;
}

.footer-links h5,
.footer-services-list h5,
.footer-contact-col h5 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links ul,
.footer-services-list ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-services-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-col p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.footer-contact-col p i  { color: var(--gold); width: 14px; }
.footer-contact-col a    { color: var(--text-muted); transition: color var(--transition); }
.footer-contact-col a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  width: 38px; height: 38px;
  background: var(--navy-mid);
  border: 1px solid rgba(250,220,164,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }

/* ============================================================
   BACK TO TOP
============================================================ */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 48px; height: 48px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 999;
}
.back-to-top.visible  { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-to-top:hover    { background: var(--gold-light); transform: translateY(-3px); }

/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
============================================================ */
@media (max-width: 1024px) {
  .about-grid  { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 560px; margin: 0 auto; }
  .why-grid    { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
============================================================ */
@media (max-width: 768px) {
  .section-pad { padding: 68px 0; }

  /* Navbar */
  .nav-toggle { display: flex; }
  .nav-logo-img { height: 52px; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 82vw);
    height: 100vh;
    background: var(--navy-dark);
    border-left: 1px solid rgba(250,220,164,0.14);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 4px;
    transition: right var(--transition);
    z-index: 999;
    box-shadow: -8px 0 36px rgba(0,0,0,0.4);
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 1.1rem; padding: 13px 0; width: 100%; }
  .nav-cta  { margin-left: 0; margin-top: 18px; width: 100%; justify-content: center; }

  /* Hero */
  .hero { padding: 110px 24px 80px; }
  .hero-logo-img { width: clamp(160px, 50vw, 220px); }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .trust-divider { display: none; }
  .hero-trust { flex-direction: column; gap: 12px; }

  /* About */
  .about-photo-frame { aspect-ratio: 3/2; }
  .about-stat-cards { grid-template-columns: repeat(2,1fr); gap: 10px; }

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

  /* Why */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .why-us { padding: 72px 0; }

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

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.4rem; }
  .why-grid      { grid-template-columns: 1fr; }
  .stat-num      { font-size: 1.6rem; }
  .footer-grid   { gap: 24px; }
}
