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

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --gray: #888888;
  --light-gray: #cccccc;
  --white: #f5f5f5;
  --pure-white: #ffffff;
  --accent: #e0e0e0;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.2);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

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

ul { list-style: none; }

::selection {
  background: var(--pure-white);
  color: var(--black);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

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

/* Stagger children */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* ===== TYPOGRAPHY ===== */
.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 24px;
  font-weight: 500;
}

.section-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

.text-accent {
  color: var(--gray);
}

.text-outline {
  -webkit-text-stroke: 1.5px var(--white);
  color: transparent;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 60px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.4s var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--pure-white);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-hover);
}

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

.btn-large {
  padding: 20px 48px;
  font-size: 1rem;
}

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

.btn-arrow {
  transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(0px);
}

#navbar.scrolled {
  padding: 12px 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--pure-white);
}

.nav-logo span {
  font-weight: 300;
  opacity: 0.5;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--light-gray);
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
}

.nav-links button {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--light-gray);
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
}

.nav-links a:hover {
  color: var(--pure-white);
}

.nav-links button:hover {
  color: var(--pure-white);
}

.nav-cta {
  padding: 10px 24px !important;
  background: var(--pure-white) !important;
  color: var(--black) !important;
  border-radius: 60px;
  font-weight: 500 !important;
}

.nav-cta:hover {
  opacity: 0.9;
}

.nav-cart-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cart-count {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--pure-white);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--pure-white);
  transition: all 0.3s ease;
}

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

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

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

/* ===== HERO SECTION ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 10%;
  pointer-events: none;
}

.hero-bg-lines .line {
  width: 1px;
  height: 100%;
  background: var(--border);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 60px;
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}

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

.hero-headline {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  max-width: 900px;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 400;
}

.trust-icon {
  font-size: 0.5rem;
  color: var(--light-gray);
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gray), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ===== ABOUT SECTION ===== */
#about {
  padding: 160px 0;
  border-top: 1px solid var(--border);
}

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

.about-text {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 300;
}

.about-highlights {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.highlight-number {
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.highlight-text {
  font-size: 0.95rem;
  font-weight: 500;
}

/* ===== SERVICES SECTION ===== */
#services {
  padding: 160px 0;
  border-top: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

#services > .container > .services-grid:not(.services-grid-cart) {
  display: none;
}

.services-grid-cart {
  margin-top: 24px;
}

.service-card {
  background: var(--black);
  padding: 48px 36px;
  position: relative;
  transition: all 0.5s var(--transition);
  cursor: pointer;
}

.service-card-cart {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  cursor: pointer;
  transition: transform 0.45s var(--transition), background 0.45s var(--transition), box-shadow 0.45s var(--transition), border-color 0.45s var(--transition);
}

.service-card:hover {
  background: var(--dark);
}

.service-card-cart:hover {
  background: var(--dark-2);
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.service-card-cart:focus-visible {
  outline: 1px solid var(--border-hover);
  outline-offset: 0;
}

.service-card-cart:hover .service-price,
.service-card-cart:focus-visible .service-price {
  color: var(--pure-white);
}

.service-card-cart:hover .service-cart-btn,
.service-card-cart:focus-visible .service-cart-btn {
  border-color: var(--border-hover);
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  color: var(--white);
  transition: transform 0.4s var(--transition);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  font-weight: 300;
}

.service-arrow {
  position: absolute;
  top: 48px;
  right: 36px;
  font-size: 1.5rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s var(--transition);
  color: var(--light-gray);
}

.service-price-label {
  margin-top: 18px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}

.service-price {
  margin-top: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.service-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gray);
  margin-left: 6px;
}

.service-actions {
  margin-top: 24px;
}

.service-cart-btn {
  width: 100%;
  border: 1px solid var(--border-hover);
  background: transparent;
  color: var(--white);
  border-radius: 60px;
  padding: 14px 22px;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.35s var(--transition);
}

.service-cart-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--white);
}

.service-cart-btn.is-added {
  background: var(--pure-white);
  color: var(--black);
  border-color: var(--pure-white);
}

.service-cart-btn.is-added:hover {
  background: var(--accent);
}

/* ===== TEAM SECTION ===== */
#team {
  padding: 160px 0;
  border-top: 1px solid var(--border);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.team-member {
  background: var(--dark-2);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s var(--transition);
  border: 1px solid var(--border);
}

.team-member:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
}

.team-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--black);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: grayscale(80%);
}

.team-member:hover .team-image img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.team-info {
  padding: 24px;
  text-align: center;
}

.team-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.team-role {
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== RESULTS / STATS ===== */
#results {
  padding: 160px 0;
  border-top: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.stat-card {
  background: var(--black);
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat-number {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  display: inline;
}

.stat-suffix {
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 300;
  color: var(--gray);
  display: inline;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 12px;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.stat-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--pure-white);
  transform: scaleX(0);
  transition: transform 1.2s var(--transition);
  transform-origin: left;
}

.stat-card.counted .stat-bar {
  transform: scaleX(1);
}

/* ===== PORTFOLIO ===== */
#portfolio {
  padding: 160px 0;
  border-top: 1px solid var(--border);
}

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

