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

:root {
  --midnight: #0A1F3F;
  --midnight-light: #1A3A6B;
  --midnight-dark: #061529;
  --mint: #5EEAD4;
  --mint-dark: #2DD4BF;
  --mint-light: #99F6E8;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --gray-50: #F1F5F9;
  --gray-100: #E2E8F0;
  --gray-200: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 1px 3px rgba(10, 31, 63, 0.08);
  --shadow-md: 0 4px 20px rgba(10, 31, 63, 0.12);
  --shadow-lg: 0 12px 40px rgba(10, 31, 63, 0.16);
  --shadow-xl: 0 20px 60px rgba(10, 31, 63, 0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-mint {
  color: var(--mint);
}

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

.btn--primary {
  background: var(--mint);
  color: var(--midnight);
  border-color: var(--mint);
}

.btn--primary:hover {
  background: var(--mint-dark);
  border-color: var(--mint-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(94, 234, 212, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
  border-color: var(--mint);
  color: var(--mint);
  transform: translateY(-2px);
}

.btn--light {
  background: var(--white);
  color: var(--midnight);
  border-color: var(--white);
}

.btn--light:hover {
  background: var(--mint);
  border-color: var(--mint);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

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

.btn--full {
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
  font-size: 1rem;
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 31, 63, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(94, 234, 212, 0.1);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(6, 21, 41, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.2;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
}

.nav__logo-accent {
  color: var(--mint);
  font-weight: 500;
  font-size: 0.8rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav__link:hover {
  color: var(--white);
  background: rgba(94, 234, 212, 0.1);
}

.nav__link--cta {
  background: var(--mint);
  color: var(--midnight);
  font-weight: 700;
  margin-left: 8px;
}

.nav__link--cta:hover {
  background: var(--mint-dark);
  color: var(--midnight);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__toggle.active .nav__toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active .nav__toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}

.mobile-menu.open {
  visibility: visible;
  opacity: 1;
}

.mobile-menu__bg {
  position: absolute;
  inset: 0;
  background: var(--midnight-dark);
}

.mobile-menu__list {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mobile-menu__link {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  padding: 12px 32px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.mobile-menu__link:hover {
  color: var(--mint);
  background: rgba(94, 234, 212, 0.08);
}

.mobile-menu__link--cta {
  margin-top: 16px;
  background: var(--mint);
  color: var(--midnight);
}

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

.hero__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__shape {
  position: absolute;
}

.hero__shape--circle1 {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 234, 212, 0.08) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.hero__shape--circle2 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 234, 212, 0.06) 0%, transparent 70%);
  bottom: 10%;
  left: 5%;
}

.hero__shape--triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 120px 120px;
  border-color: transparent transparent rgba(94, 234, 212, 0.07) transparent;
  top: 20%;
  left: 38%;
  transform: rotate(-15deg);
}

.hero__shape--dots {
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, rgba(94, 234, 212, 0.25) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  bottom: 25%;
  right: 48%;
  opacity: 0.6;
}

.hero__shape--stripe {
  width: 200px;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(94, 234, 212, 0.3), transparent);
  bottom: 35%;
  left: 0;
  transform: rotate(-5deg);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(94, 234, 212, 0.12);
  border: 1px solid rgba(94, 234, 212, 0.25);
  color: var(--mint);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__title-accent {
  color: var(--mint);
  position: relative;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero__trust-item svg {
  flex-shrink: 0;
}

/* Hero Image */
.hero__image-wrap {
  position: relative;
}

.hero__image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero__image {
  width: 100%;
  height: 720px;
  object-fit: cover;
  display: block;
}

.hero__image-accent {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(94, 234, 212, 0.2);
  pointer-events: none;
}

.hero__float-card {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.hero__float-card__icon {
  width: 48px;
  height: 48px;
  background: var(--mint);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__float-card__label {
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__float-card__value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--midnight);
}

/* Hero Wave */
.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero__wave svg {
  width: 100%;
  height: 80px;
}

/* ===== SECTION COMMON ===== */
.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mint-dark);
  background: rgba(94, 234, 212, 0.12);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--midnight);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

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

/* ===== SERVICES ===== */
.services {
  padding: 100px 0 120px;
  background: var(--white);
}

.services .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.services .section-subtitle {
  margin: 0 auto;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mint), var(--mint-dark));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(94, 234, 212, 0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--midnight);
  transition: var(--transition);
}

.service-card__link:hover {
  color: var(--mint-dark);
  gap: 10px;
}

/* ===== ABOUT ===== */
.about {
  position: relative;
  padding: 100px 0;
  background: var(--off-white);
  overflow: hidden;
}

.about__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.about__shape {
  position: absolute;
  opacity: 0.04;
}

.about__shape--circle {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--mint);
  top: -100px;
  right: -100px;
}

.about__shape--square {
  width: 200px;
  height: 200px;
  background: var(--midnight);
  bottom: -50px;
  left: 10%;
  transform: rotate(25deg);
}

.about__shape--triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 80px 140px 80px;
  border-color: transparent transparent var(--mint) transparent;
  top: 30%;
  left: 5%;
  transform: rotate(-20deg);
  opacity: 0.06;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about__image-stack {
  position: relative;
}

.about__image-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__image {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.about__image-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
}

.about__image-secondary-img {
  width: 260px;
  height: 200px;
  object-fit: cover;
  display: block;
}

.about__experience-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--midnight);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about__experience-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--mint);
  line-height: 1;
}

.about__experience-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.about__body {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about__stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
}

