/* ========== ROOT & VARIABLES ========== */
:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #e0e7ff;
  --secondary: #8b5cf6;
  --success: #10b981;
  --danger: #ef4444;
  --text: #1f2937;
  --text-light: #6b7280;
  --bg: #ffffff;
  --bg-light: #f9fafb;
  --border: #e5e7eb;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

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

/* ========== NAVIGATION ========== */
#navbar {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.btn-book {
  background: var(--primary);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-book:hover {
  background: var(--primary-dark);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text);
}

.mobile-menu {
  display: none;
  list-style: none;
  background: white;
  padding: 20px;
  border-top: 1px solid var(--border);
}

.mobile-menu li {
  margin: 10px 0;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--text);
  display: block;
  padding: 10px;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .btn-book {
    display: none;
  }
  .hamburger {
    display: block;
  }
}

/* ========== BUTTONS ========== */
.btn-primary,
.btn-secondary,
.btn-card {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary-light);
}

.btn-card {
  background: var(--primary);
  color: white;
  width: 100%;
  margin-top: 20px;
}

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

.btn-full {
  width: 100%;
  padding: 14px 24px;
  font-size: 16px;
}

.btn-large {
  padding: 16px 40px;
  font-size: 18px;
}

/* ========== HERO SECTION ========== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  padding: 0 20px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 span {
  background: linear-gradient(to right, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.hero-cta {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.stat strong {
  font-size: 24px;
  display: block;
  margin-bottom: 5px;
}

.stat span {
  font-size: 12px;
  opacity: 0.9;
}

.hero-visual {
  padding: 0 20px;
  display: flex;
  justify-content: center;
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-card-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.hero-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 50px 0;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero-cta {
    flex-direction: column;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
}

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

.section.bg-light {
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: 50px;
}

/* ========== CARDS GRID ========== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.service-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-card.featured {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary);
  color: white;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.card-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 25px;
  font-size: 15px;
}

.card-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.price-original {
  font-size: 16px;
  color: var(--text-light);
  text-decoration: line-through;
  margin-left: 10px;
}

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

@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .service-card.featured {
    transform: scale(1);
  }
}

/* ========== WHY US GRID ========== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.why-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.why-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-light);
}

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

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
}

.cta-banner p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== PAGE HERO ========== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 18px;
  opacity: 0.95;
}

/* ========== STORE GRID ========== */
.store-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.store-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  transition: all 0.3s;
}

.store-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.store-card-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 20px;
}

.store-icon {
  font-size: 48px;
}

.store-badge {
  background: var(--primary);
  color: white;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.store-sku {
  font-size: 12px;
  color: var(--text-light);
  background: var(--bg-light);
  padding: 4px 12px;
  border-radius: 6px;
}

.store-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.store-card > p {
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.6;
}

.store-includes {
  list-style: none;
  margin-bottom: 25px;
}

.store-includes li {
  padding: 8px 0;
  color: var(--text-light);
  font-size: 15px;
}

.store-includes li:before {
  content: "✓ ";
  color: var(--success);
  font-weight: 700;
  margin-right: 8px;
}

.store-pricing {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
}

.store-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 5px;
}

.store-price-original {
  font-size: 14px;
  color: var(--text-light);
  text-decoration: line-through;
}

.store-actions {
  display: flex;
  gap: 15px;
}

.store-card-custom {
  background: var(--bg-light);
}

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

/* ========== ABOUT PAGE ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 30px;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.8;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-card {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.value-icon {
  font-size: 36px;
  margin-bottom: 15px;
}

.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-light);
}

.team-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-cat {
  background: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.team-cat:hover {
  box-shadow: var(--shadow);
}

.team-cat-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.team-cat h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.team-cat p {
  color: var(--text-light);
  font-size: 14px;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .team-categories {
    grid-template-columns: 1fr;
  }
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 40px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  gap: 20px;
}

.contact-item-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-item p {
  color: var(--text-light);
  font-size: 15px;
}

.contact-item a {
  color: var(--primary);
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* ========== FORMS ========== */
.contact-form-wrap h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 30px;
}

.contact-form {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 12px;
}

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

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

/* ========== FOOTER ========== */
footer {
  background: var(--text);
  color: white;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 15px;
}

.footer-brand h3 span {
  color: var(--primary);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-links ul,
.footer-services ul {
  list-style: none;
}

.footer-links li,
.footer-services li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 14px;
}

.footer-links a:hover,
.footer-services a:hover {
  color: var(--primary);
}

.footer-contact p {
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

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

/* ========== UTILITIES ========== */
.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

/* ========== RESPONSIVENESS ========== */
@media (max-width: 480px) {
  .nav-links {
    gap: 15px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .page-hero h1 {
    font-size: 32px;
  }
}
