/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */

/* ==========================================================================
   Base styles
   ========================================================================== */

:root {
  --primary-color: #dc2626;
  --primary-dark: #b91c1c;
  --primary-light: #ef4444;
  --secondary-color: #1f2937;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* ==========================================================================
   Container
   ========================================================================== */

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

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  padding: 1rem 0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-color);
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary-color);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  white-space: nowrap;
}

.phone-link:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: white;
  margin-top: 80px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 25%, rgba(220, 38, 38, 0.15) 50%, #1a1a1a 75%, #0f0f0f 100%);
  animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 25%, rgba(220, 38, 38, 0.15) 50%, #1a1a1a 75%, #0f0f0f 100%);
  }
  50% {
    background: linear-gradient(135deg, #1a1a1a 0%, rgba(220, 38, 38, 0.1) 25%, #1a1a1a 50%, rgba(220, 38, 38, 0.15) 75%, #0f0f0f 100%);
  }
}

.hero-logo-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  opacity: 0.08;
  background-image: 
    url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='100' cy='100' r='80' fill='none' stroke='%23dc2626' stroke-width='2'/%3E%3Cpath d='M 40 120 L 50 60 L 60 120' stroke='%23dc2626' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3Cellipse cx='50' cy='60' rx='3' ry='5' fill='%23dc2626'/%3E%3Cpath d='M 80 120 L 90 50 L 100 120' stroke='%23dc2626' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3Cpath d='M 88 50 L 88 60 M 90 50 L 90 60 M 92 50 L 92 60' stroke='%23dc2626' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M 120 120 L 130 55 L 140 120' stroke='%23dc2626' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3Cpath d='M 125 55 L 135 55' stroke='%23dc2626' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M 30 140 Q 100 160 170 140' stroke='%23dc2626' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 300px 300px;
  background-position: center;
  animation: logoPatternMove 20s linear infinite;
}

@keyframes logoPatternMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 300px 300px;
  }
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(220, 38, 38, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.08) 0%, transparent 60%);
  background-size: 100% 100%;
  opacity: 0.8;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: 1.5rem 1rem 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  animation: fadeInUp 1s ease;
}

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

