/* =============================================
   Galant & Smidigt – styles.css
   ============================================= */

:root {
  --brand-green:       #1a3d2e;
  --brand-green-light: #2d5a45;
  --brand-green-dark:  #122b20;
  --brand-gold:        #c9a227;
  --brand-gold-hover:  #b8941f;
  --brand-cream:       #f5f3ee;
  --brand-cream-dark:  #e8e5dd;
  --text-dark:         #1a1a1a;
  --text-gray:         #4a4a4a;
  --text-light:        #6b6b6b;
  --border-color:      #e0ddd5;
  --radius-sm:  0.5rem;
  --radius-md:  0.75rem;
  --radius-lg:  1rem;
  --shadow-sm:  0 2px 8px  rgba(0,0,0,0.05);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.12);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--brand-cream);
  color: var(--text-dark);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
}

/* =============================================
   NAVIGATION
   ============================================= */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  background: var(--brand-green);
  transition: all 0.3s ease;
}

nav.scrolled {
  background: var(--brand-green-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  padding: 0.75rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-img {
  width: 68px; height: 68px;
  transition: transform 0.3s ease;
}

.logo:hover .logo-img { transform: scale(1.05); }

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: white;
}

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

.nav-link {
  position: relative;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--brand-gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover { color: var(--brand-gold); }
.nav-link:hover::after { width: 100%; }

/* Language selector */
.lang-selector { position: relative; }

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.75rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.lang-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  min-width: 130px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
}

.lang-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: block;
  width: 100%;
  padding: 0.625rem 1rem;
  text-align: left;
  background: transparent;
  border: none;
  font-size: 0.875rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-option:first-child { border-radius: var(--radius-md) var(--radius-md) 0 0; }
.lang-option:last-child  { border-radius: 0 0 var(--radius-md) var(--radius-md); }
.lang-option:hover, .lang-option.active { background: var(--brand-cream); color: var(--brand-gold); }

/* Mobile menu */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-menu-btn {
  display: none;
  padding: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: white;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: white;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

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

.mobile-nav .nav-link {
  font-size: 1.375rem;
  padding: 0.75rem 0;
}

.mobile-nav-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--brand-green);
  padding: 0.5rem;
}

/* =============================================
   IMAGE PLACEHOLDERS
   ============================================= */

.img-placeholder {
  background: var(--brand-cream-dark);
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 360px;
  color: var(--text-light);
  font-size: 0.8125rem;
  transition: border-color 0.2s ease;
}

.img-placeholder:hover { border-color: var(--brand-gold); }

.img-placeholder svg {
  width: 36px; height: 36px;
  opacity: 0.35;
  color: var(--brand-green);
}

.img-placeholder span {
  font-style: italic;
  opacity: 0.55;
}

/* =============================================
   HERO
   ============================================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #ffffff 0%, var(--brand-cream) 60%, #edeae2 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-orb-1 {
  top: 10%; left: -5%;
  width: 500px; height: 500px;
  background: rgba(201,162,39,0.07);
}

.hero-orb-2 {
  bottom: 0; right: -5%;
  width: 420px; height: 420px;
  background: rgba(26,61,46,0.06);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(26,61,46,0.07);
  border: 1px solid rgba(26,61,46,0.12);
  border-radius: 9999px;
  margin-bottom: 2rem;
}

.hero-badge span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--brand-green);
  letter-spacing: 0.06em;
}

.hero-title {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--brand-green);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.0625rem;
  color: var(--text-gray);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--brand-gold);
  color: white;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(201,162,39,0.3);
}

.btn-primary:hover {
  background: var(--brand-gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,162,39,0.4);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.8125rem;
}

.trust-dot {
  width: 6px; height: 6px;
  background: var(--brand-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =============================================
   SECTIONS – shared
   ============================================= */

section { padding: 5rem 0; }

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.section-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(201,162,39,0.1);
  color: var(--brand-gold);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--brand-green);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-gray);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.75;
}

/* =============================================
   ABOUT
   ============================================= */

.about { background: white; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.about-content p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
  margin-top: 2rem;
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--brand-cream);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.about-value:hover { border-color: rgba(201,162,39,0.2); }

