/* ============================================
   FA SERVICES PROPERTY SOLUTIONS
   styles.css — Premium Construction/Remodeling Site
   ============================================ */

:root {
  --black: #111111;
  --dark: #2B2B2B;
  --gold: #D99A17;
  --gold-light: #E8B030;
  --gold-dark: #B07B0F;
  --white: #FFFFFF;
  --gray-light: #F5F5F5;
  --gray-mid: #888888;
  --gray-border: #E0E0E0;
  --text: #222222;
  --text-light: #666666;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.16);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --header-h: 80px;
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
h1, h2, h3, h4, h5 { font-family: 'Oswald', sans-serif; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 700; letter-spacing: -0.5px; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
h5 { font-size: 0.9rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }

/* CONTAINER */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* SECTIONS */
.section { padding: 96px 0; }
.bg-dark { background: var(--dark); color: var(--white); }
.bg-gray { background: var(--gray-light); }

/* ============================================ BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217,154,23,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-lg { padding: 18px 40px; font-size: 1rem; }
.btn-full { width: 100%; padding: 18px; font-size: 1rem; }

/* ============================================ SECTION HEADERS */
.section-tag {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  position: relative;
  padding-left: 40px;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 2px;
  background: var(--gold);
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-header .section-tag { padding-left: 0; display: block; }
.section-header .section-tag::before { display: none; }
.section-header h2 { margin: 8px 0 16px; }
.section-header p { color: var(--text-light); font-size: 1.05rem; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.65); }

/* ============================================ HEADER */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(17,17,17,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(17,17,17,0.99);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-fa {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: 0.5px;
}
.logo-text small { 
  display: block; 
  font-size: 0.7rem; 
  color: rgba(255,255,255,0.55); 
  font-weight: 400; 
  letter-spacing: 1px; 
  text-transform: uppercase; 
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-desktop a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  position: relative;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.nav-desktop a:hover { color: var(--white); }
.nav-desktop a:hover::after { transform: scaleX(1); }
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.header-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.header-phone:hover { color: var(--gold); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(17,17,17,0.98);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile.open { display: flex; }
.mobile-link {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--gold); }
.mobile-cta { margin-top: 16px; text-align: center; }

/* ============================================ HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(17,17,17,0.90) 0%,
    rgba(17,17,17,0.70) 50%,
    rgba(17,17,17,0.35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 80px 24px;
  animation: fadeUp 0.9s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 28px;
  animation: fadeUp 0.9s ease 0.1s both;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp 0.9s ease 0.2s both;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  max-width: 620px;
  margin-bottom: 40px;
  line-height: 1.75;
  animation: fadeUp 0.9s ease 0.3s both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.9s ease 0.4s both;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  animation: fadeUp 0.9s ease 0.5s both;
}
.hero-badges span {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll span {
  display: block;
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ============================================ TRUST BAR */
.trust-bar {
  background: var(--black);
  border-top: 3px solid var(--gold);
  padding: 20px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 28px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.trust-item:last-child { border-right: none; }

/* ============================================ ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-secondary {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 220px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  top: 32px; left: -24px;
  background: var(--gold);
  color: var(--black);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.badge-number {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.badge-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.3;
}
.about-text .section-tag { display: inline-flex; margin-bottom: 16px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text-light); margin-bottom: 16px; }
.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 36px;
}
.about-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.point-icon {
  width: 22px; height: 22px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================ SERVICES */
.services-section { background: var(--gray-light); }
.service-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-cat {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-cat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.35s;
}
.service-cat:hover { 
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-cat:hover::before { transform: scaleX(1); }
.service-cat-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-border);
}
.cat-icon {
  width: 60px; height: 60px;
  background: rgba(217,154,23,0.08);
  border: 1px solid rgba(217,154,23,0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-cat-header h3 { 
  font-size: 1.35rem; 
  margin-bottom: 8px; 
  color: var(--black);
}
.service-cat-header p { 
  font-size: 0.9rem; 
  color: var(--text-light); 
  line-height: 1.6;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}
.svc-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================ SERVICE DETAIL CARDS */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.detail-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}
.detail-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(217,154,23,0.3);
  transform: translateY(-2px);
}
.detail-card.featured {
  border-color: rgba(217,154,23,0.5);
  background: rgba(217,154,23,0.07);
  grid-column: span 2;
}
.detail-card h4 {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.detail-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ============================================ INVESTORS */
.investors-section { overflow: hidden; }
.investors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.investors-content .section-tag { margin-bottom: 16px; }
.investors-content h2 { margin-bottom: 20px; }
.investors-lead {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.7;
}
.investors-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-bottom: 24px;
}
.inv-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-border);
}
.inv-item::before {
  content: '→';
  color: var(--gold);
  font-size: 0.85rem;
}
.investors-content p { 
  color: var(--text-light); 
  margin-bottom: 32px; 
}
.investors-image {
  position: relative;
  height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.investors-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}
.investors-image:hover img { transform: scale(1.03); }
.investors-overlay-badge {
  position: absolute;
  bottom: 32px; left: 32px;
  background: rgba(17,17,17,0.9);
  border: 2px solid var(--gold);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 24px;
  border-radius: var(--radius);
  line-height: 1.5;
  backdrop-filter: blur(8px);
}

/* ============================================ PROCESS */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 840px;
  margin: 0 auto;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  left: 36px; top: 0; bottom: 0;
  width: 2px;
  background: rgba(217,154,23,0.2);
}
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  padding: 36px 0;
  position: relative;
}
.process-step:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.step-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.85;
  line-height: 1;
  min-width: 72px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-content h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.step-content p {
  color: rgba(255,255,255,0.60);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================ WHY */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.why-card:hover { 
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.why-card:hover::after { transform: scaleX(1); }
.why-icon {
  width: 64px; height: 64px;
  background: rgba(217,154,23,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.why-card h4 {
  font-size: 1.05rem;
  color: var(--black);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ============================================ PORTFOLIO */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
}
.portfolio-card.large {
  grid-column: span 2;
  grid-row: span 2;
}
.portfolio-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-card:hover img { transform: scale(1.06); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.85) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay span {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.portfolio-note {
  margin-top: 28px;
  font-size: 0.82rem;
  color: var(--text-light);
  text-align: center;
  font-style: italic;
}

/* ============================================ TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.testimonial-card {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card.featured {
  background: var(--black);
  border-color: var(--gold);
  color: var(--white);
}
.testimonial-card.featured p { color: rgba(255,255,255,0.80); }
.stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.testimonial-card.featured .testimonial-author strong { color: var(--white); }
.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-light);
}
.testimonial-card.featured .testimonial-author span { color: rgba(255,255,255,0.5); }

/* ============================================ CTA BAND */
.cta-band {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-band-bg {
  position: absolute;
  inset: 0;
}
.cta-band-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.cta-band-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.82);
}
.cta-band-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-band-content h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.cta-band-content p {
  color: rgba(255,255,255,0.70);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

/* ============================================ CONTACT */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}
.contact-info .section-tag { margin-bottom: 16px; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--text-light); margin-bottom: 36px; }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.cd-icon {
  width: 44px; height: 44px;
  background: rgba(217,154,23,0.10);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}
.contact-detail a, .contact-detail span {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  transition: color 0.2s;
}
.contact-detail a:hover { color: var(--gold); }
.contact-hours {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 16px 20px;
  border-left: 3px solid var(--gold);
}
.contact-hours strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-hours span { font-size: 0.9rem; font-weight: 600; color: var(--text); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--gray-light);
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: var(--white);
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-privacy {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: -8px;
}
.form-success {
  text-align: center;
  padding: 48px 32px;
}
.success-icon {
  width: 72px; height: 72px;
  background: var(--gold);
  color: var(--black);
  font-size: 2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 { margin-bottom: 12px; font-size: 1.5rem; }
.form-success p { color: var(--text-light); }

/* ============================================ FOOTER */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin: 16px 0 6px;
  line-height: 1.6;
  max-width: 260px;
}
.footer-brand address {
  color: rgba(255,255,255,0.4);
  font-size: 0.83rem;
  margin-bottom: 20px;
}
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contacts a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
  transition: color 0.2s;
}
.footer-contacts a:hover { color: var(--gold); }
.footer-logo .logo-fa { font-size: 1.6rem; }
.footer-logo .logo-text { font-size: 0.78rem; }
.footer-nav, .footer-services {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav h5, .footer-services h5, .footer-cta-col h5 {
  color: rgba(255,255,255,0.35);
  font-size: 0.72rem;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.footer-nav a, .footer-services a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-services a:hover { color: var(--gold); }
.footer-cta-col p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin: 8px 0 20px;
  line-height: 1.6;
}
.footer-phone-big {
  margin-top: 16px;
}
.footer-phone-big a {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.footer-phone-big a:hover { color: var(--gold); }
.footer-bottom {
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.30);
}

/* ============================================ STICKY CTA */
.sticky-cta {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  background: var(--gold);
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(217,154,23,0.45);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}
.sticky-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.sticky-cta:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(217,154,23,0.55);
}

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

/* Tablet: 768–1024 */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .header-phone { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-images { max-width: 600px; }
  .about-img-secondary { right: 0; bottom: -20px; }

  .service-categories { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-card.featured { grid-column: span 2; }

  .investors-grid { grid-template-columns: 1fr; gap: 48px; }
  .investors-image { height: 380px; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .portfolio-card.large { grid-column: span 2; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* Mobile: <768 */
@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .section { padding: 64px 0; }

  .trust-inner { gap: 8px; }
  .trust-item { 
    padding: 8px 12px; 
    font-size: 0.75rem; 
    border-right: none; 
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
    justify-content: center;
  }
  .trust-item:last-child { border-bottom: none; }

  .about-img-main { height: 320px; }
  .about-img-secondary { display: none; }
  .about-badge { left: 0; }
  .about-points { grid-template-columns: 1fr; }

  .detail-grid { grid-template-columns: 1fr; }
  .detail-card.featured { grid-column: span 1; }

  .investors-list { grid-template-columns: 1fr; }

  .process-steps::before { display: none; }
  .step-number { min-width: 48px; font-size: 2rem; }

  .why-grid { grid-template-columns: 1fr; }

  .portfolio-grid { 
    grid-template-columns: 1fr 1fr; 
    grid-auto-rows: 160px; 
  }
  .portfolio-card.large { grid-column: span 2; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .sticky-cta { 
    bottom: 16px; right: 16px;
    font-size: 0.78rem;
    padding: 12px 18px;
  }

  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; }
}

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card.large { grid-column: span 1; }
  .hero-badges span { font-size: 0.7rem; padding: 5px 10px; }
}