.portfolio-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
  border-radius: 4px;
}

.portfolio-image {
  width: 100%;
  height: 100%;
  transition: transform 0.7s var(--transition);
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.portfolio-item:hover .portfolio-image {
  transform: scale(1.05);
}

.portfolio-item:hover .portfolio-image img {
  filter: grayscale(30%);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-category {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

.portfolio-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.portfolio-desc {
  font-size: 0.85rem;
  color: var(--light-gray);
  font-weight: 300;
  line-height: 1.6;
}

/* ===== WHY CHOOSE US ===== */
#why-us {
  padding: 160px 0;
  border-top: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.why-item {
  display: grid;
  grid-template-columns: 80px 1fr 2fr;
  gap: 40px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.why-item:first-child {
  border-top: 1px solid var(--border);
}

.why-item:hover {
  padding-left: 20px;
}

.why-number {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.why-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.why-item p {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.7;
}

/* ===== BOOKING SECTION ===== */
#booking {
  padding: 160px 0;
  border-top: 1px solid var(--border);
}

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

.booking-desc {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 300;
}

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

.booking-feature {
  font-size: 0.9rem;
  color: var(--light-gray);
  display: flex;
  align-items: center;
  gap: 12px;
}

.booking-feature span {
  color: var(--pure-white);
  font-weight: 600;
}

/* Form */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
  opacity: 0.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--border-hover);
  background: var(--dark-2);
}

.form-group select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

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

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

.form-note {
  font-size: 0.8rem;
  color: var(--gray);
  text-align: center;
  margin-top: 4px;
}

/* ===== FINAL CTA ===== */
#final-cta {
  padding: 200px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-headline {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.cta-sub {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 48px;
  font-weight: 300;
}

/* ===== FOOTER ===== */
#footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  display: inline-block;
  margin-bottom: 12px;
}

.footer-logo span {
  font-weight: 300;
  opacity: 0.5;
}

.footer-tagline {
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 300;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--light-gray);
  transition: color 0.3s ease;
  font-weight: 300;
}

.footer-links a:hover { color: var(--pure-white); }

.footer-email {
  font-size: 0.9rem;
  color: var(--light-gray);
  display: block;
  margin-bottom: 20px;
  font-weight: 300;
}

.footer-email:hover { color: var(--pure-white); }

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--pure-white);
  background: var(--pure-white);
  color: var(--black);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--gray);
}

.footer-bottom a {
  color: var(--gray);
}

.footer-bottom a:hover { color: var(--white); }

/* ===== FORM SUCCESS STATE ===== */
.form-success {
  text-align: center;
  padding: 60px 20px;
}

.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.form-success p {
  color: var(--gray);
  font-weight: 300;
}

/* ===== CART DRAWER ===== */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 1200;
}

.cart-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  background: var(--black);
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform 0.45s var(--transition);
  z-index: 1210;
  display: flex;
  flex-direction: column;
  padding: 28px;
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.4);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.cart-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

.cart-drawer-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cart-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-close:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-hover);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-empty {
  padding: 28px 0;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

.cart-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  background: var(--dark);
}

.cart-item-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.cart-item-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--gray);
}

.cart-item-remove {
  border: none;
  background: none;
  color: var(--light-gray);
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.cart-item-remove:hover {
  color: var(--pure-white);
}

.cart-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-qty-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 10px;
}

.cart-qty-control button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-qty-control button:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-hover);
}

.cart-qty-control span {
  min-width: 18px;
  text-align: center;
  font-weight: 600;
}

.cart-item-subtotal {
  font-size: 0.88rem;
  color: var(--light-gray);
  text-align: right;
  white-space: nowrap;
}

.cart-footer {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1rem;
}

.cart-total-row span {
  color: var(--gray);
  letter-spacing: 0.04em;
}

.cart-total-row strong {
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .why-item {
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }

  .why-item p {
    grid-column: 1 / -1;
    padding-left: 80px;
  }

  .booking-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transition: right 0.5s var(--transition);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .hero-headline {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

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

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

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

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

  .why-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-item p {
    padding-left: 0;
  }

  .why-number {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .trust-divider { display: none; }

  #final-cta {
    padding: 120px 0;
  }

  .portfolio-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 70%);
  }

  .cart-drawer {
    width: min(380px, 100vw);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .cta-headline {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  #hero {
    padding: 100px 0 60px;
  }

  #about, #services, #results, #portfolio, #why-us, #booking {
    padding: 100px 0;
  }

  .cart-drawer {
    width: 100vw;
    padding: 22px;
  }
}
