/* ============================================================
   ALPHA RENOVATIONS – Main Stylesheet
   Colours extracted from logo:
     Navy  #1C4580   Gold  #C9A020   Teal  #4FA8A0
   ============================================================ */

/* ── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  --navy:        #1C4580;
  --navy-dark:   #142e5a;
  --navy-mid:    #1e4d92;
  --gold:        #C9A020;
  --gold-light:  #e0b82a;
  --teal:        #4FA8A0;
  --teal-dark:   #3a8c84;
  --dark:        #0d1b2a;
  --gray:        #6b7280;
  --gray-light:  #9ca3af;
  --light:       #f4f6f9;
  --white:       #ffffff;
  --border:      #dde3ed;
  --shadow:      0 2px 8px rgba(0,0,0,.10);
  --shadow-md:   0 4px 16px rgba(0,0,0,.14);
  --shadow-lg:   0 10px 32px rgba(0,0,0,.18);
  --radius:      6px;
  --radius-lg:   12px;
  --transition:  0.25s ease;
  --max-width:   1200px;
}

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

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

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

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-gold   { color: var(--gold); }
.text-teal   { color: var(--teal); }
.text-white  { color: var(--white); }
.text-gray   { color: var(--gray); }
.text-center { text-align: center; }

/* ── LAYOUT UTILITIES ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

.section-header h2 {
  margin-bottom: .75rem;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 1.05rem;
}

.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  border-radius: 2px;
  margin: 1rem auto 0;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

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

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

/* ── NAVIGATION ─────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy-dark);
  transition: all var(--transition);
}

.site-nav.scrolled {
  background: rgba(20, 46, 90, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 72px;
  width: auto;
}

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

.nav-links a {
  display: block;
  padding: .5rem 1.1rem;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: color var(--transition);
  position: relative;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: var(--gold);
  font-weight: 700;
  font-size: .9rem;
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--gold-light); }

.nav-phone svg { flex-shrink: 0; }

.nav-cta {
  padding: .55rem 1.3rem;
  font-size: .85rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  background: var(--light);
  overflow: hidden;
  padding-bottom: 2rem;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 72px;
}

.hero-letterhead {
  background: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 3rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 0;
}

.hero-logo-side {
  flex-shrink: 0;
}

.hero-logo-main {
  max-width: 360px;
  width: 100%;
  height: auto;
}

.hero-contact-side {
  text-align: right;
  flex-shrink: 0;
}

.hero-callout {
  display: block;
  font-family: var(--font-heading);
  font-size: .95rem;
  color: var(--gray);
  font-weight: 600;
  font-style: italic;
  letter-spacing: .02em;
  margin-bottom: .35rem;
}

.hero-phone {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: .02em;
  line-height: 1.2;
}

.hero-phone:hover {
  color: var(--teal-dark);
}

.hero-phone-secondary {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray);
  text-decoration: none;
  margin-top: .15rem;
}

.hero-phone-secondary:hover {
  color: var(--teal-dark);
}

.hero-swoosh {
  margin-top: -2px;
  line-height: 0;
  position: relative;
}

.hero-swoosh svg {
  width: 100%;
  height: 100px;
  display: block;
}

.hero-lower {
  background: var(--navy);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 2rem 3rem 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201, 160, 32, 0.15);
  border: 1px solid rgba(201, 160, 32, 0.4);
  color: var(--gold);
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: var(--gold);
  display: block;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stat {
  text-align: left;
}

.hero-stat .number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}

.hero-stat .label {
  display: block;
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .25rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll svg {
  color: var(--navy);
}

.hero-scroll span {
  color: var(--navy);
}

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

/* ── SERVICES ───────────────────────────────────────────────── */
.services { background: var(--light); }

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--border);
}

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

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 auto 1.25rem;
  transition: transform var(--transition);
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-3deg);
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: .5rem;
  color: var(--navy);
}