.about-value-icon {
  width: 34px; height: 34px;
  background: rgba(201,162,39,0.12);
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-value-icon svg { width: 17px; height: 17px; color: var(--brand-gold); }

.about-value-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-green);
  margin-bottom: 0.125rem;
}

.about-value-text span {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Team */
.team-section { }

.team-title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--brand-green);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.team-text p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* =============================================
   SERVICES
   ============================================= */

.services { background: var(--brand-cream); }

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

.service-card {
  padding: 1.75rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,162,39,0.18);
}

.service-icon {
  width: 48px; height: 48px;
  background: rgba(201,162,39,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.125rem;
  transition: background 0.3s ease;
}

.service-card:hover .service-icon { background: rgba(201,162,39,0.18); }
.service-icon svg { width: 22px; height: 22px; color: var(--brand-gold); }

.service-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--brand-green);
  margin-bottom: 0.5rem;
}

.service-desc {
  color: var(--text-gray);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* Process */
.process-section { }

.process-title {
  font-size: 1.375rem;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--brand-green);
}

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

.process-item {
  text-align: center;
  position: relative;
}

.process-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 1.875rem; left: 58%;
  width: 84%; height: 1px;
  background: linear-gradient(to right, var(--brand-gold), transparent);
  opacity: 0.3;
}

.process-number {
  width: 56px; height: 56px;
  background: var(--brand-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(201,162,39,0.3);
}

.process-number span {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

.process-name {
  font-weight: 600;
  color: var(--brand-green);
  margin-bottom: 0.375rem;
  font-size: 0.9375rem;
}

.process-desc { font-size: 0.8125rem; color: var(--text-light); line-height: 1.5; }

/* =============================================
   PORTFOLIO
   ============================================= */

.portfolio { background: white; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--brand-cream-dark);
}

/* When you replace the placeholder with a real image: */
.portfolio-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.portfolio-item:hover img { transform: scale(1.04); }

.portfolio-item .img-placeholder {
  min-height: 300px;
  border-radius: 0;
  border: none;
  background: var(--brand-cream-dark);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,61,46,0.88) 0%, rgba(26,61,46,0.2) 55%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(201,162,39,0.25);
  color: var(--brand-gold);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
  margin-bottom: 0.5rem;
  transform: translateY(0.75rem);
  opacity: 0;
  transition: all 0.3s ease 0.05s;
  width: fit-content;
}

.portfolio-item:hover .portfolio-category { transform: translateY(0); opacity: 1; }

.portfolio-title-item {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
  transform: translateY(0.75rem);
  opacity: 0;
  transition: all 0.3s ease 0.1s;
}

.portfolio-item:hover .portfolio-title-item { transform: translateY(0); opacity: 1; }

.portfolio-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  transform: translateY(0.75rem);
  opacity: 0;
  transition: all 0.3s ease 0.15s;
}

.portfolio-item:hover .portfolio-desc { transform: translateY(0); opacity: 1; }

.portfolio-cta {
  text-align: center;
  margin-top: 3rem;
}

.portfolio-cta p {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.portfolio-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-gold);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.portfolio-cta a:hover { color: var(--brand-gold-hover); }

/* =============================================
   WHY CHOOSE US
   ============================================= */

.why-choose { background: var(--brand-cream); }

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

.feature-card {
  padding: 2rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,162,39,0.18);
}

.feature-icon {
  width: 58px; height: 58px;
  background: rgba(201,162,39,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.375rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: rgba(201,162,39,0.18);
  transform: scale(1.06);
}

.feature-icon svg { width: 26px; height: 26px; color: var(--brand-gold); }

.feature-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--brand-green);
  margin-bottom: 0.625rem;
}

.feature-desc { color: var(--text-gray); line-height: 1.7; font-size: 0.9375rem; }

/* =============================================
   VALUES
   ============================================= */

.values { background: white; }

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

.value-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--brand-cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.value-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(201,162,39,0.25);
}

