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

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --red: #C41E1E;
  --red-dark: #9B1818;
  --red-light: #E63939;
  --silver: #C0C0C0;
  --silver-light: #E0E0E0;
  --white: #F5F5F5;
  --gray: #888888;
  --gray-dark: #555555;
  --radius: 12px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 { font-family: 'Oswald', sans-serif; font-weight: 600; letter-spacing: 0.02em; }

a { color: inherit; text-decoration: none; }

.text-red { color: var(--red); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border-radius: 8px; font-family: 'Oswald', sans-serif;
  font-size: 1rem; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; cursor: pointer; border: none;
  transition: all var(--transition); text-decoration: none;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(196,30,30,0.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--silver); }
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-full { width: 100%; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,0.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(192,192,192,0.1);
  transition: all var(--transition);
}
.navbar.scrolled { background: rgba(10,10,10,0.98); box-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-img { width: 44px; height: 44px; border-radius: 8px; }
.nav-logo-text { font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 700; line-height: 1.1; letter-spacing: 0.05em; }
.nav-logo-accent { color: var(--red); font-size: 0.9rem; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 0.9rem; font-weight: 500; letter-spacing: 0.03em; text-transform: uppercase; transition: color var(--transition); }
.nav-links a:hover { color: var(--red); }
.nav-cta { background: var(--red) !important; color: #fff !important; padding: 10px 24px !important; border-radius: 8px !important; }
.nav-cta:hover { background: var(--red-light) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); transition: all var(--transition); }

/* Language Switcher */
.lang-switcher { display: flex; gap: 4px; background: var(--dark-3); border-radius: 8px; padding: 3px; }
.lang-btn { background: none; border: none; color: var(--gray); font-size: 0.9rem; padding: 5px 10px; border-radius: 6px; cursor: pointer; transition: var(--transition); line-height: 1.2; }
.lang-btn.active { background: var(--red); color: #fff; }
.lang-btn:hover:not(.active) { background: var(--dark-2); color: var(--white); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--black) 0%, var(--dark-2) 50%, var(--dark) 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(196,30,30,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(192,192,192,0.05) 0%, transparent 50%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="g" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="1" cy="1" r="0.5" fill="rgba(192,192,192,0.03)"/></pattern></defs><rect fill="url(%23g)" width="100" height="100"/></svg>');
}
.hero-content { position: relative; text-align: center; z-index: 1; padding: 120px 0 80px; }
.hero-logo { width: 160px; height: 160px; margin-bottom: 24px; animation: fadeInUp 0.8s ease; }
.hero-title { font-size: 4rem; font-weight: 700; letter-spacing: 0.1em; margin-bottom: 8px; animation: fadeInUp 0.8s ease 0.1s both; }
.hero-subtitle { font-size: 1.4rem; color: var(--silver); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 16px; animation: fadeInUp 0.8s ease 0.2s both; }
.hero-desc { font-size: 1.1rem; color: var(--gray); max-width: 500px; margin: 0 auto 32px; animation: fadeInUp 0.8s ease 0.3s both; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.4s both; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== STATS BAR ===== */
.stats-bar { background: var(--red); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-number { font-family: 'Oswald', sans-serif; font-size: 2.5rem; font-weight: 700; color: #fff; }
.stat-suffix { font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 700; color: #fff; }
.stat-label { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.8); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em; }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-dark { background: var(--dark); }
.section-title { font-size: 2.5rem; text-align: center; margin-bottom: 16px; }
.section-desc { text-align: center; color: var(--gray); max-width: 600px; margin: 0 auto 60px; font-size: 1.05rem; }

/* ===== SERVICES WITH IMAGES ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.service-card {
  background: var(--dark-2); border: 1px solid var(--dark-3); border-radius: var(--radius);
  overflow: hidden; transition: all var(--transition); position: relative;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--red); box-shadow: 0 12px 40px rgba(196,30,30,0.15); }
.service-img { position: relative; height: 200px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-img img { transform: scale(1.05); }
.service-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60%;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
}
.service-body { padding: 20px 24px; }
.service-body h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--white); text-transform: uppercase; letter-spacing: 0.03em; }
.service-body p { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: center; }
.about-text h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--white); }
.about-text p { color: var(--gray); margin-bottom: 16px; font-size: 1rem; line-height: 1.7; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.about-feature { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: var(--silver-light); }
.feature-icon { color: var(--red); font-weight: bold; font-size: 1.2rem; }
.about-image { display: flex; justify-content: center; align-items: center; }
.about-logo { width: 280px; height: 280px; opacity: 0.9; filter: drop-shadow(0 0 40px rgba(196,30,30,0.2)); }

/* ===== BOOKING ===== */
.booking-wrapper { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.booking-form { background: var(--dark-2); border: 1px solid var(--dark-3); border-radius: var(--radius); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; }
.form-group.full-width { grid-column: 1 / -1; margin-top: 8px; }
.form-group label { font-size: 0.85rem; font-weight: 500; color: var(--silver); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.03em; }
.form-group input, .form-group select, .form-group textarea {
  background: var(--dark-3); border: 1px solid rgba(192,192,192,0.15); border-radius: 8px;
  padding: 12px 16px; color: var(--white); font-size: 0.95rem; font-family: 'Inter', sans-serif;
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(196,30,30,0.15);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-dark); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--dark-2); color: var(--white); }

.booking-info {
  background: var(--dark-2); border: 1px solid var(--dark-3); border-radius: var(--radius);
  padding: 32px; height: fit-content;
}
.booking-info h3 { font-size: 1.3rem; margin-bottom: 12px; }
.booking-info p { color: var(--gray); margin-bottom: 16px; }
.booking-phone { display: block; font-family: 'Oswald', sans-serif; font-size: 1.5rem; color: var(--red); font-weight: 600; margin-bottom: 32px; }
.booking-phone:hover { color: var(--red-light); }
.booking-hours h4 { font-size: 1rem; margin-bottom: 12px; color: var(--silver); }
.booking-hours table { width: 100%; }
.booking-hours td { padding: 8px 0; font-size: 0.9rem; color: var(--gray); border-bottom: 1px solid var(--dark-3); }
.booking-hours td:last-child { text-align: right; color: var(--white); font-weight: 500; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; }
.contact-info { display: flex; flex-direction: column; }
.contact-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-item h4 { font-size: 1rem; margin-bottom: 4px; color: var(--white); }
.contact-item p { color: var(--gray); font-size: 0.95rem; }
.contact-item a { color: var(--red); transition: color var(--transition); }
.contact-item a:hover { color: var(--red-light); }
.contact-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--dark-3); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); border-top: 1px solid var(--dark-3); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { width: 60px; height: 60px; margin-bottom: 12px; border-radius: 8px; }
.footer-brand p { color: var(--gray); font-size: 0.9rem; }
.footer-links h4 { font-family: 'Oswald', sans-serif; font-size: 1rem; margin-bottom: 16px; color: var(--silver); text-transform: uppercase; letter-spacing: 0.05em; }
.footer-links a { display: block; color: var(--gray); font-size: 0.9rem; margin-bottom: 8px; transition: color var(--transition); }
.footer-links a:hover { color: var(--red); }
.footer-address { color: var(--gray); font-size: 0.9rem; margin-top: 8px; }
.footer-bottom { border-top: 1px solid var(--dark-3); padding-top: 24px; text-align: center; color: var(--gray-dark); font-size: 0.85rem; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all var(--transition);
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
  background: var(--dark-2); border: 1px solid var(--dark-3); border-radius: var(--radius);
  padding: 48px; text-align: center; max-width: 420px; width: 90%;
  transform: scale(0.9); transition: transform var(--transition);
}
.modal-overlay.active .modal { transform: scale(1); }
.modal-icon { font-size: 3rem; margin-bottom: 16px; }
.modal h3 { font-size: 1.5rem; margin-bottom: 12px; }
.modal p { color: var(--gray); margin-bottom: 24px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0; background: rgba(10,10,10,0.98);
    flex-direction: column; padding: 24px; gap: 16px; border-bottom: 1px solid var(--dark-3);
    transform: translateY(-100%); opacity: 0; visibility: hidden; transition: all var(--transition);
  }
  .nav-links.active { transform: translateY(0); opacity: 1; visibility: visible; }
  .lang-switcher { justify-content: center; }
  .hero-title { font-size: 2.8rem; }
  .hero-logo { width: 120px; height: 120px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .about-logo { width: 180px; height: 180px; }
  .booking-wrapper { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-logo { width: 100px; height: 100px; }
  .section { padding: 60px 0; }
  .section-title { font-size: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-number { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .booking-form { padding: 24px; }
}
