:root {
  --navy: #0a1f44;
  --navy-dark: #05080f;
  --navy-mid: #0d2050;
  --navy-light: #163460;
  --white: #ffffff;
  --off-white: #f4f6f9;
  --amber: #c9a84c;
  --amber-light: #debb6a;
  --amber-soft: rgba(201, 168, 76, 0.15);
  --amber-glow: rgba(201, 168, 76, 0.25);
  --text-muted: #8fa3c0;
  --card-bg: #0b1120;
  --border: rgba(201, 168, 76, 0.2);
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy-dark);
  color: var(--off-white);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--navy-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--amber);
  border-radius: 3px;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(5, 8, 15, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav {
  max-width: 1280px;
  margin: auto;
  padding: 22px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding 0.3s;
}

header.scrolled .nav {
  padding: 14px 30px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--amber);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  font-size: 18px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
}

.logo-title {
  font-size: 10px;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--amber);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--amber);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--amber);
  color: var(--navy-dark) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}

.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  background: var(--amber-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--amber-glow);
}

.mobile-toggle {
  display: none;
  color: var(--amber);
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("images/Theresa2.webp") center/cover no-repeat;
  opacity: 0.12;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--navy-dark) 40%, rgba(10, 31, 68, 0.6) 100%);
}

/* Geometric decorative shapes */
.hero-deco {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 50%;
}

.hero-deco::before {
  content: "";
  position: absolute;
  inset: 60px;
  border: 1px solid rgba(201, 168, 76, 0.06);
  border-radius: 50%;
}

.hero-deco::after {
  content: "";
  position: absolute;
  inset: 120px;
  border: 1px solid rgba(201, 168, 76, 0.06);
  border-radius: 50%;
}

.hero-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--amber),
    transparent
  );
}

.hero-content {
  max-width: 1280px;
  margin: auto;
  padding: 140px 30px 80px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber-soft);
  border: 1px solid var(--border);
  color: var(--amber);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 28px;
}

.hero-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero h1 em {
  font-style: normal;
  color: var(--amber);
}

.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-bottom: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  max-width: 480px;
  background: rgba(11, 17, 32, 0.7);
  backdrop-filter: blur(10px);
}

.hero-stat {
  flex: 1;
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  background: var(--amber);
  color: var(--navy-dark);
  padding: 15px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px var(--amber-glow);
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-3px);
}

/* Hero card side */
.hero-card {
  background: rgba(11, 17, 32, 0.8);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  backdrop-filter: blur(20px);
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
  border-radius: 20px 20px 0 0;
}

.hero-card-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--amber);
  margin: 0 auto 20px;
  display: block;
}

.hero-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  color: var(--white);
  margin-bottom: 4px;
}

.hero-card-role {
  font-size: 12px;
  color: var(--amber);
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-card-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.hero-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-card-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.hero-card-list li i {
  color: var(--amber);
  width: 16px;
  font-size: 13px;
  flex-shrink: 0;
}

.hero-card-badge {
  background: var(--amber-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.hero-card-badge:hover {
  background: rgba(201, 168, 76, 0.25);
  border-color: var(--amber);
}

.hero-card-badge i {
  color: var(--amber);
  font-size: 22px;
}

.hero-card-badge-text strong {
  display: block;
  color: var(--amber);
  font-size: 14px;
  font-weight: 600;
}

.hero-card-badge-text small {
  color: var(--text-muted);
  font-size: 11px;
}

/* ── SECTIONS ── */
section {
  max-width: 1280px;
  margin: auto;
  padding: 110px 30px;
}

.section-eyebrow {
  display: inline-block;
  color: var(--amber);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 600px;
  line-height: 1.8;
}

.section-header-center {
  text-align: center;
  margin-bottom: 70px;
}

.section-header-center .section-desc {
  margin: 0 auto;
}

/* Section divider line */
.section-rule {
  width: 60px;
  height: 3px;
  background: var(--amber);
  margin: 20px 0 0;
  border-radius: 2px;
}

.section-rule.centered {
  margin: 20px auto 0;
}

/* ── ABOUT ── */
#about {
  background: rgba(11, 17, 32, 0.4);
  border-radius: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-img-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 560px;
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-img-frame:hover img {
  transform: scale(1.04);
}

.about-img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 8, 15, 0.6) 0%, transparent 60%);
}

.about-img-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--amber);
  color: var(--navy-dark);
  padding: 14px 22px;
  border-radius: 10px;
  z-index: 2;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.about-img-badge span {
  display: block;
  font-size: 28px;
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
  margin-bottom: 2px;
}

.about-deco-box {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  border: 2px solid var(--border);
  border-radius: 12px;
  z-index: -1;
}

.about-text .section-desc {
  max-width: 100%;
  margin-bottom: 32px;
}

.about-checks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.about-check {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(11, 17, 32, 0.7);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: var(--transition);
}

.about-check:hover {
  border-color: var(--amber);
  background: var(--amber-soft);
  transform: translateX(5px);
}

.about-check-icon {
  width: 34px;
  height: 34px;
  background: var(--amber-soft);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 14px;
  flex-shrink: 0;
}

.about-check-text strong {
  display: block;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.about-check-text span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--amber);
  transition: width 0.5s ease;
}