.about__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about__stat-value {
  width: 52px;
  height: 52px;
  background: var(--midnight);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__stat-label {
  font-size: 0.82rem;
  color: var(--gray-600);
  font-weight: 500;
  line-height: 1.4;
}

/* ===== WHY US ===== */
.why-us {
  position: relative;
  padding: 100px 0;
  background: var(--white);
}

.why-us__accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--midnight), var(--mint), var(--midnight));
}

.why-us__header {
  text-align: center;
  margin-bottom: 64px;
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  position: relative;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: var(--midnight);
  transition: var(--transition);
  z-index: 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.why-card:hover::after {
  height: 100%;
}

.why-card > * {
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.why-card:hover {
  border-color: transparent;
}

.why-card:hover > * {
  color: var(--white);
}

.why-card__number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(10, 31, 63, 0.05);
  line-height: 1;
  margin-bottom: 16px;
  transition: var(--transition);
}

.why-card:hover .why-card__number {
  color: rgba(94, 234, 212, 0.15);
}

.why-card__icon {
  width: 56px;
  height: 56px;
  background: var(--mint);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.why-card:hover .why-card__icon {
  background: var(--mint-dark);
}

.why-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 12px;
  transition: var(--transition);
}

.why-card:hover .why-card__title {
  color: var(--white);
}

.why-card__text {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
  transition: var(--transition);
}

.why-card:hover .why-card__text {
  color: rgba(255, 255, 255, 0.75);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 80px 0;
  background: var(--midnight);
  overflow: hidden;
}

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

.cta-banner__shape {
  position: absolute;
  border-radius: 50%;
}

.cta-banner__shape--circle1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(94, 234, 212, 0.1), transparent 70%);
  top: -150px;
  left: -100px;
}

.cta-banner__shape--circle2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(94, 234, 212, 0.08), transparent 70%);
  bottom: -80px;
  right: 15%;
}

.cta-banner__shape--rect {
  width: 150px;
  height: 150px;
  background: rgba(94, 234, 212, 0.05);
  border: 1px solid rgba(94, 234, 212, 0.1);
  top: 20%;
  right: 5%;
  transform: rotate(30deg);
  border-radius: var(--radius-md);
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner__content {
  flex: 1;
  min-width: 280px;
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.cta-banner__text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--off-white);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__body {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact__detail {
  display: flex;
  gap: 16px;
}

.contact__detail-icon {
  width: 48px;
  height: 48px;
  background: var(--midnight);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__detail-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact__detail-value {
  font-size: 0.95rem;
  color: var(--gray-800);
  font-weight: 500;
  line-height: 1.6;
}

.contact__link:hover {
  color: var(--mint-dark);
}

/* Form */
.contact__form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact__field {
  margin-bottom: 20px;
}

.contact__label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.contact__input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.contact__input:focus {
  border-color: var(--mint-dark);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(94, 234, 212, 0.15);
}

.contact__input::placeholder {
  color: var(--gray-400);
}

.contact__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.contact__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__success {
  text-align: center;
  padding: 48px 40px;
}

.contact__success-icon {
  margin: 0 auto 20px;
  width: 80px;
  height: 80px;
  background: rgba(94, 234, 212, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__success-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--midnight);
  margin-bottom: 12px;
}

.contact__success-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 360px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--midnight-dark);
  color: var(--white);
}

.footer__top {
  padding: 80px 0 48px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.footer__logo-text {
  display: flex;
  flex-direction: column;
}

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 280px;
}

.footer__col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mint);
  margin-bottom: 20px;
}

.footer__list li {
  margin-bottom: 12px;
}

.footer__list a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer__list a:hover {
  color: var(--mint);
  padding-left: 4px;
}

.footer__list--contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer__list--contact a:hover {
  color: var(--mint);
  padding-left: 0;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.footer__copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__inner {
    gap: 40px;
  }
  
  .hero__image {
    height: 560px;
  }
  
  .about__inner {
    gap: 48px;
  }
  
  .about__image {
    height: 460px;
  }
  
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }
  
  .nav__toggle {
    display: flex;
  }
  
  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 80px;
  }
  
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 40px 24px;
  }
  
  .hero__image {
    height: 400px;
  }
  
  .hero__float-card {
    bottom: -16px;
    left: 16px;
  }
  
  .hero__wave svg {
    height: 50px;
  }
  
  .services {
    padding: 80px 0;
  }
  
  .services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .about {
    padding: 80px 0;
  }
  
  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about__image {
    height: 360px;
  }
  
  .about__image-secondary {
    right: -10px;
    bottom: -20px;
  }
  
  .about__image-secondary-img {
    width: 180px;
    height: 140px;
  }
  
  .about__experience-badge {
    top: -12px;
    left: -12px;
    padding: 14px 18px;
  }
  
  .about__experience-number {
    font-size: 1.3rem;
  }
  
  .about__stats {
    gap: 24px;
  }
  
  .why-us {
    padding: 80px 0;
  }
  
  .why-us__grid {
    grid-template-columns: 1fr;
  }
  
  .cta-banner {
    padding: 60px 0;
  }
  
  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }
  
  .contact {
    padding: 80px 0;
  }
  
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .contact__form {
    padding: 28px;
  }
  
  .contact__form-row {
    grid-template-columns: 1fr;
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }
  
  .hero__actions .btn {
    justify-content: center;
    width: 100%;
  }
  
  .hero__trust {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn--lg {
    padding: 14px 24px;
    font-size: 0.95rem;
  }
  
  .cta-banner__actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-banner__actions .btn {
    justify-content: center;
  }
}
