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

:root {
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #1a1a1a;
  --card: #141414;
  --border: #2a2a2a;
  --red: #c0392b;
  --red-light: #e74c3c;
  --red-glow: rgba(192, 57, 43, 0.3);
  --white: #ffffff;
  --grey: #aaaaaa;
  --light: #eeeeee;
}

html { scroll-behavior: smooth; }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.accent { color: var(--red); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(10,10,10,0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.logo-img { height: 40px; width: auto; object-fit: contain; display: block; }
.logo-img-sm { height: 32px; }

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

.nav-links a {
  color: var(--grey);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--red-light) !important; }

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

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg2);
  padding: 16px 24px;
  gap: 16px;
  border-top: 1px solid var(--border);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: var(--grey);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 12px 20px;
  border-radius: 6px;
  text-align: center;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  letter-spacing: 0.3px;
}

.btn-primary:hover { background: var(--red-light); transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover { border-color: var(--red); background: rgba(192,57,43,0.08); }
.btn-full { width: 100%; text-align: center; }

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

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192,57,43,0.15);
  border: 1px solid rgba(192,57,43,0.4);
  color: var(--red-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 18px;
  color: var(--grey);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--red);
}
.stat-label { font-size: 12px; color: var(--grey); letter-spacing: 1px; text-transform: uppercase; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-header p { color: var(--grey); font-size: 17px; max-width: 500px; margin: 0 auto; }

/* ===== ABOUT ===== */
.about { background: var(--bg2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-label { display: block; margin-bottom: 12px; }

.about-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text p { color: var(--grey); margin-bottom: 16px; font-size: 16px; }

.about-highlights { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }

.highlight {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s;
}

.highlight:hover { border-color: var(--red); }
.highlight-icon { font-size: 24px; flex-shrink: 0; }
.highlight strong { display: block; color: var(--white); margin-bottom: 4px; font-size: 15px; }
.highlight p { color: var(--grey); font-size: 14px; margin: 0; }

/* ===== WEB GRAPHIC ===== */
.about-visual { display: flex; align-items: center; justify-content: center; }

.web-graphic {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.web-center {
  position: relative;
  z-index: 10;
  font-size: 48px;
  background: var(--card);
  border: 2px solid var(--red);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px var(--red-glow);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 20px var(--red-glow); }
  50% { box-shadow: 0 0 50px var(--red-glow); }
}

.web-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(192,57,43,0.2);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.ring-1 { width: 130px; height: 130px; animation: spin 20s linear infinite; }
.ring-2 { width: 210px; height: 210px; animation: spin 30s linear infinite reverse; }
.ring-3 { width: 300px; height: 300px; animation: spin 40s linear infinite; }

@keyframes spin { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }

.web-node {
  position: absolute;
  font-size: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.n1 { top: 0; left: 50%; transform: translateX(-50%); }
.n2 { right: 0; top: 50%; transform: translateY(-50%); }
.n3 { bottom: 0; left: 50%; transform: translateX(-50%); }
.n4 { left: 0; top: 50%; transform: translateY(-50%); }

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover { border-color: var(--red); transform: translateY(-4px); }
.service-icon { font-size: 36px; margin-bottom: 16px; }
.service-card h3 { font-family: 'Montserrat', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--grey); font-size: 14px; line-height: 1.6; }

/* ===== HOW IT WORKS ===== */
.how { background: var(--bg2); }

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.2s;
}

.step:hover { border-color: var(--red); }

.step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--red);
  opacity: 0.4;
  margin-bottom: 16px;
  line-height: 1;
}

.step-content h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.step-content p { color: var(--grey); font-size: 14px; }

.step-arrow {
  font-size: 28px;
  color: var(--red);
  font-weight: 900;
  opacity: 0.5;
}

/* ===== BOOKING ===== */
.booking { background: var(--bg); }

.booking-wrap {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
}

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

.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group:last-child { margin-bottom: 0; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--light);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }

.form-group select option { background: var(--bg3); }
.form-group textarea { resize: vertical; min-height: 100px; }

.booking-success {
  text-align: center;
  padding: 60px 20px;
}

.success-icon { font-size: 64px; margin-bottom: 20px; }
.booking-success h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.booking-success p { color: var(--grey); }

/* ===== CONTACT ===== */
.contact { background: var(--bg2); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.2s;
}

.contact-card:hover { border-color: var(--red); }
.contact-icon { font-size: 32px; margin-bottom: 12px; }
.contact-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.contact-card p { color: var(--grey); font-size: 13px; margin-bottom: 12px; }
.contact-card a { color: var(--red); text-decoration: none; font-weight: 600; font-size: 14px; }
.contact-card a:hover { color: var(--red-light); }

.contact-form-wrap {
  max-width: 700px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
}

.contact-form-wrap h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
}

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

/* ===== FOOTER ===== */
.footer { background: #050505; border-top: 1px solid var(--border); padding: 60px 0 24px; }

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand p { color: var(--grey); font-size: 14px; margin-top: 12px; line-height: 1.7; }

.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; }

.footer-links h4, .footer-contact h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}

.footer-links a { color: var(--grey); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--red); }
.footer-contact p { color: var(--grey); font-size: 14px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--grey);
  font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; }
  .booking-form .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap .form-row { grid-template-columns: 1fr; }
  .booking-wrap { padding: 28px 20px; }
  .contact-form-wrap { padding: 28px 20px; }
  .hero-stats { gap: 16px; }
  .hero-buttons { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