.service-card:hover::after {
  width: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--amber-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 22px;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--amber);
  color: var(--navy-dark);
  border-color: var(--amber);
}

.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}

/* ── EXPERIENCE / TIMELINE ── */
#experience {
  background: rgba(11, 17, 32, 0.5);
}

.timeline {
  position: relative;
  margin-top: 60px;
  padding-left: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--amber), rgba(201, 168, 76, 0.2));
}

.timeline-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 32px;
  margin-bottom: 50px;
  align-items: start;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-left {
  display: flex;
  justify-content: center;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  background: var(--amber);
  border-radius: 50%;
  border: 3px solid var(--navy-dark);
  outline: 2px solid var(--amber);
  margin-top: 6px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.timeline-body {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px;
  transition: var(--transition);
}

.timeline-body:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateX(6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.timeline-period {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--amber);
  text-transform: uppercase;
  background: var(--amber-soft);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.timeline-body h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.timeline-company {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
  font-weight: 500;
}

.timeline-body p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.quote-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 80px;
  color: rgba(201, 168, 76, 0.15);
  line-height: 0.6;
  margin-bottom: 20px;
  display: block;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars i {
  color: var(--amber);
  font-size: 13px;
}

.testimonial-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--amber);
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: var(--white);
  font-size: 14px;
  margin-bottom: 2px;
}

.author-role {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 50px 30px;
}

.trust-inner {
  max-width: 1280px;
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-item i {
  font-size: 28px;
  color: var(--amber);
}

.trust-item-text strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
}

.trust-item-text span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── CONTACT ── */
#contact {
  max-width: 100%;
  padding: 0;
  background: var(--navy);
}

.contact-inner {
  max-width: 1280px;
  margin: auto;
  padding: 110px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 44px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.contact-card:hover {
  border-color: var(--amber);
  background: var(--amber-soft);
  transform: translateX(6px);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  background: var(--amber-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 20px;
  flex-shrink: 0;
}

.contact-card-text strong {
  display: block;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 3px;
}

.contact-card-text span {
  font-size: 13px;
  color: var(--text-muted);
}

.contact-form-wrap {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px;
}

.contact-form-wrap h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-form-wrap p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  transition: border-color 0.3s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--amber);
  background: var(--amber-soft);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--amber);
  color: var(--navy-dark);
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.3px;
}

.form-submit:hover {
  background: var(--amber-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px var(--amber-glow);
}

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  border-top: 1px solid var(--border);
  padding: 60px 30px 40px;
  text-align: center;
}

.footer-inner {
  max-width: 1280px;
  margin: auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--amber);
}

.footer-copy {
  font-size: 13px;
  color: rgba(122, 139, 168, 0.6);
  line-height: 1.8;
}

/* ── FLOATING BUTTONS ── */
.float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 2000;
}

.float a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.float a:hover {
  transform: translateY(-4px) scale(1.1);
}
.float a.whatsapp {
  background: #25d366;
  color: #fff;
}
.float a.telegram {
  background: #0088cc;
  color: #fff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ── LICENSE MODAL ── */
.license-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 15, 0.92);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 20px;
}

.license-modal.active {
  display: flex;
}

.license-modal-content {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 20px;
  width: 100%;
  max-width: 920px;
  max-height: 82vh;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.license-modal-header {
  background: rgba(201, 168, 76, 0.08);
  padding: 24px 30px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.license-modal-header h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 10px;
}

.close-modal {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 22px;
  cursor: pointer;
  transition: color 0.3s;
}

.close-modal:hover {
  color: var(--amber);
}

.license-modal-body {
  padding: 30px;
  overflow-y: auto;
  max-height: calc(82vh - 160px);
}

.license-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
}

.license-column h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.license-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.license-state {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  border-radius: 7px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  transition: background 0.2s;
}

.license-state:hover {
  background: var(--amber-soft);
}

.license-code {
  color: var(--amber);
  font-weight: 700;
  font-size: 13px;
  width: 16px;
}

.license-modal-footer {
  padding: 18px 30px;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid var(--border);
  text-align: center;
}

.license-modal-footer p {
  color: var(--text-muted);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.license-modal-footer i {
  color: var(--amber);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation: fadeUp 0.7s ease forwards;
  opacity: 0;
}
.d1 {
  animation-delay: 0.1s;
}
.d2 {
  animation-delay: 0.2s;
}
.d3 {
  animation-delay: 0.3s;
}
.d4 {
  animation-delay: 0.4s;
}
.d5 {
  animation-delay: 0.5s;
}
.d6 {
  animation-delay: 0.6s;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-card {
    max-width: 420px;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(5, 8, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 30px;
    border-bottom: 1px solid var(--border);
    gap: 20px;
  }

  .nav-links.active {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-cta {
    display: none;
  }

  .hero h1 {
    font-size: 38px;
  }
  .hero-stats {
    max-width: 100%;
  }
  .about-img-frame {
    height: 380px;
  }
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap {
    padding: 28px 24px;
  }
  section {
    padding: 80px 20px;
  }
  .timeline-item {
    grid-template-columns: 40px 1fr;
    gap: 20px;
  }
  .timeline::before {
    left: 19px;
  }
  .trust-inner {
    justify-content: center;
  }
}
