/* MP TEAM – Dark Slate Theme */

:root {
  --slate-950: #0a0e2a;
  --slate-900: #111640;
  --slate-800: #1a2252;
  --slate-700: #243068;
  --slate-600: #3a4a80;
  --slate-500: #5a6a9b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --white: #ffffff;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--slate-950);
  color: var(--slate-300);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--orange-500), var(--amber-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glass card */
.glass-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: rgba(10,14,42,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 640px) { .nav-inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .nav-inner { padding: 0 2rem; } }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  transition: transform 0.3s;
}

.nav-logo:hover .nav-logo-img { transform: scale(1.1); }

.nav-logo-text {
  display: none;
}

@media (min-width: 640px) {
  .nav-logo-text {
    display: block;
  }
  .nav-logo-text .gradient-text {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
  }
  .nav-logo-sub {
    font-size: 0.7rem;
    color: var(--slate-400);
    margin-top: -2px;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
}

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--slate-300);
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

.nav-link.active {
  background: rgba(249,115,22,0.15);
  color: var(--orange-400);
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange-500);
  color: var(--white);
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  margin-left: 1rem;
}

.nav-cta:hover {
  background: var(--orange-600);
  box-shadow: 0 4px 20px rgba(249,115,22,0.3);
}

@media (min-width: 1024px) { .nav-cta { display: flex; } }

.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--slate-300);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: color 0.2s, background 0.2s;
}

.hamburger:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

@media (min-width: 1024px) { .hamburger { display: none; } }

/* Mobile menu */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  background: rgba(10,14,42,0.95);
  border-top: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.mobile-menu.open {
  max-height: 400px;
  opacity: 1;
}

.mobile-link {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-300);
  text-decoration: none;
  border-radius: 0.5rem;
  margin: 0.125rem 1rem;
  transition: color 0.2s, background 0.2s;
}

.mobile-link:hover, .mobile-link.active {
  color: var(--orange-400);
  background: rgba(249,115,22,0.1);
}

.mobile-contact {
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 0.5rem;
}

.mobile-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange-400);
  font-size: 0.875rem;
  text-decoration: none;
  padding: 0.25rem 0.5rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,14,42,0.85) 0%, rgba(10,14,42,0.7) 50%, rgba(10,14,42,0.8) 100%);
}

.hero-particles { position: absolute; inset: 0; pointer-events: none; }

.particle {
  position: absolute;
  background: rgba(249,115,22,0.3);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  width: 100%;
  padding: 0 1rem;
  text-align: center;
}

@media (min-width: 640px) { .hero-content { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .hero-content { padding: 0 2rem; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--orange-300, #fdba74);
  margin-bottom: 2rem;
}

.hero-title {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--slate-300);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .hero-btns { flex-direction: row; justify-content: center; }
}

.hero-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: var(--slate-300);
}

.hero-phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--slate-300);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.hero-phone-link svg { color: var(--orange-500); }

.hero-phone-link:hover { color: var(--orange-400); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

.scroll-wheel {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-top: 0.375rem;
}

.scroll-dot {
  width: 0.375rem;
  height: 0.75rem;
  background: var(--orange-400);
  border-radius: 9999px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange-500);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  background: var(--orange-600);
  box-shadow: 0 8px 30px rgba(249,115,22,0.35);
  transform: scale(1.03);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.2);
}

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  transition: background 0.2s;
}

.btn-ghost-dark:hover { background: rgba(255,255,255,0.15); }

.pulse-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249,115,22,0); }
  50% { box-shadow: 0 0 20px 8px rgba(249,115,22,0.25); }
}

/* ===== STATS ===== */
.stats-section {
  background: linear-gradient(to right, var(--slate-900), var(--slate-800), var(--slate-900));
  padding: 4rem 0;
}

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

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item { text-align: center; }

.stat-value {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--slate-400);
}

/* ===== SECTIONS ===== */
.section {
  padding: 6rem 0;
}

.dark-section { background: var(--slate-950); }

