/* ─── CSS Variables ─── */
:root {
  --navy:      #1B2C5E;
  --navy-dark: #12204A;
  --navy-mid:  #243772;
  --gold:      #C8972A;
  --gold-light:#E4B84A;
  --gold-pale: #FBF4E6;
  --white:     #FFFFFF;
  --gray-50:   #F8F9FC;
  --gray-100:  #EEF0F5;
  --gray-200:  #DDE1EC;
  --gray-500:  #8891A8;
  --gray-700:  #3D4A66;
  --text:      #1A1F2E;
  --radius:    10px;
  --radius-lg: 18px;
  --shadow:    0 4px 24px rgba(27,44,94,0.10);
  --shadow-md: 0 8px 40px rgba(27,44,94,0.14);
  --transition: 0.22s ease;
  --max-w:     1200px;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-head: 'Playfair Display', Georgia, serif;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ─── Utilities ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-alt { background: var(--gray-50); }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-desc { color: var(--gray-700); font-size: 1.05rem; }
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
.gold { color: var(--gold); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-weight: 600; font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,151,42,0.35); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.55); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: white; }
.btn-outline-nav { background: transparent; color: var(--navy); border: 2px solid var(--navy); padding: 0.5rem 1.2rem; font-size: 0.9rem; }
.btn-outline-nav:hover { background: var(--navy); color: white; }
.full-width { width: 100%; }
.link-arrow { color: var(--navy); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 4px; transition: var(--transition); }
.link-arrow:hover { color: var(--gold); gap: 8px; }

/* ─── Header ─── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--transition);
}
#header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.logo-link { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 40px; height: 40px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--navy); }
.logo-sub  { font-size: 0.68rem; font-weight: 500; color: var(--gray-500); letter-spacing: 0.04em; text-transform: uppercase; }
#main-nav ul { display: flex; align-items: center; gap: 1.75rem; }
#main-nav ul li a {
  font-size: 0.9rem; font-weight: 500; color: var(--gray-700);
  transition: color var(--transition);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
#main-nav ul li a:not(.btn):hover { color: var(--navy); border-bottom-color: var(--gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ─── Hero ─── */
.hero {
  position: relative; min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(27,44,94,0.90) 0%, rgba(18,32,74,0.82) 60%, rgba(27,44,94,0.60) 100%),
    url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1600&auto=format&fit=crop&q=80') center/cover no-repeat;
  display: flex; align-items: center;
  padding-top: 70px;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 70%, rgba(255,255,255,0.04)); pointer-events: none; }
.hero-content { position: relative; z-index: 1; max-width: 780px; padding: 80px 24px; }
.hero-eyebrow { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1rem; }
.hero h1 { color: white; margin-bottom: 1.25rem; }
.hero-sub { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 580px; margin-bottom: 2rem; line-height: 1.7; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats { display: flex; align-items: center; gap: 0; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius); padding: 1.25rem 1.75rem; backdrop-filter: blur(4px); width: fit-content; }
.stat { display: flex; flex-direction: column; align-items: center; padding: 0 1.5rem; }
.stat-number { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.stat-number small { font-size: 0.9rem; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.65); text-align: center; margin-top: 4px; white-space: nowrap; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* ─── Trust Bar ─── */
.trust-bar { background: var(--navy); padding: 20px 0; }
.trust-inner { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.6rem; color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500; }
.trust-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* ─── Services Grid ─── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.service-icon svg { width: 26px; height: 26px; stroke: var(--gold); }
.service-card h3 { margin-bottom: 0.6rem; }
.service-card p { color: var(--gray-700); font-size: 0.93rem; line-height: 1.65; }

/* ─── Steps ─── */
.steps { display: flex; align-items: flex-start; gap: 0; flex-wrap: wrap; }
.step { flex: 1; min-width: 180px; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 1.5rem 1rem; }
.step-num { font-family: var(--font-head); font-size: 3rem; font-weight: 700; color: var(--gold); opacity: 0.25; line-height: 1; margin-bottom: 0.75rem; }
.step-body h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step-body p { font-size: 0.9rem; color: var(--gray-700); }
.step-arrow { font-size: 1.5rem; color: var(--gold); opacity: 0.4; align-self: flex-start; margin-top: 2.2rem; padding: 0 0.5rem; }

/* ─── Guarantees ─── */
.guarantees-section { background: var(--navy); }
.guarantees-section h2, .guarantees-section p { color: white; }
.guarantees-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: center; }
.guarantees-text .eyebrow { color: var(--gold-light); }
.guarantees-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.guarantee-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 1.4rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: background var(--transition);
}
.guarantee-card:hover { background: rgba(255,255,255,0.11); }
.guarantee-icon { flex-shrink: 0; width: 36px; height: 36px; }
.guarantee-icon svg { width: 36px; height: 36px; stroke: var(--gold); }
.guarantee-card h4 { color: white; margin-bottom: 0.35rem; font-size: 0.97rem; }
.guarantee-card p { color: rgba(255,255,255,0.65); font-size: 0.85rem; line-height: 1.55; }

