@import url('https://fonts.googleapis.com/css2?family=GFS+Didot&family=Noto+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

:root {
  --bg-burgundy: #4a0e1f;
  --bg-dark: #2d0812;
  --bg-black: #0d0d0d;
  --text-white: #ffffff;
  --neon-red: #ff1744;
  --contrast-red: #c62828;
  --gradient-border: linear-gradient(135deg, #ff1744, #ff5252, #d50000, #ff1744);
  --shadow-neon: 0 4px 20px rgba(255, 23, 68, 0.4), 0 8px 32px rgba(0, 0, 0, 0.5);
  --font-heading: 'GFS Didot', 'Times New Roman', serif;
  --font-body: 'Noto Sans', 'Helvetica Neue', sans-serif;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

html:lang(el-GR) {
  font-feature-settings: 'kern' 1, 'liga' 1;
  hyphens: auto;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-burgundy);
  color: var(--text-white);
  line-height: 1.75;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--neon-red);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #ff6090;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.015em;
}

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

/* Drop cap */
.drop-cap::first-letter {
  float: left;
  font-family: var(--font-heading);
  font-size: 3.5em;
  line-height: 0.8;
  padding-right: 12px;
  padding-top: 4px;
  color: var(--neon-red);
  font-weight: 700;
}

/* Header */
.site-header {
  background: var(--bg-dark);
  border-bottom: 2px solid var(--neon-red);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 16px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.header-logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 18px;
  flex-wrap: nowrap;
  flex-shrink: 0;
}

.main-nav a {
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--neon-red);
}

.header-contacts {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  flex-wrap: nowrap;
  white-space: nowrap;
  flex-shrink: 1;
  min-width: 0;
}

.header-contacts p,
.header-contacts a {
  margin: 0;
  color: var(--text-white);
  white-space: nowrap;
}

.header-contacts a:hover {
  color: var(--neon-red);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--neon-red);
  border-radius: 2px;
  transition: 0.3s;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-dark);
  z-index: 999;
  padding: 30px 20px;
  overflow-y: auto;
}

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

.mobile-menu ul {
  list-style: none;
}

.mobile-menu li {
  border-bottom: 1px solid rgba(255, 23, 68, 0.3);
}

.mobile-menu a {
  display: block;
  padding: 16px 0;
  color: var(--text-white);
  font-size: 1.1rem;
  font-weight: 600;
}

.mobile-contacts {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid var(--neon-red);
}

.mobile-contacts p,
.mobile-contacts a {
  display: block;
  margin-bottom: 12px;
  color: var(--text-white);
}

/* Banner */
.page-banner {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.page-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(45, 8, 18, 0.5), rgba(74, 14, 31, 0.85));
}

.banner-title {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  width: 90%;
}

.banner-title h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
  color: var(--text-white);
}

/* Sections */
section {
  padding: 70px 0;
}

section:nth-child(even) {
  background: var(--bg-black);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--text-white);
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--neon-red);
  margin: 12px auto 0;
}

.section-text {
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: justify;
  font-size: 1.05rem;
}

/* Strengths - staggered horizontal cards */
.strengths-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
  padding: 20px 0;
}

.strength-card {
  flex: 1 1 220px;
  max-width: 280px;
  background: var(--bg-dark);
  padding: 28px 22px;
  border-radius: 12px;
  position: relative;
  transition: transform 0.3s ease;
}

.strength-card:nth-child(1) { transform: translateY(-20px); }
.strength-card:nth-child(2) { transform: translateY(10px); }
.strength-card:nth-child(3) { transform: translateY(-35px); }
.strength-card:nth-child(4) { transform: translateY(5px); }
.strength-card:nth-child(5) { transform: translateY(-15px); }

.strength-card::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 14px;
  background: var(--gradient-border);
  z-index: -1;
}

.strength-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: var(--bg-dark);
  z-index: -1;
}

.strength-card {
  box-shadow: var(--shadow-neon);
}

.strength-card:hover {
  transform: translateY(-8px) !important;
}

.strength-card h3 {
  color: var(--neon-red);
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.strength-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-dark);
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--neon-red);
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.service-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  color: var(--neon-red);
  margin-bottom: 12px;
}

.service-card p {
  flex: 1;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  border: 2px solid var(--neon-red);
  color: var(--neon-red);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-align: center;
}

.btn:hover {
  background: var(--neon-red);
  color: var(--text-white);
}

.btn-block {
  width: 100%;
}

/* Advantages / stats */
.advantages-block {
  background: var(--bg-black);
  padding: 50px 40px;
  border-left: 4px solid var(--neon-red);
  border-radius: 0 12px 12px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border: 1px solid rgba(255, 23, 68, 0.4);
  border-radius: 8px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--neon-red);
  font-weight: 700;
}

.stat-label {
  font-size: 0.9rem;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.85);
}