.pricing-section { background: rgba(15,23,42,0.5); }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  color: var(--orange-400);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-top: 0.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-desc {
  color: var(--slate-400);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  display: block;
  text-decoration: none;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color 0.3s, transform 0.2s;
}

.service-card:hover {
  border-color: rgba(249,115,22,0.3);
  transform: translateY(-4px);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--white);
  transition: transform 0.3s;
}

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

.blue-gradient { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.orange-gradient { background: linear-gradient(135deg, #f97316, #f59e0b); }
.green-gradient { background: linear-gradient(135deg, #10b981, #14b8a6); }
.purple-gradient { background: linear-gradient(135deg, #a855f7, #ec4899); }

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.service-card:hover .service-title { color: var(--orange-400); }

.service-desc {
  color: var(--slate-400);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-more {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--orange-400);
  font-size: 0.875rem;
  font-weight: 500;
  transition: gap 0.2s;
}

.service-card:hover .service-more { gap: 0.5rem; }

/* ===== PORTFOLIO CAROUSEL ===== */
.portfolio-section { background: rgba(15,23,42,0.5); }

.portfolio-carousel {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.portfolio-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.22,0.61,0.36,1);
}

.portfolio-slide { flex: 0 0 100%; }

.portfolio-img-wrap {
  position: relative;
  aspect-ratio: 21/9;
}

.portfolio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,42,0.8) 0%, transparent 60%);
}

.portfolio-caption {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
}

.portfolio-caption h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.portfolio-caption p {
  color: var(--slate-300);
}

.portfolio-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: var(--white);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
  z-index: 2;
}

.portfolio-btn:hover { background: var(--orange-500); }

.portfolio-btn-prev { left: 1rem; }
.portfolio-btn-next { right: 1rem; }

.portfolio-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.portfolio-dot {
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--slate-600);
  border: none;
  cursor: pointer;
  transition: width 0.3s, background 0.3s;
  width: 0.5rem;
  padding: 0;
}

.portfolio-dot.active {
  width: 2rem;
  background: var(--orange-500);
}

/* ===== PACKAGES ===== */
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 768px) { .packages-grid { grid-template-columns: repeat(3, 1fr); } }

.package-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
}

.package-card.popular {
  background: rgba(249,115,22,0.08);
  border-color: rgba(249,115,22,0.3);
}

.popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange-500), var(--amber-500));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  white-space: nowrap;
}

.package-discount {
  display: inline-block;
  background: rgba(249,115,22,0.15);
  color: var(--orange-400);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.package-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.package-price {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange-500), var(--amber-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.package-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-300);
  padding: 0.375rem 0;
}

.check-icon { color: var(--green-400); font-size: 1rem; }

.package-btn-primary {
  display: block;
  text-align: center;
  background: var(--orange-500);
  color: var(--white);
  padding: 0.75rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
}

.package-btn-primary:hover {
  background: var(--orange-600);
  box-shadow: 0 4px 20px rgba(249,115,22,0.3);
}

.package-btn-outline {
  display: block;
  text-align: center;
  background: transparent;
  color: var(--orange-400);
  border: 1px solid rgba(249,115,22,0.3);
  padding: 0.75rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.package-btn-outline:hover {
  background: rgba(249,115,22,0.1);
  border-color: var(--orange-400);
}

/* ===== WHY US ===== */
.why-section { background: rgba(15,23,42,0.5); }

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

@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; } }

.why-cards { display: flex; flex-direction: column; gap: 1.5rem; }

.why-feature-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(249,115,22,0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-500);
}

.why-feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.why-feature-card p { font-size: 0.875rem; color: var(--slate-400); line-height: 1.6; }

.why-checklist-card {
  padding: 2rem;
  border-radius: 1rem;
}

.why-checklist-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.why-checklist-title svg { color: var(--orange-500); }

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--slate-300);
}

.checklist li svg { color: var(--green-500); flex-shrink: 0; }

