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

html, body { overflow-x: hidden; max-width: 100%; }

:root {
  --navy: #0d1b2a;
  --navy-light: #1a2e4a;
  --gold: #c8832a;
  --gold-light: #e8a844;
  --gold-pale: #f5e0b8;
  --white: #ffffff;
  --light-bg: #f7f5f0;
  --gray: #6b7280;
  --dark-text: #1a1a2e;
  --border: #e5e7eb;
  --blue-accent: #5eaee0;
  --shadow: 0 4px 24px rgba(13,27,42,0.10);
  --shadow-lg: 0 8px 40px rgba(13,27,42,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
  --font-main: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
}

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

body {
  font-family: var(--font-main);
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--gray);
  max-width: 600px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(200,131,42,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,131,42,0.5);
  background: linear-gradient(135deg, #f0b44e, var(--gold-light));
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

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

.btn-lg { padding: 17px 38px; font-size: 1.05rem; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 0;
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(13,27,42,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 76px;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 44px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-menu a {
  padding: 8px 16px;
  color: rgba(255,255,255,0.88);
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--gold-light);
  background: rgba(255,255,255,0.07);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 6px;
  transition: var(--transition);
}
.nav-dropdown:hover > a::after { transform: rotate(-135deg) translateY(-2px); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  border: 1px solid var(--border);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: var(--dark-text) !important;
  font-size: 0.9rem;
  border-radius: 0 !important;
  transition: var(--transition);
}
.dropdown-menu a:hover {
  background: var(--light-bg);
  color: var(--gold) !important;
  padding-left: 26px;
}
.dropdown-menu a i { color: var(--gold); }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.93rem;
  transition: var(--transition);
}
.nav-phone a:hover { color: var(--white); }

.btn-call-nav {
  padding: 9px 20px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy) !important;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
}
.btn-call-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200,131,42,0.45);
  color: var(--navy) !important;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  cursor: pointer;
  padding: 6px;
  border-radius: 10px;
  border: none;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  transition: var(--transition);
}
.burger span {
  display: block;
  height: 2.5px;
  background: var(--white);
  border-radius: 3px;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
  transform-origin: center;
}
.burger span:nth-child(1) { width: 26px; }
.burger span:nth-child(2) { width: 20px; }
.burger span:nth-child(3) { width: 26px; }

.burger:hover { background: rgba(255,255,255,0.1); }
.burger:hover span { width: 26px; }

.burger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); width: 26px; }
.burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); width: 26px; }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0;
  bottom: 0;
  background: rgba(13,27,42,0.99);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 20px 24px 40px;
  z-index: 999;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  transform: translateY(-10px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.mobile-nav a {
  display: block;
  padding: 12px 0;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--gold-light); padding-left: 8px; }
.mobile-nav .mobile-phone {
  margin-top: 20px;
  padding: 15px 20px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 700;
  font-size: 1.05rem;
  justify-content: center;
}
.mobile-sub { padding-left: 16px !important; font-size: 0.93rem !important; color: rgba(255,255,255,0.65) !important; }
.mobile-sub:hover { color: var(--gold-light) !important; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/1.png');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(13,27,42,0.88) 0%,
    rgba(13,27,42,0.65) 50%,
    rgba(13,27,42,0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,168,68,0.15);
  border: 1px solid rgba(232,168,68,0.35);
  color: var(--gold-light);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  backdrop-filter: blur(6px);
}
.hero-badge span.dot {
  width: 6px; height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.2rem;
  max-width: 700px;
}
.hero-title span { color: var(--gold-light); }

.hero-subtitle {
  color: rgba(255,255,255,0.78);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 560px;
  margin-bottom: 2.4rem;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
}
.trust-item i { color: var(--gold-light); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 11px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 7px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollDown 1.8s infinite;
}
@keyframes scrollDown {
  0% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(14px); opacity: 0; }
}

/* ===== STATS ===== */
.stats-bar {
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  padding: 48px 24px;
}

.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-item {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  font-weight: 500;
}

/* ===== SECTION WRAPPER ===== */
.section { padding: 88px 24px; }
.section-bg { background: var(--light-bg); }

.container { max-width: 1280px; margin: 0 auto; }
.container-sm { max-width: 900px; margin: 0 auto; }

.section-head { margin-bottom: 56px; }

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

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

.step-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-pale);
}

.step-number {
  position: absolute;
  top: -18px; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 4px 14px rgba(200,131,42,0.4);
}

.step-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--gold-pale), rgba(232,168,68,0.15));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.step-card:hover .step-icon {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.step-icon i { color: var(--gold); transition: var(--transition); }
.step-card:hover .step-icon i { color: var(--navy); }

.step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-desc { color: var(--gray); font-size: 0.93rem; line-height: 1.65; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-pale);
}