.value-item-icon {
  width: 54px; height: 54px;
  background: rgba(201,162,39,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.value-item-icon svg { width: 25px; height: 25px; color: var(--brand-gold); }

.value-item-title {
  font-weight: 600;
  color: var(--brand-green);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.value-item-desc { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; }

.values-quote {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: var(--brand-green);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.values-quote::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 9rem;
  color: rgba(201,162,39,0.12);
  position: absolute;
  top: -1.5rem; left: 2rem;
  line-height: 1;
  pointer-events: none;
}

.values-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-style: italic;
  color: white;
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

/* =============================================
   CONTACT CTA
   ============================================= */

.contact-cta {
  background: var(--brand-green);
  position: relative;
  overflow: hidden;
}

.contact-cta-bg { position: absolute; inset: 0; pointer-events: none; }

.contact-cta-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(18,43,32,0.4), transparent);
}

.contact-cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-cta-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.contact-cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  line-height: 1.75;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.contact-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.45);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--brand-gold);
  color: var(--brand-gold);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.contact-card {
  padding: 1.5rem;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  transition: background 0.3s ease;
}

.contact-card:hover { background: rgba(255,255,255,0.13); }

.contact-card-icon {
  width: 44px; height: 44px;
  background: rgba(201,162,39,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.875rem;
}

.contact-card-icon svg { width: 20px; height: 20px; color: var(--brand-gold); }

.contact-card-title {
  font-weight: 600;
  color: white;
  margin-bottom: 0.375rem;
  font-size: 0.9375rem;
}

.contact-card-info {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
  display: block;
}

.contact-card-info:hover { color: var(--brand-gold); }

/* =============================================
   FOOTER
   ============================================= */

footer {
  background: var(--brand-cream);
  border-top: 1px solid var(--border-color);
}

.footer-main { padding: 3rem 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand p {
  color: var(--text-gray);
  margin: 1.25rem 0;
  max-width: 380px;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer-detail { font-size: 0.8125rem; color: var(--text-light); }
.footer-detail span { font-weight: 500; color: var(--brand-green); }

.footer-title {
  font-weight: 600;
  color: var(--brand-green);
  margin-bottom: 1.125rem;
  font-size: 0.9375rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.625rem; }

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

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

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

.footer-contact-item svg {
  width: 17px; height: 17px;
  color: var(--brand-gold);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-contact-item a,
.footer-contact-item span {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  padding: 1.25rem 0;
  border-top: 1px solid var(--border-color);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copyright { font-size: 0.8125rem; color: var(--text-light); }

.footer-bottom-links { display: flex; gap: 1.5rem; }

.footer-bottom-links a {
  font-size: 0.8125rem;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }

  .hero-trust { justify-content: center; }

  .about-grid, .team-grid { grid-template-columns: 1fr; }

  .services-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }

  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-item:not(:last-child)::after { display: none; }

  .contact-cards { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  section { padding: 3.5rem 0; }

  .services-grid,
  .features-grid,
  .portfolio-grid,
  .process-grid,
  .values-grid { grid-template-columns: 1fr; }

  .about-values { grid-template-columns: 1fr; }

  .contact-cards { grid-template-columns: 1fr; }

  .contact-cta-buttons { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; }

  .hero-trust { gap: 1.25rem; }
}

/* =============================================
   ANIMATIONS
   ============================================= */

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

.animate-fade-in-up { animation: fadeInUp 0.65s ease forwards; }
.animation-delay-100 { animation-delay: 0.1s; opacity: 0; }
.animation-delay-200 { animation-delay: 0.2s; opacity: 0; }
.animation-delay-300 { animation-delay: 0.3s; opacity: 0; }

/* =============================================
   CONTACT FORM MODAL
   ============================================= */

.form-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(18, 43, 32, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.form-backdrop.open { display: flex; }

.form-modal {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.form-modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 32px; height: 32px;
  background: var(--brand-cream);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  transition: all 0.2s ease;
}

.form-modal-close:hover {
  background: var(--brand-cream-dark);
  color: var(--text-dark);
}

.form-modal-title {
  font-size: 1.5rem;
  color: var(--brand-green);
  margin-bottom: 0.375rem;
}

.form-modal-desc {
  font-size: 0.9375rem;
  color: var(--text-gray);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-green);
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: white;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.12);
}

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

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

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
}

.form-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: 0.875rem;
}

/* =============================================
   SCROLLBAR
   ============================================= */

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--brand-cream); }
::-webkit-scrollbar-thumb { background: var(--brand-gold); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand-gold-hover); }
