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

:root {
  --bg-primary: #0a0f14;
  --bg-secondary: #111820;
  --bg-card: #151d27;
  --bg-card-hover: #1a2430;
  --teal-400: #2dd4bf;
  --teal-500: #0d9488;
  --teal-600: #0f766e;
  --teal-700: #115e59;
  --gold-400: #f5c842;
  --gold-500: #d4a017;
  --gold-600: #b8860b;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--slate-200);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 15, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45, 212, 191, 0.08);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(10, 15, 20, 0.95);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-400));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--slate-100);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-400);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}

.nav__links a:hover {
  color: var(--teal-400);
}

.nav__cta {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  color: var(--slate-100) !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: all var(--transition) !important;
  box-shadow: 0 2px 12px rgba(13, 148, 136, 0.3);
}

.nav__cta:hover {
  background: linear-gradient(135deg, var(--teal-400), var(--teal-500)) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.4);
}

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

.nav__toggle-bar {
  width: 22px;
  height: 2px;
  background: var(--slate-300);
  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;
  background: rgba(10, 15, 20, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--slate-300);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--slate-200);
  padding: 12px 24px;
  transition: color var(--transition);
}

.mobile-menu__link:hover {
  color: var(--teal-400);
}

.mobile-menu__cta {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 600;
  color: var(--teal-400);
  padding: 12px 24px;
  border: 1px solid var(--teal-500);
  border-radius: var(--radius-sm);
}

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

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  pointer-events: none;
}

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

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 148, 136, 0.12);
  border: 1px solid rgba(13, 148, 136, 0.25);
  color: var(--teal-400);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--slate-100);
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.hero__headline-accent {
  background: linear-gradient(135deg, var(--teal-400), var(--gold-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subheadline {
  font-size: 17px;
  line-height: 1.75;
  color: var(--slate-400);
  max-width: 480px;
  margin-bottom: 36px;
}

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

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

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--slate-400);
  font-size: 14px;
  font-weight: 500;
}

.hero__trust-item svg {
  color: var(--teal-400);
  flex-shrink: 0;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  color: var(--slate-100);
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.35);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--teal-400), var(--teal-500));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(13, 148, 136, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--slate-200);
  border: 1px solid var(--slate-700);
}

.btn--outline:hover {
  border-color: var(--teal-500);
  color: var(--teal-400);
  background: rgba(13, 148, 136, 0.06);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--bg-primary);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.3);
}

.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.4);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

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

.hero__image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

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

.hero__image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(45, 212, 191, 0.15);
  pointer-events: none;
}

.hero__image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(13, 148, 136, 0.3);
  border-radius: var(--radius-md);
  z-index: -1;
}

.hero__image-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--bg-card);
  border: 1px solid rgba(45, 212, 191, 0.15);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero__image-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-100);
  flex-shrink: 0;
}

.hero__image-card-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--slate-100);
  line-height: 1.3;
}

.hero__gold-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-500), var(--teal-400), transparent);
  opacity: 0.5;
}

/* ===== Section Header ===== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: 16px;
}

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--slate-100);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-header__title-accent {
  background: linear-gradient(135deg, var(--teal-400), var(--gold-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header__desc {
  font-size: 16px;
  color: var(--slate-400);
  line-height: 1.75;
}

/* ===== Services Section ===== */
.services {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.2), transparent);
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(148, 163, 184, 0.08);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(45, 212, 191, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.service-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(13, 148, 136, 0.12);
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-400);
  margin-bottom: 24px;
  transition: all var(--transition);
}

.service-card:hover .service-card__icon {
  background: rgba(13, 148, 136, 0.2);
  border-color: rgba(13, 148, 136, 0.35);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--slate-100);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card__desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--slate-400);
}

/* ===== About Section ===== */
.about {
  padding: 120px 0;
  background: var(--bg-primary);
  position: relative;
}

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

.about__image-col {
  position: relative;
}

.about__image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}

.about__image-wrapper img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  display: block;
}

.about__image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 20, 0.4), transparent 50%);
  pointer-events: none;
}

.about__stat-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  border-radius: var(--radius-md);
  padding: 24px 32px;
  text-align: center;
  box-shadow: 0 16px 48px rgba(13, 148, 136, 0.35);
}

.about__stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--slate-100);
  line-height: 1;
  margin-bottom: 4px;
}

.about__stat-label {
  font-size: 13px;
  color: rgba(241, 245, 249, 0.8);
  font-weight: 500;
}

.about__content {
  max-width: 480px;
}