.hero-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.9) 0%, rgba(185, 28, 28, 0.9) 100%);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 0.8rem;
  border: 1px solid rgba(220, 38, 38, 0.5);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.hero-title {
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-title-line {
  display: block;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-title-line:nth-child(2) {
  animation-delay: 0.4s;
}

.hero-title-line:nth-child(3) {
  animation-delay: 0.6s;
}

.hero-title .highlight {
  color: var(--primary-color);
  text-shadow: 0 0 30px rgba(220, 38, 38, 0.8), 0 0 60px rgba(220, 38, 38, 0.4);
  background: linear-gradient(135deg, #fff 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  margin-bottom: 1rem;
  opacity: 0.9;
  line-height: 1.5;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
  animation: fadeInUp 1s ease 0.8s both;
}

.hero-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  padding: 0 1rem;
  animation: fadeInUp 1s ease 1s both;
}

.hero-buttons .btn {
  padding: 0.875rem 2rem;
  font-size: 0.95rem;
}

.hero-stats {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  justify-content: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(220, 38, 38, 0.3);
  animation: fadeInUp 1s ease 1.2s both;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-number {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.3rem;
  color: var(--primary-color);
  text-shadow: 0 0 20px rgba(220, 38, 38, 0.6);
}

.hero-stat-label {
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  opacity: 0.85;
  font-weight: 500;
}

.hero-features {
  position: relative;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(220, 38, 38, 0.25) 100%);
  backdrop-filter: blur(10px);
  padding: 1.25rem 0;
  width: 100%;
  border-top: 1px solid rgba(220, 38, 38, 0.4);
  flex-shrink: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 0;
}

.feature-item {
  text-align: center;
  color: white;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.feature-item h3 {
  font-size: 1rem;
  font-weight: 600;
}

.rating {
  text-align: center;
  color: white;
}

.rating-stars {
  font-size: 1.5rem;
  color: #fbbf24;
  margin-right: 0.5rem;
}

.rating-text {
  font-weight: 600;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  text-align: center;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
}

.btn-secondary {
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(220, 38, 38, 0.6);
}

.btn-outline-white:hover {
  background: rgba(220, 38, 38, 0.2);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-block {
  width: 100%;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .btn-large {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   Section Styles
   ========================================================================== */

section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title strong {
  color: var(--primary-color);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

/* ==========================================================================
   Process Section
   ========================================================================== */

.process-section {
  background: var(--bg-light);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.process-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.process-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.process-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  opacity: 0.2;
  margin-bottom: 1rem;
}

.process-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.process-item p {
  color: var(--text-light);
  line-height: 1.7;
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about-section {
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  padding-right: 2rem;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-features {
  margin: 2rem 0;
}

.about-features li {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.about-image {
  position: relative;
}

.image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services-section {
  background: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-light);
  line-height: 1.7;
}

/* ==========================================================================
   Stats Section
   ========================================================================== */

.stats-section {
  background: var(--primary-color);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
}

.stat-number {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ==========================================================================
   Advantages Section
   ========================================================================== */

.advantages-section {
  background: white;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.advantage-card {
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.advantage-card:hover {
  background: var(--bg-light);
  transform: translateY(-5px);
}

.advantage-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.advantage-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.advantage-card p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.advantage-link {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-block;
}

.advantage-link:hover {
  transform: translateX(5px);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials-section {
  background: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-quote {
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-weight: 800;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author strong {
  color: var(--text-dark);
  font-size: 1.1rem;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.google-rating {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.google-rating .rating-stars {
  font-size: 2rem;
  margin-right: 0.5rem;
}

.google-rating .rating-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-right: 0.5rem;
}

.google-rating .rating-count {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact-section {
  background: white;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-info {
  padding-right: 2rem;
}

.contact-description {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin: 1.5rem 0 2rem;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item strong {
  display: block;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--text-light);
  line-height: 1.7;
}

.contact-item a {
  color: var(--primary-color);
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-form {
  background: var(--bg-light);
  padding: 2.5rem;
  border-radius: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
  cursor: pointer;
}

.checkbox-group label {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.phone-link-large {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.phone-link-large:hover {
  text-decoration: underline;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-section {
  background: var(--bg-light);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 1rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  flex: 1;
  margin-right: 1rem;
}

.faq-toggle {
  font-size: 2rem;
  font-weight: 300;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

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

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

.faq-answer p {
  padding: 0 2rem 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
  padding: 4rem 0;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--secondary-color);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-logo .logo-icon {
  background: var(--primary-color);
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-contact li {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: white;
}

.footer-hours li {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
}

.back-to-top {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
}

.back-to-top:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .about-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-text {
    padding-right: 0;
  }
  
  .contact-info {
    padding-right: 0;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: left 0.3s ease;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .phone-link {
    display: none;
  }
  
  .hero {
    min-height: 100vh;
    padding: 0.5rem 0;
  }
  
  .hero-content {
    padding: 1rem 0.5rem 0.5rem;
  }
  
  .hero-badge {
    padding: 0.3rem 0.9rem;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
  }
  
  .hero-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    margin-bottom: 0.5rem;
    gap: 0.2rem;
  }
  
  .hero-title-line {
    display: block;
  }
  
  .hero-subtitle {
    font-size: clamp(0.85rem, 3vw, 1rem);
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .hero-stats {
    flex-direction: row;
    gap: 0.75rem;
    padding-top: 0.75rem;
    margin-bottom: 0.25rem;
  }
  
  .hero-stat-number {
    font-size: 1.4rem;
  }
  
  .hero-stat-label {
    font-size: 0.65rem;
  }
  
  .hero-features {
    padding: 1rem 0;
  }
  
  .features-grid {
    gap: 0.75rem;
    grid-template-columns: repeat(3, 1fr);
  }
  
  .feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
  }
  
  .feature-item h3 {
    font-size: 0.85rem;
  }
  
  .page-title {
    font-size: 2.5rem;
  }
  
  .menu-categories {
    flex-direction: column;
    align-items: stretch;
  }
  
  .menu-category-btn {
    width: 100%;
    text-align: center;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .stats-grid,
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 3rem;
  }
}

/* ==========================================================================
   Menu Page Styles
   ========================================================================== */

.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 8rem 0 4rem;
  margin-top: 80px;
  text-align: center;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

.menu-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.menu-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.menu-category-btn {
  padding: 0.75rem 2rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 50px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

.menu-category-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.menu-category-btn.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.menu-category {
  margin-bottom: 5rem;
}

/* Show all categories by default */
.menu-category[data-menu] {
  display: block;
}

/* Hide categories that don't have active class (after JS loads) */
.menu-section.js-loaded .menu-category[data-menu]:not(.active) {
  display: none;
}

.menu-category[data-menu].active {
  animation: fadeIn 0.5s ease;
}

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

.menu-header {
  text-align: center;
  margin-bottom: 3rem;
}

.menu-category-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.menu-category-description {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.menu-item {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.menu-item-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--bg-light);
}

.image-placeholder-small {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
}

.menu-item-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-item-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.menu-item-description {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.menu-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.menu-item-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
}

.menu-item-badge {
  padding: 0.25rem 0.75rem;
  background: var(--primary-color);
  color: white;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.menu-item-badge:contains("Premium") {
  background: #f59e0b;
}

.cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.nav-link.active {
  color: var(--primary-color);
}

.nav-link.active::after {
  width: 100%;
}

/* ==========================================================================
   Print styles
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}
