/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  --color-navy-dark: #0a1628;
  --color-navy: #0f2140;
  --color-navy-light: #162d50;
  --color-navy-lighter: #1a3461;
  --color-gold: #c9a84c;
  --color-gold-light: #e2c97e;
  --color-gold-dark: #a68a3e;
  --color-white: #ffffff;
  --color-text: #e0e4ea;
  --color-text-muted: #8a94a6;
  --color-border: rgba(201, 168, 76, 0.2);
  --color-success: #4ade80;
  --color-error: #f87171;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --section-padding: clamp(4rem, 8vw, 7rem);
  --container-width: 1200px;
  --container-padding: clamp(1rem, 4vw, 2rem);

  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.6s ease;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 8px 40px rgba(0, 0, 0, 0.4);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--color-navy-dark);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
  overflow: hidden;
}

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

a:hover {
  color: var(--color-gold-light);
}

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

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-white);
  line-height: 1.2;
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--section-padding) 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 1.5rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1.4;
}

.btn--primary {
  background: var(--color-gold);
  color: var(--color-navy-dark);
  border-color: var(--color-gold);
}

.btn--primary:hover {
  background: var(--color-gold-light);
  color: var(--color-navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.btn--outline:hover {
  background: rgba(201, 168, 76, 0.1);
  color: var(--color-gold-light);
}

.btn--full {
  width: 100%;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children .fade-up:nth-child(1) { transition-delay: 0s; }
.stagger-children .fade-up:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .fade-up:nth-child(3) { transition-delay: 0.15s; }
.stagger-children .fade-up:nth-child(4) { transition-delay: 0.2s; }
.stagger-children .fade-up:nth-child(5) { transition-delay: 0.25s; }
.stagger-children .fade-up:nth-child(6) { transition-delay: 0.3s; }

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.header.scrolled {
  background: rgba(15, 33, 64, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  padding: 12px 0;
}

.header:has(.nav.open) {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  z-index: 1001;
}

.logo span {
  color: var(--color-gold);
}

.nav__list {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-fast);
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-gold);
}

.nav__link.active::after,
.nav__link:hover::after {
  width: 100%;
}

.header__phone {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.header__phone svg {
  width: 16px;
  height: 16px;
}

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

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

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

.burger.active span:nth-child(2) {
  opacity: 0;
}

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

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 50%, var(--color-navy-light) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0.3;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
}

.hero__content {
  max-width: 700px;
}

.hero__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroFadeIn 0.8s ease 0.1s forwards;
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 1rem;
  opacity: 0;
  animation: heroFadeIn 0.8s ease 0.3s forwards;
}

.hero__subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
  font-weight: 500;
  opacity: 0;
  animation: heroFadeIn 0.8s ease 0.5s forwards;
}

.hero__tagline {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 550px;
  line-height: 1.7;
  opacity: 0;
  animation: heroFadeIn 0.8s ease 0.6s forwards;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: heroFadeIn 0.8s ease 0.7s forwards;
}

.hero__rating {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: heroFadeIn 0.8s ease 0.9s forwards;
}

.hero__stars {
  display: flex;
  gap: 2px;
}

.hero__stars svg {
  width: 18px;
  height: 18px;
  fill: var(--color-gold);
}

.hero__rating-text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.hero__rating-text strong {
  color: var(--color-white);
}

/* Hero Photo */
.hero__photo {
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: heroFadeIn 0.8s ease 0.5s forwards;
}

.hero__photo-frame {
  position: relative;
  width: 280px;
  height: 350px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--color-gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero__photo-frame::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  pointer-events: none;
  z-index: -1;
}

.hero__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  background: var(--color-navy);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about__avatar {
  display: flex;
  justify-content: center;
}

.about__avatar-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-navy-light), var(--color-navy-lighter));
  border: 3px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about__avatar-circle::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
}

.about__initials {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-gold);
}

.about__text p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--color-text);
}

.about__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 2rem 0;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.about__feature svg {
  width: 20px;
  height: 20px;
  fill: var(--color-gold);
  flex-shrink: 0;
}

.about__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.about__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  transition: all var(--transition-fast);
}

.about__link:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(201, 168, 76, 0.05);
}

.about__link svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  background: var(--color-navy-dark);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 3rem;
}

