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

:root {
  --brand-red: #ef4444;
  --brand-red-dark: #dc2626;
  --bg-light: #fafafa;
  --bg-white: #ffffff;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --border-light: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --radius: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brand-red);
  padding: 16px 0;
  display: none;
}

.header-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
  font-weight: 800;
  font-size: 1.3rem;
  transition: var(--transition);
}

.logo img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}

.logo-text {
  display: inline;
}

.logo:hover {
  transform: scale(1.02);
}

.main-nav {
  display: none;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.main-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: var(--transition);
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}


/* ===== MOBILE ACTION BAR ===== */
.mobile-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  display: flex;
  background: var(--bg-white);
  box-shadow: 0 -2px 16px rgba(0,0,0,0.1);
  padding: 12px;
  gap: 8px;
}

.mobile-action-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px;
  background: var(--bg-light);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 600;
  min-height: 60px;
  transition: var(--transition);
}

.mobile-action-btn-primary {
  background: var(--brand-red);
  color: white;
}

.mobile-action-btn:hover,
.mobile-action-btn:active {
  transform: scale(1.02);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  min-height: 64px;
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.1rem;
  min-height: 56px;
}

.btn-primary {
  background: var(--brand-red);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--brand-red-dark);
  transform: translateY(-2px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.btn-white {
  background: white;
  color: var(--brand-red);
  box-shadow: var(--shadow-md);
}

.btn-white:hover,
.btn-white:focus {
  background: var(--bg-light);
  transform: translateY(-2px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-outline-white:hover,
.btn-outline-white:focus {
  background: white;
  color: var(--brand-red);
  transform: translateY(-2px) scale(1.01);
}

.btn-header {
  padding: 10px 24px;
  font-size: 1rem;
  min-height: 48px;
  border-radius: 999px;
  background: white !important;
  color: var(--brand-red) !important;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  justify-self: end;
  display: none;
}

.btn-header:hover,
.btn-header:focus {
  background: var(--bg-light) !important;
  color: var(--brand-red-dark) !important;
  border-color: var(--bg-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===== SECTIONS ===== */
section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
  color: var(--text-dark);
  line-height: 1.2;
}

.section-intro {
  max-width: 800px;
  margin: -24px auto 48px;
  text-align: center;
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: var(--brand-red);
  color: white;
  padding: 120px 0 100px;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-brand {
  display: none;
}

.hero-logo {
  display: none;
}

.hero-main {
  width: 100%;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.95;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-badge {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.9;
}

/* ===== WHY SECTION ===== */
.why-section {
  background: var(--bg-white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  background: var(--bg-white);
  padding: 40px 32px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.why-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.why-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-red);
  font-weight: 700;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  background: var(--bg-white);
}

.pricing-table-wrapper {
  max-width: 900px;
  margin: 0 auto 32px;
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.pricing-table th,
.pricing-table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.pricing-table th {
  background: var(--bg-light);
  font-weight: 700;
  color: var(--text-dark);
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand-red);
}

.pricing-highlight {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 32px;
  background: #fef3c7;
  border-left: 6px solid #f59e0b;
  border-radius: var(--radius);
  font-size: 1.15rem;
  text-align: center;
  color: var(--text-dark);
}

/* ===== PLANS SECTION ===== */
.plans-section {
  background: var(--bg-light);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto 32px;
}

.plan-card {
  background: var(--bg-white);
  padding: 48px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
}

.plan-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.plan-card-featured {
  border: 3px solid var(--brand-red);
}

.plan-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.plan-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.plan-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand-red);
  margin-bottom: 8px;
}

.plan-credit {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.plan-card li {
  padding: 10px 0;
  padding-left: 32px;
  position: relative;
  color: var(--text-muted);
}

.plan-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-red);
  font-weight: 700;
  font-size: 1.2rem;
}

.plans-note {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.emoji-list {
  list-style: none;
  padding: 0;
}

.emoji-list li {
  padding: 8px 0;
  padding-left: 0;
  position: relative;
  color: var(--text-muted);
}

.emoji-list li::before {
  content: none;
}

/* ===== AREAS SECTION ===== */
.areas-section {
  background: var(--bg-white);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.area-card {
  padding: 24px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border-left: 4px solid #9ca3af;
  transition: var(--transition);
}

.area-card:hover {
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
  border-left-color: #6b7280;
}

.area-card strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #4b5563;
  margin-bottom: 8px;
}

.area-card p {
  color: var(--text-muted);
  margin: 0;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
  background: var(--bg-white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  padding: 32px 28px;
  border: 1px solid #e5e7eb;
  background: var(--bg-light);
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.review-stars {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1;
  color: #fbbf24;
}

.review-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-weight: 400;
}

.review-author {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  margin: 0;
}

/* ===== BOOKING FORM ===== */
.book-section {
  background: var(--bg-light);
}

.book-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.booking-form {
  background: var(--bg-white);
  padding: 48px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

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

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-light);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-checkbox label {
  display: flex;
  gap: 12px;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
  cursor: pointer;
}

.form-note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg-light);
  padding: 40px 32px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.contact-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.contact-link {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand-red);
  text-decoration: none;
  margin-bottom: 8px;
  transition: var(--transition);
  word-break: break-word;
  overflow-wrap: break-word;
}

.contact-link:hover {
  color: var(--brand-red-dark);
  text-decoration: underline;
}

.contact-card p {
  color: var(--text-muted);
  margin: 4px 0;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--bg-light);
  padding: 80px 0;
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--radius);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: white;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--brand-red);
}

.faq-question span {
  flex: 1;
}

.faq-icon {
  flex-shrink: 0;
  color: var(--brand-red);
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 500px;
  padding: 0 28px 24px 28px;
}

.faq-answer p {
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--text-dark);
  color: white;
  padding: 48px 0;
  text-align: center;
}

.site-footer p {
  margin: 8px 0;
  opacity: 0.9;
}

.footer-promise {
  font-size: 0.95rem;
  margin-top: 16px;
  font-weight: 500;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--text-dark);
  color: white;
  padding: 16px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* ===== FOCUS STYLES ===== */
*:focus-visible {
  outline: 3px solid var(--brand-red);
  outline-offset: 2px;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
  .site-header {
    display: block;
  }
  
  .main-nav {
    display: flex;
  }
  
  .btn-header {
    display: inline-flex;
  }
  
  .mobile-action-bar {
    display: none;
  }
}

@media (max-width: 767px) {
  html {
    font-size: 16px;
  }
  
  .hero-section {
    padding: 80px 0 100px;
    min-height: 100vh;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100vh - 160px);
    max-width: 100%;
  }
  
  .hero-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 2.75rem;
    font-weight: 800;
    text-align: center;
    padding-top: 40px;
    margin-bottom: 12px;
  }
  
  .hero-logo {
    display: block;
    width: 120px;
    height: 120px;
    filter: brightness(0) invert(1);
  }
  
  .hero-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding: 0 20px;
  }
  
  .hero-title {
    font-size: 2.3rem;
    line-height: 1.25;
    margin-bottom: 28px;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
  }
  
  .hero-badge {
    font-size: 1.05rem;
    margin-top: 8px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .booking-form {
    padding: 32px 24px;
  }
  
  .site-footer {
    padding-bottom: 100px;
  }
  
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .why-grid,
  .services-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}