/* ===== CTA ===== */
.cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: rgba(15,23,42,0.5);
}

.cta-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(249,115,22,0.05), transparent, rgba(251,191,36,0.05));
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-desc {
  color: var(--slate-300);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.cta-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) { .cta-btns { flex-direction: row; justify-content: center; } }

/* ===== FOOTER ===== */
.footer {
  background: var(--slate-950);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-accent {
  height: 3px;
  background: linear-gradient(to right, var(--orange-500), var(--amber-400), var(--orange-500));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 0;
}

@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-img { height: 2.5rem; width: auto; }

.footer-logo-name { font-size: 1.25rem; font-weight: 800; }

.footer-brand-desc {
  color: var(--slate-400);
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-col-title {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--slate-400);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--orange-400); }

.footer-hours { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--slate-400);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

.footer-copy { color: var(--slate-500); font-size: 0.875rem; }

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--slate-500);
}

.footer-bottom-links a {
  color: var(--slate-500);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--orange-400); }

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  position: relative;
  padding: 10rem 0 6rem;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,14,42,0.85), rgba(10,14,42,0.7));
}

.page-hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) { .page-hero-content { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .page-hero-content { padding: 0 2rem; } }

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--orange-300, #fdba74);
  margin-bottom: 1.5rem;
}

.page-hero-badge-green {
  display: inline-block;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  color: var(--green-400);
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  margin-left: 0.5rem;
}

.page-hero-content h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.page-hero-content p {
  font-size: 1.125rem;
  color: var(--slate-300);
  max-width: 42rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ===== SUBPAGE SERVICE GRID ===== */
.subpage-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) { .subpage-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .subpage-services-grid { grid-template-columns: repeat(3, 1fr); } }

.subpage-service-card {
  border-radius: 1rem;
  padding: 1.5rem;
}

.subpage-service-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(249,115,22,0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--orange-500);
}

.subpage-service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.subpage-service-card p {
  font-size: 0.875rem;
  color: var(--slate-400);
  line-height: 1.6;
}

/* ===== PRICE TABLE ===== */
.price-table {
  border-radius: 1rem;
  overflow: hidden;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}

.price-row:last-child { border-bottom: none; }
.price-row:hover { background: rgba(255,255,255,0.03); }

.price-row span:first-child {
  color: var(--slate-300);
  font-size: 0.9375rem;
}

.price-val {
  color: var(--orange-400);
  font-weight: 600;
  font-size: 0.9375rem;
  white-space: nowrap;
  margin-left: 1rem;
}

.price-included { color: var(--green-400) !important; }

/* Pricing two-column layout */
.pricing-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) { .pricing-two-col { grid-template-columns: 1fr 1fr; gap: 2rem; } }

.pricing-col-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.pricing-note {
  color: var(--slate-400);
  font-size: 0.8125rem;
  font-style: italic;
  margin-top: 1rem;
}

/* ===== PROCESS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

.process-step {
  text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
}

.process-num {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.process-step h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.process-step p { font-size: 0.875rem; color: var(--slate-400); }

/* ===== INCLUDED GRID ===== */
.included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 1024px) { .included-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }

.included-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 1.5rem;
}

.included-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--slate-300);
}

.included-list li svg { color: var(--orange-500); flex-shrink: 0; }

/* ===== 4-GRID ===== */
.four-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) { .four-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .four-grid { grid-template-columns: repeat(4, 1fr); } }

.why-benefit-card {
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.why-benefit-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(249,115,22,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--orange-500);
}

.why-benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.why-benefit-card p { font-size: 0.875rem; color: var(--slate-400); line-height: 1.6; }

/* ===== ANIMATIONS ===== */
.animate-fade-in {
  opacity: 0;
  transform: translateY(2.5rem);
  animation: fade-in-up 1s ease forwards;
}

.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-7 { animation-delay: 0.7s; }

