/* ========================================
   RESET
======================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ========================================
   ROOT VARIABLES
======================================== */

:root {
  --bg-main: #140c2b;
  --bg-secondary: #1f1447;
  --bg-card: #2a1b5e;

  --accent: #5fd1ff;
  --accent-hover: #38bdf8;

  --text-main: #ffffff;
  --text-muted: #cbd5e1;

  --border-light: rgba(255, 255, 255, 0.08);
}

/* ========================================
   BASE STYLES
======================================== */

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3 {
  line-height: 1.15;
}

p {
  color: var(--text-muted);
}

/* ========================================
   LAYOUT
======================================== */

.container {
  width: 100%;
  max-width: 1150px;
  margin: auto;
  padding: 0 24px;
}

/* ========================================
   HEADER
======================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  width: 100%;

  background: rgba(20, 12, 43, 0.92);
  backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 88px;
}

.header-phone {
  text-align: center;
  padding-bottom: 14px;
}

.header-phone a {
  color: var(--accent);
  font-weight: 600;
}

/* ========================================
   LOGO
======================================== */

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.logo span {
  font-size: 20px;
  font-weight: 700;
  color: white;
}

/* ========================================
   NAVIGATION
======================================== */

nav {
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;

  list-style: none;
}

.nav-links a {
  position: relative;

  color: white;
  font-size: 17px;
  font-weight: 500;

  transition: 0.3s ease;
}

.nav-links a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0;
  height: 2px;

  background: var(--accent);

  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  width: 100%;
}

/* ========================================
   MOBILE MENU
======================================== */

.menu-toggle {
  display: none;

  background: none;
  border: none;

  color: white;
  font-size: 30px;

  cursor: pointer;
}

/* ========================================
   HERO
======================================== */

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;

  padding: 90px 0 40px;
}

.hero-text {
  flex: 1;
  max-width: 620px;
}

.hero h1 {
  font-size: 68px;
  letter-spacing: -2px;

  margin-bottom: 24px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 22px;
}

.subheading {
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;

  margin-top: 35px;
}

.trust {
  color: var(--text-muted);
  font-size: 14px;
}

.hero img {
  width: 100%;
  max-width: 520px;

  border-radius: 18px;

  box-shadow:
    0 0 40px rgba(95, 209, 255, 0.18),
    0 20px 60px rgba(0, 0, 0, 0.4);
}

/* ========================================
   BUTTONS
======================================== */

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: fit-content;

  padding: 18px 34px;

  border-radius: 12px;

  background: var(--accent);
  color: #000;

  font-size: 17px;
  font-weight: 700;

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.cta-button:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

/* ========================================
   SECTIONS
======================================== */

section {
  margin-top: 120px;
}

section h2 {
  font-size: 48px;
  letter-spacing: -1px;

  margin-bottom: 60px;
}

/* ========================================
   SERVICES
======================================== */

.service-list {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.service-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  gap: 60px;

  padding-bottom: 38px;

  border-bottom: 1px solid var(--border-light);

  transition: 0.3s ease;
}

.service-row:hover {
  transform: translateY(-2px);
}

.service-row:hover h3 {
  color: var(--accent);
}

.service-row h3 {
  flex: 1;

  font-size: 30px;

  transition: color 0.3s ease;
}

.service-row p {
  flex: 1;
  max-width: 520px;

  font-size: 18px;
}

/* ========================================
   LOCAL CONTENT
======================================== */

.local-content ul {
  margin-top: 24px;
  padding-left: 22px;
}

.local-content li {
  margin-bottom: 10px;
  color: var(--text-muted);
}

/* ========================================
   FAQ
======================================== */

.faq {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.faq h3 {
  text-align: left;
  font-size: 24px;
  margin-bottom: 10px;
}

/* ========================================
   CTA SECTION
======================================== */

.cta-section {
  text-align: center;
}

.cta-section p {
  max-width: 720px;
  margin: 0 auto 30px;
}

/* ========================================
   FOOTER
======================================== */

footer {
  margin-top: 120px;
  padding: 50px 20px;

  text-align: center;

  background: var(--bg-secondary);

  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer p {
  font-size: 15px;
}

/* ========================================
   SOCIAL LINKS
======================================== */

.social-links {
  display: flex;
  justify-content: center;
  gap: 18px;

  margin-top: 24px;
}

.social-links a {
  transition: color 0.3s ease;
}

.social-links i {
  font-size: 28px;

  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.social-links a:hover i {
  transform: scale(1.15);
}

.social-links a.facebook:hover {
  color: #1877f2;
}

.social-links a.instagram:hover {
  color: #e1306c;
}

/* ========================================
   COOKIE BANNER
======================================== */

.cookie-banner {
  position: fixed;

  left: 20px;
  right: 20px;
  bottom: 20px;

  z-index: 9999;

  padding: 20px;
  border-radius: 16px;

  background: var(--bg-card);

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;

  flex-wrap: wrap;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-buttons button {
  padding: 12px 20px;

  border: none;
  border-radius: 10px;

  font-weight: 700;
  cursor: pointer;
}

#accept-cookies {
  background: var(--accent);
  color: #000;
}

#reject-cookies {
  background: transparent;
  color: white;

  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;

    padding-top: 60px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-actions {
    align-items: center;
  }

  .service-row {
    flex-direction: column;
    gap: 20px;
  }

  .service-row p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  section {
    margin-top: 90px;
  }

  section h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;

    top: 100%;
    left: 20px;
    right: 20px;
  }

  .nav-links {
    display: none;

    flex-direction: column;
    align-items: flex-start;

    gap: 18px;

    padding: 22px;
    border-radius: 16px;

    background: var(--bg-secondary);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  }

  .nav-links.active {
    display: flex;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.1;
  }

  .hero p,
  .service-row p {
    font-size: 17px;
  }

  .service-row h3 {
    font-size: 24px;
  }

  .logo span {
    font-size: 16px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-buttons button {
    flex: 1;
  }
}