/* ============================================
   AGAPI HOME BUILDERS — Main Stylesheet
   Built with Love. Built to Last.
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --navy-dark:  #111111;
  --navy:       #1C1C1E;
  --navy-mid:   #2C2C2E;
  --gold:       #C4913A;
  --gold-light: #D4A850;
  --gold-pale:  #EDD898;
  --white:      #FFFFFF;
  --off-white:  #F5F5F7;
  --light-gray: #E5E5EA;
  --gray:       #8E8E93;
  --dark-gray:  #1C1C1E;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --ease:       all 0.3s ease;
  --shadow:     0 4px 24px rgba(10, 22, 40, 0.12);
  --shadow-lg:  0 8px 48px rgba(10, 22, 40, 0.22);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--dark-gray); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
input, select, textarea, button { font-family: var(--font-sans); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.6rem 2rem;
  transition: var(--ease);
}
.nav.scrolled {
  background: var(--navy-dark);
  padding: 1rem 2rem;
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.nav-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name {
  font-family: var(--font-serif); font-size: 1.45rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.03em;
}
.nav-logo-sub {
  font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.8); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; transition: var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-phone {
  color: var(--gold) !important; font-size: 0.82rem !important;
  font-weight: 600 !important; letter-spacing: 0.06em !important;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block; padding: 0.78rem 1.8rem; border: none; cursor: pointer;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; border-radius: 2px; transition: var(--ease);
  font-family: var(--font-sans);
}
.btn-gold  { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,145,58,0.4); }
.btn-outline { border: 1.5px solid currentColor; background: transparent; }
.btn-outline-gold { color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }
.btn-outline-dark { color: var(--navy-dark); border-color: var(--navy-dark); }
.btn-outline-dark:hover { background: var(--navy-dark); color: var(--white); }
.btn-outline-white { color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ===== HAMBURGER ===== */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--ease); }

/* ===== MOBILE NAV ===== */
.nav-mobile {
  display: none; position: fixed; inset: 0; background: var(--navy-dark);
  z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { color: var(--white); font-family: var(--font-serif); font-size: 2rem; transition: var(--ease); }
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile-phone { font-family: var(--font-sans) !important; font-size: 1.1rem !important; color: var(--gold) !important; }
.nav-mobile-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none; color: var(--white); font-size: 2.2rem; cursor: pointer; line-height: 1;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-dark); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,0.92) 0%, rgba(17,17,17,0.65) 50%, rgba(17,17,17,0.82) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 880px; padding: 2rem;
}
.hero-eyebrow {
  display: inline-block; font-size: 0.68rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-serif); font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 0;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-line { width: 56px; height: 2px; background: var(--gold); margin: 1.6rem auto; }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.65); max-width: 520px;
  margin: 0 auto 2.5rem; line-height: 1.75; font-weight: 300;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.35); font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--navy-mid); }
.stats-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-item {
  text-align: center; padding: 2rem 1.5rem;
  border-right: 1px solid rgba(196,145,58,0.18);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-serif); font-size: 2.6rem; font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); font-weight: 500;
}

/* ===== SECTION BASE ===== */
.section { padding: 6rem 2rem; }
.section-inner { max-width: 1300px; margin: 0 auto; }
.section-inner.narrow { max-width: 860px; }
.s-label {
  font-size: 0.68rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 0.6rem;
}
.s-title {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--navy-dark); line-height: 1.2;
}
.s-title.white { color: var(--white); }
.s-line { width: 48px; height: 2px; background: var(--gold); margin: 1.2rem 0; }
.s-line.center { margin: 1.2rem auto; }
.s-sub { font-size: 0.95rem; color: var(--gray); line-height: 1.75; max-width: 540px; }
.text-center { text-align: center; }
.text-center .s-sub { margin: 0 auto; }