/* ─── Two-col layout ─── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.feature-list { margin: 1.25rem 0; display: flex; flex-direction: column; gap: 0.6rem; }
.feature-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.95rem; color: var(--gray-700); }
.feature-list li svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.owners-img-block { display: flex; justify-content: center; }
.img-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg); padding: 2.5rem 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 2rem;
  width: 100%; max-width: 340px; box-shadow: var(--shadow-md);
}
.img-icon { width: 80px; height: 80px; }
.img-stat-group { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; width: 100%; }
.img-stat { display: flex; flex-direction: column; align-items: center; text-align: center; }
.img-stat .big { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--gold); }
.img-stat span:last-child { font-size: 0.72rem; color: rgba(255,255,255,0.6); margin-top: 2px; }

/* ─── Tenant Cards ─── */
.tenant-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.tenant-card {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.tenant-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tenant-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--gray-50); border: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: center; margin-bottom: 0.25rem; }
.tenant-icon svg { width: 22px; height: 22px; stroke: var(--navy); }
.tenant-card h3 { font-size: 1.1rem; }
.tenant-card p { color: var(--gray-700); font-size: 0.92rem; flex: 1; }

/* ─── Testimonials ─── */
.testimonials { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.testimonial-card {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 1rem;
}
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.testimonial-card > p { color: var(--gray-700); font-size: 0.95rem; line-height: 1.7; font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: white; font-size: 0.8rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { display: block; font-size: 0.78rem; color: var(--gray-500); }

/* ─── About ─── */
.about-graphic { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.about-badge {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg); padding: 2.5rem 2rem;
  text-align: center; width: 100%; max-width: 340px;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  box-shadow: var(--shadow-md);
}
.badge-sun { width: 72px; height: 72px; }
.badge-title { font-family: var(--font-head); font-size: 1.1rem; color: white; font-weight: 600; }
.badge-sub { font-size: 0.85rem; color: rgba(255,255,255,0.6); font-style: italic; }
.about-values { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center; max-width: 340px; }
.value-pill { background: var(--gold-pale); border: 1px solid rgba(200,151,42,0.3); color: var(--navy); padding: 0.35rem 0.9rem; border-radius: 999px; font-size: 0.82rem; font-weight: 600; }

/* ─── Contact ─── */
.contact-section { background: var(--navy); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.contact-info h2, .contact-info p { color: white; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: rgba(255,255,255,0.75); font-size: 1rem; }
.contact-details { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-detail { display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.contact-detail svg { width: 18px; height: 18px; stroke: var(--gold); flex-shrink: 0; }
.contact-detail a { color: rgba(255,255,255,0.8); transition: color var(--transition); }
.contact-detail a:hover { color: var(--gold); }
.contact-form-wrap { background: white; border-radius: var(--radius-lg); padding: 2.5rem 2rem; box-shadow: var(--shadow-md); }
.contact-form h3 { font-size: 1.3rem; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--gray-700); }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid var(--gray-200);
  border-radius: 6px; padding: 0.65rem 0.9rem;
  font-size: 0.9rem; color: var(--text);
  background: var(--gray-50);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--navy); background: white;
  box-shadow: 0 0 0 3px rgba(27,44,94,0.08);
}
.form-note { text-align: center; font-size: 0.78rem; color: var(--gray-500); margin-top: 0.75rem; }
.form-success { text-align: center; padding: 3rem 1rem; }
.form-success svg { width: 56px; height: 56px; stroke: #22c55e; margin: 0 auto 1rem; }
.form-success h3 { margin-bottom: 0.5rem; }
.form-success p { color: var(--gray-700); }

/* ─── Footer ─── */
.footer { background: var(--navy-dark); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 4rem; }
.footer-brand .logo-link { margin-bottom: 1rem; }
.footer-tagline { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.6; margin-top: 0.75rem; }
.footer-links { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.footer-col h4 { color: white; font-family: var(--font-body); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul li a { color: rgba(255,255,255,0.5); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 3rem; padding: 1.25rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.35); font-size: 0.8rem; transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .guarantees-layout { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-links { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  #main-nav { display: none; position: absolute; top: 70px; left: 0; right: 0; background: white; border-bottom: 1px solid var(--gray-100); box-shadow: var(--shadow); padding: 1rem 0; }
  #main-nav.open { display: block; }
  #main-nav ul { flex-direction: column; gap: 0; padding: 0 24px; }
  #main-nav ul li a { display: block; padding: 0.75rem 0; border-bottom: 1px solid var(--gray-100); font-size: 1rem; }
  #main-nav ul li:last-child a { border: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 60px 0; }
  .hero-cta { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 1rem; width: 100%; }
  .stat-divider { width: 100%; height: 1px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; align-items: stretch; }
  .step-arrow { display: none; }
  .step { flex-direction: row; text-align: left; align-items: flex-start; gap: 1rem; }
  .step-num { font-size: 2rem; min-width: 40px; }
  .two-col, .two-col.reverse { grid-template-columns: 1fr; direction: ltr; gap: 2.5rem; }
  .guarantees-cards { grid-template-columns: 1fr; }
  .tenant-cards { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .trust-inner { gap: 1.25rem; flex-direction: column; align-items: flex-start; padding: 0 24px; }
  .footer-links { grid-template-columns: repeat(2,1fr); }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}

@media (max-width: 480px) {
  .footer-links { grid-template-columns: 1fr; }
  .guarantees-cards { grid-template-columns: 1fr; }
  .img-stat-group { grid-template-columns: 1fr; }
  h1 { font-size: 2.2rem; }
}