.service-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-img img { transform: scale(1.08); }

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.6), transparent);
}

.service-body { padding: 24px; }

.service-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  margin-top: -40px;
  position: relative;
  box-shadow: 0 4px 14px rgba(200,131,42,0.35);
}
.service-icon i { color: var(--navy); }

.service-title {
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-desc { color: var(--gray); font-size: 0.9rem; line-height: 1.6; margin-bottom: 18px; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.service-link:hover { gap: 10px; color: var(--navy); }

/* ===== WHY CHOOSE US ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  padding: 32px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transform: scaleX(0);
  transition: var(--transition);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.feature-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(232,168,68,0.15), rgba(200,131,42,0.08));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon { background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
.feature-icon i { color: var(--gold); transition: var(--transition); }
.feature-card:hover .feature-icon i { color: var(--navy); }

.feature-title { font-size: 1.05rem; color: var(--navy); font-weight: 700; margin-bottom: 8px; }
.feature-desc { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  min-height: 200px;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.4), transparent);
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  padding: 32px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; right: 24px;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold-pale);
  font-family: var(--font-display);
}

.stars { color: var(--gold-light); font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-text { color: var(--gray); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.author-location { color: var(--gray); font-size: 0.82rem; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,168,68,0.12) 0%, transparent 70%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.72); max-width: 520px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-banner .btn-primary { font-size: 1.1rem; padding: 18px 44px; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 72px 24px 0;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo-wrap { margin-bottom: 16px; }
.footer-logo { height: 40px; width: auto; filter: brightness(0) invert(1); }
.footer-about {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  font-size: 0.85rem;
  cursor: pointer;
}
.social-btn:hover { background: var(--gold); color: var(--navy); }

.footer-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--gold);
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-links a i { font-size: 0.7rem; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.footer-contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.9rem; line-height: 1.55; }
.footer-contact-item a { color: rgba(255,255,255,0.75); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 0;
  border-top: none;
}

.disclaimer-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 22px;
}
.disclaimer-box p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}
.disclaimer-box strong { color: rgba(255,255,255,0.65); }

.footer-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy p { font-size: 0.83rem; color: rgba(255,255,255,0.4); }
.footer-copy-links { display: flex; gap: 20px; }
.footer-copy-links a { font-size: 0.83rem; color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-copy-links a:hover { color: var(--gold-light); }

/* ===== COOKIE MODAL ===== */
.cookie-modal {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 9999;
  max-width: 640px;
  width: calc(100% - 32px);
  background: var(--navy-light);
  border: 1px solid rgba(232,168,68,0.25);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1), opacity 0.4s ease;
  opacity: 0;
}
.cookie-modal.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.cookie-icon { font-size: 2rem; flex-shrink: 0; }
.cookie-text { flex: 1; min-width: 220px; }
.cookie-text p { color: rgba(255,255,255,0.82); font-size: 0.88rem; line-height: 1.6; }
.cookie-text a { color: var(--gold-light); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}
.btn-cookie-accept:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(200,131,42,0.5); }
.btn-cookie-decline {
  padding: 10px 18px;
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}
.btn-cookie-decline:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

/* ===== PHONE FLOAT BUTTON ===== */
.phone-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 998;
  width: 58px; height: 58px;
  background: linear-gradient(135deg, #27ae60, #1e8449);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(39,174,96,0.5);
  animation: phonePulse 2.5s infinite;
  transition: var(--transition);
}
.phone-float:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(39,174,96,0.65); }
.phone-float i { color: var(--white); }

@keyframes phonePulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(39,174,96,0.5), 0 0 0 0 rgba(39,174,96,0.4); }
  50% { box-shadow: 0 6px 24px rgba(39,174,96,0.5), 0 0 0 14px rgba(39,174,96,0); }
}

/* ===== ABOUT STRIP ===== */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 440px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  padding: 18px 24px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 1rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  line-height: 1.3;
}
.about-img-badge span { display: block; font-size: 2rem; font-family: var(--font-display); }

.about-content .section-subtitle { margin-bottom: 1.8rem; }
.about-list { margin: 24px 0; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}
.about-list li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

/* ===== UTILITY ===== */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-strip { gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; }
}

@media (max-width: 768px) {
  .nav-menu, .nav-phone { display: none; }
  .burger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-strip { grid-template-columns: 1fr; }
  .about-img-badge { right: 0; bottom: 0; }
  .footer-copy { flex-direction: column; align-items: flex-start; }
  .hero-cta { flex-direction: row; flex-wrap: wrap; align-items: center; }
  .hero-cta .btn { flex: 1 1 auto; justify-content: center; min-width: 0; padding: 13px 16px; font-size: 0.88rem; }
  .cookie-modal { flex-direction: column; }
}

@media (max-width: 480px) {
  .section { padding: 64px 16px; }
  .nav-container { padding: 0 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