/* ===== ABOUT SECTION ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-placeholder {
  width: 100%; height: 540px;
  background: linear-gradient(145deg, var(--navy-mid) 0%, var(--navy-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.about-img-placeholder::after {
  content: 'Photo Coming Soon';
  color: rgba(255,255,255,0.2); font-size: 0.78rem;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 128px; height: 128px; background: var(--gold);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--white);
}
.about-badge-num { font-family: var(--font-serif); font-size: 2.8rem; font-weight: 700; line-height: 1; }
.about-badge-txt { font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; text-align: center; line-height: 1.4; margin-top: 2px; }
.about-checks { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.9rem; }
.about-check { display: flex; align-items: flex-start; gap: 0.85rem; }
.check-icon { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.check-text { font-size: 0.9rem; color: var(--dark-gray); line-height: 1.5; }

/* ===== VALUES GRID ===== */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.value-card {
  padding: 2.5rem 2rem; border: 1px solid var(--light-gray);
  transition: var(--ease); position: relative; overflow: hidden;
}
.value-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold); transform: scaleX(0);
  transition: transform 0.3s ease; transform-origin: left;
}
.value-card:hover::before { transform: scaleX(1); }
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.value-icon {
  width: 52px; height: 52px; background: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 1.25rem;
}
.value-title { font-family: var(--font-serif); font-size: 1.25rem; color: var(--navy-dark); margin-bottom: 0.6rem; }
.value-text { font-size: 0.875rem; color: var(--gray); line-height: 1.7; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.service-card {
  background: var(--white); border-bottom: 3px solid transparent;
  transition: var(--ease); overflow: hidden; box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.service-card:hover { border-bottom-color: var(--gold); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-img {
  width: 100%; height: 240px;
  background: linear-gradient(145deg, var(--navy-mid), var(--navy-dark));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.2); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
}
.service-body { padding: 2rem; }
.service-icon {
  width: 50px; height: 50px; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); margin-bottom: 1.25rem;
}
.service-title { font-family: var(--font-serif); font-size: 1.3rem; color: var(--navy-dark); margin-bottom: 0.65rem; }
.service-text { font-size: 0.875rem; color: var(--gray); line-height: 1.72; }
.service-link {
  display: inline-flex; align-items: center; gap: 0.45rem;
  margin-top: 1.25rem; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); transition: var(--ease);
}
.service-link:hover { gap: 0.75rem; }

/* ===== PROCESS ===== */
.process-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem;
  margin-top: 3.5rem; position: relative;
}
.process-grid::before {
  content: ''; position: absolute; top: 2rem;
  left: 12.5%; right: 12.5%; height: 1px; background: var(--light-gray);
}
.process-step { text-align: center; padding: 0 1rem; position: relative; }
.process-num {
  width: 4rem; height: 4rem; border-radius: 50%; background: var(--navy-dark);
  color: var(--gold); font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; position: relative; z-index: 1;
}
.process-title { font-family: var(--font-serif); font-size: 1.1rem; color: var(--navy-dark); margin-bottom: 0.5rem; }
.process-text { font-size: 0.84rem; color: var(--gray); line-height: 1.65; }

/* ===== PORTFOLIO ===== */
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.portfolio-card { position: relative; overflow: hidden; cursor: pointer; }
.portfolio-img {
  width: 100%; height: 320px;
  background: linear-gradient(145deg, var(--navy-mid), var(--navy-dark));
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.55s ease;
  color: rgba(255,255,255,0.2); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
}
.portfolio-card:hover .portfolio-img { transform: scale(1.06); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.92) 0%, transparent 55%);
  opacity: 0; transition: var(--ease);
  display: flex; align-items: flex-end; padding: 1.5rem;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-info h3 { font-family: var(--font-serif); color: var(--white); font-size: 1.2rem; margin-bottom: 0.2rem; }
.portfolio-info span { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; }
.portfolio-filters { display: flex; gap: 0.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.filter-btn {
  padding: 0.5rem 1.3rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; border: 1.5px solid var(--light-gray);
  background: transparent; color: var(--gray); cursor: pointer; transition: var(--ease);
  border-radius: 2px; font-family: var(--font-sans);
}
.filter-btn.active, .filter-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ===== CTA ===== */
.cta-section {
  background: var(--navy-dark); padding: 6rem 2rem;
  position: relative; overflow: hidden; text-align: center;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent, rgba(196,145,58,0.06));
}
.cta-section::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold);
}
.cta-inner { max-width: 660px; margin: 0 auto; position: relative; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-placeholder {
  border: 1px dashed var(--light-gray); padding: 4rem 2rem; text-align: center; border-radius: 2px;
}
.testimonials-placeholder p { color: var(--gray); font-size: 0.9rem; margin-top: 0.5rem; }
.testimonials-placeholder a { color: var(--gold); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.7fr; gap: 4rem; align-items: start; }
.contact-info-block { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 2rem; }
.c-icon {
  width: 46px; height: 46px; background: var(--navy-dark); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; color: var(--gold);
}
.c-info-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem; }
.c-info-val { font-size: 0.9rem; color: var(--dark-gray); line-height: 1.5; }
.c-info-val a { color: var(--dark-gray); transition: var(--ease); }
.c-info-val a:hover { color: var(--gold); }

