:root {
  --primary-orange: #ff6b00;
  --primary-orange-light: #ff8533;
  --primary-orange-dark: #cc5500;
  --charcoal-dark: #1a1a1a;
  --charcoal-medium: #2d2d2d;
  --charcoal-light: #404040;
  --concrete-gray: #8c8c8c;
  --concrete-light: #d4d4d4;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --success-green: #28a745;
  --error-red: #dc3545;
  --warning-yellow: #ffc107;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', 'Segoe UI', sans-serif;
  background-color: var(--off-white);
  color: var(--charcoal-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

strong, p {
  color: inherit;
}

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

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.section-padding {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 50px 0;
  }
}


.header-main {
  background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal-medium) 100%);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo-text span {
  color: var(--primary-orange);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  padding: 10px 0;
  position: relative;
  transition: color 0.3s ease;
}

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

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

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

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

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

@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--charcoal-dark);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    transform: translateY(-150%);
    transition: transform 0.4s ease;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .mobile-toggle {
    display: flex;
  }
}


.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal-medium) 50%, var(--primary-orange-dark) 100%);
  padding-top: 80px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0V0zm30 30v30h30V30H30z' fill='%23000000' fill-opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 107, 0, 0.2);
  color: var(--primary-orange);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
  border: 1px solid var(--primary-orange);
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.hero-title span {
  color: var(--primary-orange);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--concrete-light);
  margin-bottom: 40px;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary-orange);
  color: var(--white);
  padding: 16px 35px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid var(--primary-orange);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--primary-orange-dark);
  border-color: var(--primary-orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 14px 33px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid var(--white);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--charcoal-dark);
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-main {
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.stat-item {
  text-align: center;
  padding: 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: 42px;
  font-weight: 900;
  color: var(--primary-orange);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--concrete-light);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 40px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 100px;
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}


.glass-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.dark-glass-card {
  background: rgba(45, 45, 45, 0.95);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-glass-card h2,
.dark-glass-card h3,
.dark-glass-card h4,
.dark-glass-card p {
  color: var(--white);
}


.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.section-title {
  font-size: 42px;
  font-weight: 900;
  color: var(--charcoal-dark);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 18px;
  color: var(--concrete-gray);
  max-width: 600px;
  margin: 0 auto;
}

.dark-bg-section .section-title {
  color: var(--white);
}

.dark-bg-section .section-subtitle {
  color: var(--concrete-light);
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon-wrapper {
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-icon-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.service-icon {
  font-size: 64px;
  position: relative;
  z-index: 1;
}

.service-content {
  padding: 30px;
}

.service-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--charcoal-dark);
  margin-bottom: 15px;
}

.service-description {
  color: var(--concrete-gray);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-price {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary-orange);
  margin-bottom: 20px;
}

.service-price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--concrete-gray);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-orange);
  font-weight: 700;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 15px;
}


.features-section {
  background: var(--charcoal-dark);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l50 50L100 0' stroke='%23ff6b00' stroke-width='0.5' fill='none' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-orange);
  transform: translateY(-5px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 36px;
}

.feature-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--charcoal-dark);
  margin-bottom: 15px;
}

.features-section .feature-title {
  color: var(--white);
}

.feature-description {
  color: var(--charcoal-medium);
  line-height: 1.7;
}

.features-section .feature-description {
  color: var(--concrete-light);
}


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

.about-image-wrapper {
  position: relative;
}

.about-main-image {
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.about-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--primary-orange);
  color: var(--white);
  padding: 30px;
  border-radius: 16px;
  text-align: center;
}

.about-badge-number {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.about-badge-text {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.about-title {
  font-size: 42px;
  font-weight: 900;
  color: var(--charcoal-dark);
  margin-bottom: 25px;
  text-transform: uppercase;
}

.about-text {
  color: var(--concrete-gray);
  margin-bottom: 30px;
  line-height: 1.8;
}

.about-list {
  list-style: none;
  margin-bottom: 35px;
}

.about-list-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-weight: 500;
  color: var(--charcoal-dark);
}

.about-list-icon {
  width: 24px;
  height: 24px;
  background: var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 30px;
  }
}


.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.team-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-image-wrapper {
  height: 300px;
  overflow: hidden;
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-card:hover .team-image {
  transform: scale(1.1);
}

.team-content {
  padding: 25px;
  text-align: center;
}

.team-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--charcoal-dark);
  margin-bottom: 5px;
}

.team-role {
  color: var(--primary-orange);
  font-weight: 600;
  margin-bottom: 15px;
}

.team-bio {
  color: var(--concrete-gray);
  font-size: 14px;
  line-height: 1.6;
}


.reviews-section {
  background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal-medium) 100%);
  position: relative;
}