.service-card p {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ── WHY CHOOSE US ──────────────────────────────────────────── */
.why-us {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.why-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold);
  background: var(--light);
  transition: all var(--transition);
}

.why-card:nth-child(2) { border-left-color: var(--teal); }
.why-card:nth-child(3) { border-left-color: var(--navy); }

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-number {
  font-size: 3rem;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
  color: var(--gold);
  opacity: .2;
  line-height: 1;
  margin-bottom: .5rem;
}

.why-card:nth-child(2) .why-number { color: var(--teal); }
.why-card:nth-child(3) .why-number { color: var(--navy); }

.why-card h3 { margin-bottom: .75rem; }
.why-card p { color: var(--gray); font-size: .95rem; }

/* ── FEATURED WORK (HOME) ───────────────────────────────────── */
.featured-work { background: var(--light); }

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.work-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.work-card-label {
  background: var(--navy);
  padding: .75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.work-card-label span {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
}

.work-card-label .category-badge {
  background: var(--gold);
  color: var(--navy-dark);
  padding: .2rem .7rem;
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 700;
}

/* ── BEFORE / AFTER COMPARISON SLIDER ──────────────────────── */
.comparison-container {
  position: relative;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  touch-action: pan-y;
  border-radius: var(--radius);
}

.comparison-container img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-before {
  position: relative;
  z-index: 1;
}

.comparison-after {
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: inset(0 0 0 50%);
  transition: clip-path 0s;
}

.comparison-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 10;
  width: 4px;
  background: var(--white);
  transform: translateX(-50%);
  cursor: col-resize;
  box-shadow: 0 0 0 2px rgba(0,0,0,.2);
}

.comparison-handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  color: var(--navy);
  font-size: 1rem;
}

.comparison-label {
  position: absolute;
  top: .75rem;
  z-index: 5;
  background: rgba(0,0,0,.55);
  color: var(--white);
  padding: .25rem .75rem;
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.label-before { left: 25%; transform: translateX(-50%); }
.label-after  { left: 75%; transform: translateX(-50%); }

/* Fixed height containers for sliders */
.comparison-container.h-280 { height: 280px; }
.comparison-container.h-360 { height: 360px; }
.comparison-container.h-420 { height: 420px; }
.comparison-container.h-480 { height: 480px; }
.comparison-container.h-500 { height: 500px; }

/* ── PORTFOLIO PAGE ─────────────────────────────────────────── */
.portfolio-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 8rem 0 4rem;
  text-align: center;
  color: var(--white);
}