/* ===== FORM ===== */
.form-wrap { background: var(--off-white); padding: 2.5rem; }
.form-tabs { display: flex; border-bottom: 2px solid var(--light-gray); margin-bottom: 2rem; }
.form-tab {
  padding: 0.75rem 1.5rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; border: none; background: transparent; color: var(--gray);
  cursor: pointer; transition: var(--ease); font-family: var(--font-sans);
  border-bottom: 2px solid transparent; margin-bottom: -2px;
}
.form-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.form-panel { display: none; }
.form-panel.active { display: block; }
.form-group { margin-bottom: 1.2rem; }
.form-label {
  display: block; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy-dark); margin-bottom: 0.45rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--light-gray);
  background: var(--white); font-size: 0.9rem; color: var(--dark-gray);
  outline: none; transition: var(--ease); border-radius: 2px; font-family: var(--font-sans);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196,145,58,0.1);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--navy-dark); padding: 10rem 2rem 5rem;
  text-align: center; position: relative;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gold);
}
.page-hero-title {
  font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700; color: var(--white); margin-bottom: 1rem;
}
.page-hero-sub { font-size: 0.95rem; color: rgba(255,255,255,0.55); max-width: 500px; margin: 0 auto; line-height: 1.7; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-dark); padding: 5rem 2rem 2.5rem; border-top: 3px solid var(--gold); }
.footer-inner { max-width: 1300px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 3rem; margin-bottom: 3.5rem; }
.f-logo-name { font-family: var(--font-serif); font-size: 1.45rem; font-weight: 700; color: var(--white); }
.f-logo-sub { font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-top: 2px; }
.f-about { font-size: 0.84rem; color: rgba(255,255,255,0.45); line-height: 1.75; margin-top: 1rem; }
.f-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.f-social-link {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); transition: var(--ease);
}
.f-social-link:hover { border-color: var(--gold); color: var(--gold); }
.f-heading { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.f-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.f-links a { font-size: 0.84rem; color: rgba(255,255,255,0.5); transition: var(--ease); }
.f-links a:hover { color: var(--gold); }
.f-contact-row { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.85rem; }
.f-contact-icon { color: var(--gold); width: 15px; flex-shrink: 0; margin-top: 3px; }
.f-contact-val { font-size: 0.84rem; color: rgba(255,255,255,0.5); line-height: 1.5; }
.f-contact-val a { color: rgba(255,255,255,0.5); transition: var(--ease); }
.f-contact-val a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 2rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.f-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.f-bottom-links { display: flex; gap: 1.5rem; }
.f-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.3); transition: var(--ease); }
.f-bottom-links a:hover { color: var(--gold); }

/* ===== CAROUSEL ===== */
.carousel-wrap {
  position: relative;
  padding: 0 3.5rem;
}
.carousel-viewport {
  overflow: hidden;
  width: 100%;
}
.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.carousel-slide {
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: 0;
}
.carousel-slide .portfolio-img { height: 340px; }

/* Arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 1rem));
  z-index: 10;
  width: 48px; height: 48px;
  background: var(--white);
  border: 1.5px solid var(--light-gray);
  color: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--ease);
  border-radius: 2px;
}
.carousel-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(196,145,58,0.35);
}
.carousel-prev { left: 0; }
.carousel-next { right: 0; }
.carousel-btn:disabled { opacity: 0.3; cursor: default; }
.carousel-btn:disabled:hover { background: var(--white); border-color: var(--light-gray); color: var(--navy-dark); box-shadow: none; }

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--light-gray);
  border: none; cursor: pointer;
  transition: var(--ease);
  padding: 0;
}
.carousel-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .carousel-slide { flex: 0 0 calc((100% - 1.5rem) / 2); }
}
@media (max-width: 540px) {
  .carousel-wrap { padding: 0 2.5rem; }
  .carousel-slide { flex: 0 0 100%; }
  .carousel-btn { width: 38px; height: 38px; }
}

/* ===== SUCCESS MESSAGE ===== */
.form-success {
  display: none; background: rgba(196,145,58,0.1); border: 1px solid var(--gold);
  padding: 1rem 1.25rem; font-size: 0.85rem; color: var(--dark-gray); margin-top: 1rem;
  border-radius: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(196,145,58,0.18); }
}
@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-badge { bottom: -1rem; right: 0; }
  .hero-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .section { padding: 4rem 1.25rem; }
  .page-hero { padding: 8rem 1.25rem 4rem; }
}
