/* ===== Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== Variables ===== */
:root {
  --red: #c0392b;
  --red-dark: #a93226;
  --red-light: #e74c3c;
  --black: #1a1a1a;
  --gray-900: #2d2d2d;
  --gray-700: #555;
  --gray-500: #888;
  --gray-300: #ccc;
  --gray-100: #f5f5f5;
  --white: #ffffff;
  --max-width: 1200px;
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid #eee;
  backdrop-filter: blur(8px);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 36px;
  width: auto;
}
@media (max-width: 768px) {
  .nav-logo img { height: 30px; }
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
}
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--red-dark) !important; }

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: 0.3s;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a.active::after { display: none; }
}

/* ===== Hero ===== */
.hero {
  padding: 140px 1.5rem 80px;
  background: linear-gradient(135deg, var(--black) 0%, #2a1215 50%, var(--red-dark) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.9);
}
.hero-logo {
  max-width: 380px;
  margin: 0 auto 1.5rem;
}
@media (max-width: 768px) {
  .hero-logo { max-width: 260px; }
}
.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}
.hero h1 span { color: var(--red-light); }
.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 2rem;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }

@media (max-width: 768px) {
  .hero { padding: 110px 1rem 50px; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 0.95rem; }
  .hero-badge { font-size: 0.75rem; padding: 0.35rem 0.75rem; }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.9rem; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
}

/* ===== Sections ===== */
.section {
  padding: 80px 1.5rem;
}
.section-dark {
  background: var(--gray-100);
}
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}
.section-title p {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .section { padding: 50px 1rem; }
  .section-title { margin-bottom: 2rem; }
  .section-title h2 { font-size: 1.6rem; }
  .section-title p { font-size: 0.9rem; }
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ===== Service Cards (Homepage) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.2s;
}
.service-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 24px rgba(192,57,43,0.08);
  transform: translateY(-2px);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #fdeaea, #fbd5d5);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--black);
}
.service-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ===== Stats Bar ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 0;
}
.stat {
  text-align: center;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--red);
}
.stat-label {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
}
@media (max-width: 768px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-number { font-size: 2rem; }
}

/* ===== Why Us ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.why-card {
  text-align: center;
  padding: 1.5rem;
}
.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 80px 1.5rem;
  background: linear-gradient(135deg, var(--black) 0%, #2a1215 100%);
  color: var(--white);
  text-align: center;
}
.cta-section h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.cta-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.cta-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
}
.cta-info-item svg {
  width: 24px;
  height: 24px;
  color: var(--red-light);
}
@media (max-width: 768px) {
  .cta-section { padding: 50px 1rem; }
  .cta-section h2 { font-size: 1.5rem; }
  .cta-section p { font-size: 0.9rem; }
  .cta-info { gap: 1rem; flex-direction: column; align-items: center; }
  .cta-info-item { font-size: 0.95rem; }
}

/* ===== Prices Page ===== */
.page-header {
  padding: 130px 1.5rem 60px;
  background: linear-gradient(135deg, var(--black) 0%, #2a1215 50%, var(--red-dark) 100%);
  color: var(--white);
  text-align: center;
}
.page-header h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.page-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .page-header { padding: 100px 1rem 40px; }
  .page-header h1 { font-size: 1.8rem; }
  .page-header p { font-size: 0.9rem; }
}

/* Tab Buttons */
.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 0.7rem 1.8rem;
  border: 2px solid #ddd;
  border-radius: 10px;
  background: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--gray-700);
}
.tab-btn:hover { border-color: var(--red); color: var(--red); }
.tab-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* Price Tables */
.price-category {
  margin-bottom: 2.5rem;
}
.price-category h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--black);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.price-table th {
  background: var(--black);
  color: var(--white);
  padding: 0.85rem 1.25rem;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.price-table td {
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: #fafafa; }
.price-table .price-value {
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
}
.price-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.price-note {
  text-align: center;
  color: var(--gray-500);
  font-size: 0.85rem;
  margin-top: 2rem;
  padding: 1rem;
  background: var(--gray-100);
  border-radius: 10px;
}
@media (max-width: 768px) {
  .price-category h3 { font-size: 1.1rem; }
  .price-table th { padding: 0.65rem 0.75rem; font-size: 0.8rem; }
  .price-table td { padding: 0.6rem 0.75rem; font-size: 0.85rem; }
}

/* Tab content */
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ===== Contact / Location Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { padding: 1.25rem; }
  .map-container, .map-container iframe { min-height: 300px; }
}
.contact-info-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.contact-info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--black);
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.contact-detail:last-child { margin-bottom: 0; }
.contact-detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, #fdeaea, #fbd5d5);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  color: var(--red);
}
.contact-detail-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.contact-detail-text p {
  font-size: 0.9rem;
  color: var(--gray-500);
}
.contact-detail-text a {
  color: var(--red);
  font-weight: 500;
}
.contact-detail-text a:hover { text-decoration: underline; }
.map-container {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eee;
  height: 100%;
  min-height: 450px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: 0;
}

/* Schedule table */
.schedule-table {
  width: 100%;
}
.schedule-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.schedule-row:last-child { border-bottom: none; }
.schedule-day { font-weight: 500; }
.schedule-time { color: var(--gray-500); }
.schedule-closed { color: var(--red); font-weight: 600; }

/* ===== Footer ===== */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 3rem 1.5rem 1.5rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}
.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 0.75rem;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--red-light); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
}