.animate-fade-in-up {
  animation: fade-in-up 0.8s ease forwards;
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(2.5rem); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll animations */
.scroll-animate,
.scroll-animate-left,
.scroll-animate-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-animate { transform: translateY(2rem); }
.scroll-animate-left { transform: translateX(-2rem); }
.scroll-animate-right { transform: translateX(2rem); }

.scroll-animate.visible,
.scroll-animate-left.visible,
.scroll-animate-right.visible {
  opacity: 1;
  transform: none;
}

/* ===== WHY US PHOTOS ===== */
.why-photos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.why-photo {
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.why-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.why-photo:hover img { transform: scale(1.05); }

/* ===== REVIEWS ===== */
.reviews-section { background: var(--slate-950); }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  padding: 1.5rem;
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.review-star { color: var(--amber-400); font-size: 1.125rem; }
.review-star-empty { color: var(--slate-600); }

.review-text {
  color: var(--slate-300);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}

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

.review-date {
  color: var(--slate-500);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.review-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 600px;
  margin: 3rem auto 0;
}

.review-form-title {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.form-group label {
  display: block;
  color: var(--slate-300);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.5rem;
  color: var(--white);
  font-family: inherit;
  font-size: 0.9375rem;
  transition: border-color 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--orange-500);
}

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

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

select.form-input {
  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='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

select.form-input option {
  background: #1e293b;
  color: #f1f5f9;
  padding: 0.5rem;
}

.star-rating {
  display: flex;
  gap: 0.5rem;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.star-rating input { display: none; }

.star-rating label {
  cursor: pointer;
  font-size: 1.75rem;
  color: var(--slate-600);
  transition: color 0.15s;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: var(--amber-400);
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange-500);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  width: 100%;
  justify-content: center;
}

.form-submit:hover {
  background: var(--orange-600);
  box-shadow: 0 4px 20px rgba(249,115,22,0.3);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-message {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(34,197,94,0.1);
  color: var(--green-400);
  border: 1px solid rgba(34,197,94,0.2);
}

.form-message.error {
  display: block;
  background: rgba(239,68,68,0.1);
  color: #f87171;
  border: 1px solid rgba(239,68,68,0.2);
}

/* ===== CONTACT FORM ===== */
.contact-form-section { background: rgba(17,22,64,0.5); }

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) { .contact-form-grid { grid-template-columns: 1fr 1fr; } }

.contact-info-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  padding: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(249,115,22,0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-500);
}

.contact-info-item h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.contact-info-item p,
.contact-info-item a {
  color: var(--slate-400);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info-item a:hover { color: var(--orange-400); }

.contact-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  padding: 2rem;
}

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

@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

/* ===== HERO NO IMAGE ===== */
/* ===== PHONE MODAL ===== */
.phone-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,14,42,0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.phone-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.phone-modal {
  background: var(--slate-900);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: modal-pop 0.3s ease;
}

@keyframes modal-pop {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.phone-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--slate-400);
  font-size: 1.5rem;
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  transition: color 0.2s, background 0.2s;
  line-height: 1;
}

.phone-modal-close:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.phone-modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.phone-modal-desc {
  font-size: 0.875rem;
  color: var(--slate-400);
  margin-bottom: 2rem;
}

.phone-modal-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.phone-modal-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.phone-modal-option:hover {
  border-color: var(--orange-500);
  background: rgba(249,115,22,0.08);
  transform: translateY(-2px);
}

.phone-modal-option-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: rgba(249,115,22,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-500);
}

.phone-modal-option-info {
  text-align: left;
}

.phone-modal-option-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.phone-modal-option-number {
  font-size: 0.875rem;
  color: var(--orange-400);
  margin-top: 0.125rem;
}

.hero-gradient-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0e2a 0%, #111640 30%, #1a2252 60%, #0a0e2a 100%);
}

.hero-gradient-bg::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 10%;
  width: 40%;
  height: 40%;
  background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%);
}

.hero-gradient-bg::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 35%;
  height: 35%;
  background: radial-gradient(circle, rgba(251,191,36,0.05) 0%, transparent 70%);
}