.portfolio-hero h1 { color: var(--white); margin-bottom: .75rem; }
.portfolio-hero p { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* Category Filter Tabs */
.portfolio-filters {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 72px;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.filter-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.filter-tabs::-webkit-scrollbar { display: none; }

.filter-tab {
  display: block;
  padding: 1.1rem 1.4rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 3px solid transparent;
  transition: all var(--transition);
  font-family: inherit;
}

.filter-tab:hover {
  color: var(--navy);
  border-bottom-color: var(--border);
}

.filter-tab.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

/* Portfolio Grid */
.portfolio-section { background: var(--light); }

.portfolio-category {
  display: none;
}

.portfolio-category.active {
  display: block;
}

.portfolio-category-title {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 2rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: .75rem;
}

.portfolio-category-title::before {
  content: '';
  width: 5px;
  height: 1.4rem;
  background: var(--gold);
  border-radius: 3px;
  flex-shrink: 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.portfolio-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.portfolio-item-header {
  background: var(--navy);
  padding: .7rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.portfolio-item-header span {
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.drag-hint {
  font-size: .7rem;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  gap: .3rem;
}

.portfolio-item-gallery {
  padding: .75rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: .4rem;
  background: var(--light);
  border-top: 1px solid var(--border);
}

.gallery-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb:hover {
  opacity: .85;
  transform: scale(1.03);
}

/* ── LIGHTBOX ───────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
}

.lightbox-close:hover { background: rgba(255,255,255,.15); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}

.lightbox-nav:hover { background: rgba(255,255,255,.25); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark), var(--teal-dark));
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0l28-28v2L54 40h-2zm4 0l24-24v2L58 40h-2zm4 0l20-20v2L62 40h-2zm4 0l16-16v2L66 40h-2zm4 0l12-12v2L70 40h-2zm4 0l8-8v2L74 40h-2zm4 0l4-4v2l-2 2h-2z'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-bottom: 2rem; max-width: 550px; margin-left: auto; margin-right: auto; }

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  color: var(--white);
  transition: all var(--transition);
  flex-wrap: wrap;
  justify-content: center;
}

.cta-phone:hover {
  background: rgba(255,255,255,.2);
}

.cta-phone .phone-label {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  display: block;
  line-height: 1;
  margin-bottom: .15rem;
}

.cta-phone .phone-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

/* ── CONTACT PAGE ───────────────────────────────────────────── */
.contact-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 8rem 0 4rem;
  text-align: center;
  color: var(--white);
}

.contact-hero h1 { color: var(--white); }
.contact-hero p   { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-top: .75rem; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}

.contact-info-card h3 {
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--border);
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.contact-detail-text .label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: .08em;
  display: block;
  margin-bottom: .2rem;
}

.contact-detail-text a,
.contact-detail-text span {
  color: var(--navy);
  font-weight: 600;
  font-size: .95rem;
  display: block;
  transition: color var(--transition);
}

.contact-detail-text a:hover { color: var(--teal); }

.social-links {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  color: var(--navy);
  transition: all var(--transition);
  font-size: .95rem;
}

.social-link:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form-wrap h3 {
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .4rem;
}

.form-group label .required {
  color: #e53e3e;
  margin-left: .15rem;
}

.form-control {
  display: block;
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(79, 168, 160, .15);
}

.form-control::placeholder { color: var(--gray-light); }

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

select.form-control { cursor: pointer; }

.form-submit { width: 100%; justify-content: center; }

.form-notice {
  margin-top: 1rem;
  font-size: .82rem;
  color: var(--gray);
  text-align: center;
}

.form-success {
  display: none;
  background: #d1fae5;
  border: 1px solid #34d399;
  color: #065f46;
  padding: 1.25rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  text-align: center;
  font-weight: 600;
}

/* ── PROCESS STEPS ──────────────────────────────────────────── */
.process { background: var(--light); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.67% + 40px);
  right: calc(16.67% + 40px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(28, 69, 128, .35);
}

.step-card h3 { margin-bottom: .75rem; }
.step-card p { color: var(--gray); font-size: .92rem; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand img {
  height: 56px;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: .9rem;
  line-height: 1.65;
  color: rgba(255,255,255,.6);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: .6rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: var(--white);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: .6rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1rem;
}

.footer-contact-item svg {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: .15rem;
}

.footer-contact-item span {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}

.footer-contact-item a {
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
  display: block;
  font-size: .88rem;
}

.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: .5rem;
}

.footer-bottom a {
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
}

.footer-bottom a:hover { color: var(--gold); }

/* ── ANIMATIONS ─────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }
.fade-up:nth-child(5) { transition-delay: .4s; }
.fade-up:nth-child(6) { transition-delay: .5s; }
.fade-up:nth-child(7) { transition-delay: .6s; }
.fade-up:nth-child(8) { transition-delay: .7s; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-contact .nav-cta { display: none; }

  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    padding: 1rem 0 1.5rem;
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open a::after { display: none; }

  .nav-links.open a {
    padding: .85rem 1.5rem;
    font-size: .95rem;
  }

  .why-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 2rem; }
  .hero-letterhead {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  .hero-contact-side { text-align: center; }
  .hero-logo-main { max-width: 380px; }
  .hero-phone { font-size: 1.4rem; }
  .nav-logo img { height: 84px; }
  .footer-brand img { height: 70px; }
  .hero-lower { padding: 1.5rem; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .nav-phone .phone-text { display: none; }
}