.about__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--slate-100);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  margin-top: 16px;
}

.about__body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--slate-400);
  margin-bottom: 16px;
}

.about__values {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.about__value {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--slate-200);
}

.about__value-icon {
  width: 28px;
  height: 28px;
  background: rgba(13, 148, 136, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-400);
  flex-shrink: 0;
}

/* ===== Community Section ===== */
.community {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.community::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -20%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(13, 148, 136, 0.06) 0%, transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
}

.community__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.community__content {
  max-width: 480px;
}

.community__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--slate-100);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  margin-top: 16px;
}

.community__desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--slate-400);
  margin-bottom: 32px;
}

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

.community__image-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.community__image-item:first-child {
  margin-top: 32px;
}

.community__image-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.community__image-item:hover img {
  transform: scale(1.05);
}

/* ===== Contact Section ===== */
.contact {
  padding: 120px 0;
  background: var(--bg-primary);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.2), transparent);
}

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

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--slate-100);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  margin-top: 16px;
}

.contact__desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--slate-400);
  margin-bottom: 40px;
}

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

.contact__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(13, 148, 136, 0.1);
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-400);
  flex-shrink: 0;
}

.contact__detail-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 4px;
}

.contact__detail-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--slate-200);
  line-height: 1.6;
}

.contact__link {
  color: var(--teal-400);
  transition: color var(--transition);
}

.contact__link:hover {
  color: var(--gold-400);
}

/* ===== Contact Form ===== */
.contact__form-card {
  background: var(--bg-card);
  border: 1px solid rgba(148, 163, 184, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact__form-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--slate-100);
  margin-bottom: 8px;
}

.contact__form-desc {
  font-size: 14px;
  color: var(--slate-400);
  margin-bottom: 28px;
  line-height: 1.7;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-300);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--slate-700);
  border-radius: var(--radius-sm);
  color: var(--slate-100);
  font-size: 15px;
  font-family: var(--font-body);
  transition: all var(--transition);
  outline: none;
}

.form-input::placeholder {
  color: var(--slate-600);
}

.form-input:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
  background: var(--bg-secondary);
}

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

/* ===== Form Success ===== */
.contact__form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(13, 148, 136, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--slate-100);
  margin-bottom: 8px;
}

.form-success__text {
  font-size: 14px;
  color: var(--slate-400);
  line-height: 1.7;
}

/* ===== Map Section ===== */
.map-section {
  border-top: 1px solid rgba(148, 163, 184, 0.06);
  border-bottom: 1px solid rgba(148, 163, 184, 0.06);
}

.map-section__inner iframe {
  filter: grayscale(0.6) brightness(0.7) contrast(1.1);
  transition: filter var(--transition);
}

.map-section__inner:hover iframe {
  filter: grayscale(0.3) brightness(0.8) contrast(1.05);
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-secondary);
  padding: 64px 0 0;
  border-top: 1px solid rgba(148, 163, 184, 0.06);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer__logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-400));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.footer__logo-text {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--slate-100);
  line-height: 1.2;
}

.footer__tagline {
  font-size: 14px;
  color: var(--slate-500);
  line-height: 1.7;
  max-width: 280px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 14px;
  color: var(--slate-400);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--teal-400);
}

.footer__contact p {
  font-size: 14px;
  color: var(--slate-400);
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer__email {
  font-size: 14px;
  color: var(--teal-400);
  transition: color var(--transition);
}

.footer__email:hover {
  color: var(--gold-400);
}

.footer__bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  padding: 24px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 13px;
  color: var(--slate-600);
}

/* ===== Reveal Animations ===== */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero__inner {
    gap: 40px;
  }

  .hero__image-frame img {
    height: 560px;
  }

  .about__inner {
    gap: 48px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 40px 0 80px;
    text-align: center;
  }

  .hero__subheadline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__trust {
    justify-content: center;
  }

  .hero__image {
    max-width: 480px;
    margin: 0 auto;
  }

  .hero__image-frame img {
    height: 480px;
  }

  .hero__image-card {
    left: 16px;
    bottom: -16px;
  }

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

  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__image-wrapper img {
    height: 400px;
  }

  .about__stat-card {
    right: 16px;
    bottom: -16px;
  }

  .about__content {
    max-width: 100%;
  }

  .community__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .community__content {
    max-width: 100%;
    text-align: center;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact__form-card {
    padding: 28px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__image-frame img {
    height: 380px;
  }

  .hero__image-card {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 16px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .services, .about, .community, .contact {
    padding: 80px 0;
  }
}