/* Forms */
.form-section {
  background: var(--bg-dark);
  padding: 50px 40px;
  border-radius: 12px;
  border: 2px solid var(--neon-red);
  max-width: 700px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 23, 68, 0.5);
  border-radius: 6px;
  background: var(--bg-black);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--neon-red);
  box-shadow: 0 0 8px rgba(255, 23, 68, 0.3);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-checkbox {
  margin-top: 8px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-weight: 400;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--neon-red);
  cursor: pointer;
}

.form-message {
  padding: 14px 18px;
  border-radius: 6px;
  margin-top: 16px;
  display: none;
  font-weight: 600;
}

.form-message.success {
  display: block;
  background: rgba(76, 175, 80, 0.2);
  border: 1px solid #4caf50;
  color: #a5d6a7;
}

.form-message.error {
  display: block;
  background: rgba(244, 67, 54, 0.2);
  border: 1px solid #f44336;
  color: #ef9a9a;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 23, 68, 0.3);
  margin-bottom: 8px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-align: left;
  padding: 18px 40px 18px 0;
  cursor: pointer;
  position: relative;
  font-weight: 600;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--neon-red);
  font-size: 1.5rem;
}

.faq-item.open .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 0 18px;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* About page */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 50px;
}

.about-content img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid var(--neon-red);
}

.mission-stickers {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
}

.mission-sticker {
  background: var(--bg-black);
  border: 2px solid var(--neon-red);
  padding: 24px 30px;
  border-radius: 8px;
  flex: 1 1 200px;
  max-width: 280px;
  text-align: center;
  box-shadow: var(--shadow-neon);
}

.mission-sticker h3 {
  color: var(--neon-red);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 50px auto 0;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--neon-red);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 30px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 16px;
  height: 16px;
  background: var(--neon-red);
  border-radius: 50%;
  border: 3px solid var(--bg-burgundy);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--neon-red);
  font-weight: 700;
  margin-bottom: 8px;
}

/* Services detail */
.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  background: var(--bg-dark);
  padding: 40px;
  border-radius: 12px;
  border: 2px solid rgba(255, 23, 68, 0.4);
  margin-bottom: 40px;
}

.service-detail-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.service-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--neon-red);
  margin: 16px 0;
}

.service-guarantee {
  background: var(--bg-black);
  padding: 16px;
  border-radius: 8px;
  margin: 16px 0;
  border-left: 3px solid var(--neon-red);
  font-size: 0.9rem;
}

.benefits-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}

.benefits-list li {
  padding: 16px 20px 16px 50px;
  position: relative;
  border-bottom: 1px solid rgba(255, 23, 68, 0.2);
  font-size: 1rem;
}

.benefits-list li::before {
  content: '✦';
  position: absolute;
  left: 16px;
  color: var(--neon-red);
  font-size: 1.2rem;
}

/* Bonus program */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.bonus-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--bg-black);
  border-radius: 12px;
  border: 1px solid rgba(255, 23, 68, 0.4);
}

.bonus-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.bonus-item h4 {
  color: var(--neon-red);
  margin-bottom: 8px;
}

/* Contacts */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-block p,
.contact-info-block a {
  display: block;
  margin-bottom: 16px;
  color: var(--text-white);
  font-size: 1.05rem;
}

.contact-info-block a:hover {
  color: var(--neon-red);
}

.contact-map-link {
  margin-top: 20px;
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  border-top: 2px solid var(--neon-red);
  padding: 50px 0 30px;
  margin-top: auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: start;
}

.footer-logo img {
  width: 80px;
  height: 80px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.footer-nav a {
  color: var(--text-white);
  font-size: 0.9rem;
}

.footer-contacts p,
.footer-contacts a {
  display: block;
  margin-bottom: 10px;
  color: var(--text-white);
  font-size: 0.9rem;
  white-space: nowrap;
}

.footer-legal {
  grid-column: 1 / -1;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 23, 68, 0.3);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-legal a {
  margin-right: 16px;
}

.legal-page {
  padding: 60px 0 80px;
}

.legal-page h1 {
  margin-bottom: 30px;
  color: var(--neon-red);
}

.legal-page h2 {
  margin: 30px 0 15px;
  font-size: 1.3rem;
}

.legal-page p {
  margin-bottom: 16px;
  text-align: justify;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 1024px) {
  .header-contacts {
    display: none;
  }

  .main-nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .strength-card:nth-child(n) {
    transform: none;
  }

  .strengths-grid {
    align-items: stretch;
  }

  .about-content,
  .service-detail-card,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-nav ul {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-banner {
    height: 280px;
  }

  section {
    padding: 50px 0;
  }

  .form-section {
    padding: 30px 20px;
  }

  .advantages-block {
    padding: 30px 20px;
  }

  .service-detail-card {
    padding: 24px;
  }
}

@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}