.service-card {
  background: var(--color-navy);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform var(--transition-medium);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(201, 168, 76, 0.4);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(201, 168, 76, 0.1);
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-card__text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================
   BUSINESS
   ============================================ */
.business {
  background: var(--color-navy);
}

/* ============================================
   PACKAGES
   ============================================ */
.packages {
  background: var(--color-navy-dark);
}

.packages__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.package-card {
  background: var(--color-navy);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-medium);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.package-card--featured {
  border-color: var(--color-gold);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.1);
}

.package-card__badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--color-gold);
  color: var(--color-navy-dark);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.package-card__header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.package-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.package-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.package-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.package-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-text);
}

.package-card__features svg {
  width: 18px;
  height: 18px;
  fill: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   EXPERIENCE / STATS
   ============================================ */
.experience {
  background: var(--color-navy);
  position: relative;
}

.experience::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0.3;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat {
  text-align: center;
  padding: 2rem 1rem;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.stat__label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  background: var(--color-navy-dark);
}

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 3rem;
}

.review-card {
  background: var(--color-navy);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-medium);
}

.review-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: var(--shadow-card);
}

.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.review-card__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--color-gold);
}

.review-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.review-card__text::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-gold);
  line-height: 0;
  vertical-align: -0.3em;
  margin-right: 4px;
}

.review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.review-card__author {
  font-weight: 600;
  color: var(--color-white);
  font-size: 0.9rem;
}

.review-card__meta {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--color-navy);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact__info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 2rem 0;
}

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

.contact__info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact__info-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}

.contact__info-value {
  font-weight: 600;
  color: var(--color-white);
}

.contact__info-value a {
  color: var(--color-white);
}

.contact__info-value a:hover {
  color: var(--color-gold);
}

.contact__profiles {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Contact Form */
.contact-form {
  background: var(--color-navy-dark);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.contact-form__title {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--color-navy);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  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='%238a94a6' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--color-navy);
  color: var(--color-white);
}

.form-group select optgroup {
  background: var(--color-navy);
  color: var(--color-text-muted);
  font-style: normal;
  font-weight: 600;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

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

.form-submit {
  margin-top: 0.5rem;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
  text-align: center;
  line-height: 1.5;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-navy-dark);
  border-top: 1px solid var(--color-border);
  padding: 3rem 0 2rem;
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.footer__brand .logo {
  font-size: 1.3rem;
  display: block;
  margin-bottom: 0.75rem;
}

.footer__brand p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  max-width: 300px;
  line-height: 1.6;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
}

.footer__nav a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.footer__nav a:hover {
  color: var(--color-gold);
}

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

.footer__contacts a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__contacts a:hover {
  color: var(--color-gold);
}

.footer__contacts svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-text-muted);
  fill: none;
  stroke-width: 1.5;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.footer__copyright {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer__disclaimer {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  opacity: 0.7;
  line-height: 1.5;
}

/* ============================================
   NOTIFICATION
   ============================================ */
.notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 2000;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-medium);
  max-width: 380px;
}

.notification.show {
  transform: translateY(0);
  opacity: 1;
}

.notification--success {
  background: var(--color-navy-light);
  border: 1px solid var(--color-success);
  color: var(--color-success);
}

.notification--error {
  background: var(--color-navy-light);
  border: 1px solid var(--color-error);
  color: var(--color-error);
}

/* ============================================
   RESPONSIVE: TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr auto;
    gap: 4rem;
  }

  .hero__photo-frame {
    width: 320px;
    height: 400px;
  }

  .about__grid {
    grid-template-columns: 250px 1fr;
    gap: 4rem;
  }

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

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

  .packages__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .footer__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

/* ============================================
   RESPONSIVE: DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .nav {
    display: block !important;
  }

  .burger {
    display: none !important;
  }

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

  .reviews__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero__photo-frame {
    width: 380px;
    height: 480px;
  }
}

/* ============================================
   RESPONSIVE: MOBILE (<768px)
   ============================================ */
@media (max-width: 1023px) {
  .burger {
    display: flex;
  }

  .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
  }

  .nav.open {
    display: flex;
  }

  .nav__list {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .nav__link {
    font-size: 1.25rem;
  }

  .header__phone {
    display: none;
  }

}

@media (max-width: 480px) {
  .hero__buttons {
    flex-direction: column;
  }

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

  .stat {
    padding: 1.5rem 0.5rem;
  }

  .review-card {
    padding: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}