.reviews-section h2, .features-section h2 {
  color: var(--concrete-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 25px;
  font-size: 80px;
  color: var(--primary-orange);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.review-stars {
  color: var(--warning-yellow);
  margin-bottom: 20px;
  font-size: 18px;
}

.review-text {
  color: var(--concrete-light);
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.review-name {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.review-location {
  color: var(--concrete-gray);
  font-size: 14px;
}


.contact-section {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info-wrapper {
  background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal-medium) 100%);
  border-radius: 20px;
  padding: 50px;
  color: var(--white);
}

.contact-info-title {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.contact-info-list {
  list-style: none;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
}

.contact-info-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-info-content p {
  color: var(--concrete-light);
}

.contact-info-content a {
  color: var(--concrete-light);
  transition: color 0.3s ease;
}

.contact-info-content a:hover {
  color: var(--primary-orange);
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--charcoal-dark);
  margin-bottom: 30px;
  text-transform: uppercase;
}

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

.form-label {
  display: block;
  font-weight: 600;
  color: var(--charcoal-dark);
  margin-bottom: 10px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--concrete-light);
  border-radius: 10px;
  font-size: 16px;
  color: var(--charcoal-dark);
  transition: all 0.3s ease;
  background: var(--white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}

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

.form-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 25px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-overlay-text {
  color: var(--white);
  font-weight: 700;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
}


.faq-section {
  background: var(--off-white);
}

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

.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 25px 30px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal-dark);
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--primary-orange);
}

.faq-icon {
  width: 30px;
  height: 30px;
  background: var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

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

.faq-answer-content {
  padding: 0 30px 25px;
  color: var(--concrete-gray);
  line-height: 1.8;
}

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


.footer-main {
  background: var(--charcoal-dark);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand {
  margin-bottom: 25px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
}

.footer-logo span {
  color: var(--primary-orange);
}

.footer-description {
  color: var(--concrete-light);
  line-height: 1.8;
}

.footer-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--concrete-light);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-orange);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  color: var(--concrete-light);
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 0, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  flex-shrink: 0;
}

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

.footer-copyright {
  color: var(--concrete-gray);
}

.footer-legal {
  display: flex;
  gap: 30px;
}

.footer-legal a {
  color: var(--concrete-gray);
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--primary-orange);
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}


.cookie-consent-banner {
  position: fixed;
  bottom: 30px;
  left: 30px;
  right: 30px;
  max-width: 500px;
  background: var(--charcoal-dark);
  color: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 2000;
  display: block;
}

.cookie-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cookie-text {
  color: var(--concrete-light);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-btn-accept {
  background: var(--primary-orange);
  color: var(--white);
}

.cookie-btn-accept:hover {
  background: var(--primary-orange-dark);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--concrete-light);
  border: 1px solid var(--concrete-gray);
}

.cookie-btn-decline:hover {
  border-color: var(--white);
  color: var(--white);
}

@media (max-width: 576px) {
  .cookie-consent-banner {
    left: 15px;
    right: 15px;
    bottom: 15px;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}


.page-header {
  background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal-medium) 100%);
  padding: 150px 0 80px;
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0V0zm30 30v30h30V30H30z' fill='%23000000' fill-opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

.page-title {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.page-subtitle {
  color: var(--concrete-light);
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: var(--primary-orange);
  transition: color 0.3s ease;
}

.breadcrumb span {
  color: var(--concrete-gray);
}


.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.pricing-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border: 3px solid var(--primary-orange);
}

.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--primary-orange);
  color: var(--white);
  padding: 5px 40px;
  font-size: 11px;
  font-weight: 700;
  transform: rotate(45deg);
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--concrete-light);
}

.pricing-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--charcoal-dark);
  margin-bottom: 10px;
}

.pricing-price {
  font-size: 48px;
  font-weight: 900;
  color: var(--primary-orange);
}

.pricing-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--concrete-gray);
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  color: var(--charcoal-dark);
}

.pricing-feature-icon {
  width: 20px;
  height: 20px;
  background: var(--success-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 12px;
  flex-shrink: 0;
}

.pricing-btn {
  width: 100%;
  padding: 16px;
  background: var(--primary-orange);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-btn:hover {
  background: var(--primary-orange-dark);
}


.thank-you-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal-medium) 100%);
  padding: 100px 20px;
}

.thank-you-content {
  text-align: center;
  max-width: 600px;
}

.thank-you-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  font-size: 60px;
  color: var(--white);
}

.thank-you-title {
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.thank-you-text {
  color: var(--concrete-light);
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.thank-you-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-orange);
  color: var(--white);
  padding: 18px 40px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
}

.thank-you-btn:hover {
  background: var(--primary-orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
}


.legal-content {
  background: var(--white);
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--charcoal-dark);
  margin-bottom: 20px;
}

.legal-text {
  color: var(--concrete-gray);
  line-height: 1.8;
}

.legal-text p {
  margin-bottom: 15px;
}

.legal-text ul {
  margin-left: 20px;
  margin-top: 15px;
}

.legal-text li {
  margin-bottom: 10px;
  color: var(--concrete-gray);
}


.text-primary {
  color: var(--primary-orange) !important;
}

.bg-dark {
  background-color: var(--charcoal-dark) !important;
}

.bg-light {
  background-color: var(--off-white) !important;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }


.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


.map-container {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 30px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}


.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--concrete-gray);
}

.empty-state-icon {
  font-size: 64px;
  margin-bottom: 20px;
  opacity: 0.5;
}

.empty-state-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--charcoal-dark);
  margin-bottom: 10px;
}