:root {
  --primary-teal: #0d9488;
  --deep-teal: #0f766e;
  --electric-orange: #f97316;
  --bright-orange: #fb923c;
  --soft-orange: #fed7aa;
  --pure-white: #ffffff;
  --off-white: #f8fafc;
  --light-gray: #f1f5f9;
  --text-dark: #1e293b;
  --text-medium: #475569;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
  --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.12);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--pure-white);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

strong, p, b {
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

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

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

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

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  position: relative;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-medium);
  max-width: 600px;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--electric-orange);
  color: var(--pure-white);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  min-height: 52px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover {
  background: var(--bright-orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  border: 2px solid var(--text-dark);
  cursor: pointer;
  white-space: nowrap;
  min-height: 52px;
  transition: var(--transition-smooth);
}

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

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-teal);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  min-height: 48px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-soft);
}

.btn-ghost:hover {
  background: var(--primary-teal);
  color: var(--pure-white);
  transform: translateY(-2px);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 16px 0;
  transition: var(--transition-smooth);
}

.header.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-medium);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-dark);
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-teal), var(--deep-teal));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  font-size: 1.25rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 18px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-medium);
  border-radius: 8px;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-teal);
  background: rgba(13, 148, 136, 0.08);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--primary-teal);
  font-size: 0.95rem;
}

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

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--pure-white) 100%);
}

.hero-bg-elements {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: rgba(13, 148, 136, 0.06);
  top: -200px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: rgba(249, 115, 22, 0.05);
  bottom: -100px;
  left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-shape-3 {
  width: 200px;
  height: 200px;
  background: rgba(13, 148, 136, 0.08);
  top: 40%;
  left: 30%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(249, 115, 22, 0.1);
  color: var(--electric-orange);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 24px;
  line-height: 1.1;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-title span {
  color: var(--primary-teal);
  position: relative;
}

.hero-text {
  font-size: 1.25rem;
  color: var(--text-medium);
  margin-bottom: 40px;
  max-width: 560px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-image {
  position: relative;
  z-index: 2;
  animation: fadeInRight 0.8s ease-out 0.4s both;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(249, 115, 22, 0.05));
  z-index: 1;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-teal);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-medium);
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-section {
  position: relative;
  overflow: hidden;
}

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

.about-images {
  position: relative;
}

.about-main-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.about-secondary-image {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 6px solid var(--pure-white);
}

.about-content {
  padding-left: 20px;
}

.about-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(13, 148, 136, 0.1);
  color: var(--primary-teal);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 50px;
  margin-bottom: 24px;
}

.about-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 24px;
}

.about-text {
  font-size: 1.125rem;
  color: var(--text-medium);
  margin-bottom: 32px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--electric-orange);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.about-feature-text {
  font-weight: 500;
  color: var(--text-dark);
}

.services-section {
  background: var(--off-white);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, var(--pure-white) 0%, transparent 100%);
}

.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  position: relative;
}

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

.service-card {
  background: var(--pure-white);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-teal), var(--electric-orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 72px;
  height: 72px;
  background: rgba(13, 148, 136, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 2rem;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: var(--primary-teal);
  color: var(--pure-white);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.service-description {
  color: var(--text-medium);
  margin-bottom: 24px;
  font-size: 1rem;
}

.service-price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(249, 115, 22, 0.1);
  color: var(--electric-orange);
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 10px;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-teal);
  font-weight: 600;
  transition: var(--transition-smooth);
}

.service-link:hover {
  gap: 12px;
  color: var(--deep-teal);
}

.advantages-section {
  position: relative;
  overflow: hidden;
}

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

.advantage-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--pure-white);
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition-smooth);
}

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

.advantage-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--primary-teal), var(--deep-teal));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  font-size: 2rem;
  transition: var(--transition-smooth);
}

.advantage-card:hover .advantage-icon {
  transform: scale(1.1) rotate(5deg);
}

.advantage-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.advantage-text {
  color: var(--text-medium);
  font-size: 0.95rem;
}

.projects-section {
  background: var(--text-dark);
  color: var(--pure-white);
  position: relative;
  overflow: hidden;
}

.projects-section .section-title,
.projects-section .section-subtitle {
  color: var(--pure-white);
}

.projects-section .section-subtitle {
  opacity: 0.8;
}

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

.project-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

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

.project-category {
  display: inline-block;
  padding: 6px 14px;
  background: var(--electric-orange);
  color: var(--pure-white);
  font-weight: 600;
  font-size: 0.75rem;
  border-radius: 6px;
  margin-bottom: 12px;
  width: fit-content;
}

.project-title {
  color: var(--pure-white);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.project-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.process-section {
  background: var(--off-white);
  position: relative;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-teal), var(--electric-orange));
}

.process-step {
  text-align: center;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-teal);
  color: var(--pure-white);
  font-weight: 800;
  font-size: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
}

.process-icon {
  width: 100px;
  height: 100px;
  background: var(--pure-white);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2.5rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.process-step:hover .process-icon {
  transform: translateY(-10px);
  background: var(--primary-teal);
  color: var(--pure-white);
}

.process-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.process-text {
  color: var(--text-medium);
  font-size: 0.95rem;
}

.testimonials-section {
  position: relative;
}

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

.testimonial-card {
  background: var(--pure-white);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-medium);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-teal);
}

.testimonial-author {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.testimonial-location {
  color: var(--text-medium);
  font-size: 0.9rem;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  color: var(--electric-orange);
  margin-bottom: 16px;
}

.testimonial-text {
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.8;
  font-style: italic;
}

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

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

.team-card {
  background: var(--pure-white);
  border-radius: 24px;
  overflow: hidden;
  text-align: center;
  transition: var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.team-image-wrapper {
  position: relative;
  padding-top: 20px;
  display: flex;
  justify-content: center;
}

.team-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--pure-white);
  box-shadow: var(--shadow-medium);
}

.team-content {
  padding: 24px 30px 30px;
}

.team-name {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.team-role {
  color: var(--primary-teal);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.team-bio {
  color: var(--text-medium);
  font-size: 0.9rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-teal), var(--deep-teal));
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -300px;
  right: -200px;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 50%;
  bottom: -200px;
  left: -100px;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section .section-title,
.cta-section .section-subtitle {
  color: var(--pure-white);
}

.cta-section .section-subtitle {
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-section {
  position: relative;
}

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

.contact-info {
  background: var(--primary-teal);
  border-radius: 24px;
  padding: 50px 40px;
  color: var(--pure-white);
}

.contact-info-title {
  color: var(--pure-white);
  font-size: 1.75rem;
  margin-bottom: 32px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item-label {
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item-value {
  opacity: 0.9;
  font-size: 0.95rem;
}

.contact-emergency {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-emergency-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 12px;
  color: var(--electric-orange);
}

.contact-emergency-text {
  opacity: 0.9;
  font-size: 0.95rem;
}

.contact-form-wrapper {
  background: var(--pure-white);
  border-radius: 24px;
  padding: 50px;
  box-shadow: var(--shadow-medium);
}

.contact-form-title {
  font-size: 1.75rem;
  margin-bottom: 32px;
}

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

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

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

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--light-gray);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition-smooth);
  background: var(--pure-white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
}

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

.form-submit {
  width: 100%;
  padding: 18px;
  font-size: 1.125rem;
}

.contact-map {
  margin-top: 60px;
  border-radius: 24px;
  overflow: hidden;
  height: 400px;
}

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

.footer {
  background: var(--text-dark);
  color: var(--pure-white);
  padding: 80px 0 40px;
  position: relative;
}

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

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  transition: var(--transition-smooth);
}

.footer-social-link:hover {
  background: var(--primary-teal);
}

.footer-title {
  font-size: 1.125rem;
  margin-bottom: 24px;
  color: var(--pure-white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--electric-orange);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-contact-icon {
  color: var(--electric-orange);
}

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

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

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

.footer-legal-link {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-legal-link:hover {
  color: var(--pure-white);
}

.cookie-consent-banner {
  position: fixed;
  bottom: 30px;
  left: 30px;
  max-width: 420px;
  background: var(--text-dark);
  border-radius: 20px;
  padding: 28px;
  z-index: 9999;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideInUp 0.5s ease-out;
}

.cookie-consent-banner.hidden {
  display: none;
}

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

.cookie-title {
  color: var(--pure-white);
  font-size: 1.125rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.cookie-btn {
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  min-height: 44px;
}

.cookie-accept {
  background: var(--electric-orange);
  color: var(--pure-white);
}

.cookie-accept:hover {
  background: var(--bright-orange);
}

.cookie-decline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--pure-white);
}

.cookie-decline:hover {
  background: rgba(255, 255, 255, 0.2);
}

.cookie-link {
  color: var(--electric-orange);
  text-decoration: underline;
}

.page-header {
  padding: 180px 0 80px;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--pure-white) 100%);
  text-align: center;
  position: relative;
}

.page-header-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}

.page-header-subtitle {
  font-size: 1.25rem;
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.breadcrumb-link {
  color: var(--text-medium);
}

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

.breadcrumb-separator {
  color: var(--text-medium);
}

.breadcrumb-current {
  color: var(--primary-teal);
  font-weight: 500;
}

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

.faq-item {
  background: var(--pure-white);
  border-radius: 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: var(--transition-smooth);
}

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

.faq-icon {
  font-size: 1.5rem;
  color: var(--electric-orange);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

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

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

.faq-answer-content {
  padding: 0 28px 24px;
  color: var(--text-medium);
  line-height: 1.8;
}

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

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

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }

  .process-timeline::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .hero-section {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-images {
    max-width: 500px;
    margin: 0 auto;
  }

  .about-content {
    padding-left: 0;
    text-align: center;
  }

  .about-features {
    justify-items: center;
  }

  .about-feature {
    flex-direction: column;
    text-align: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: var(--pure-white);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 8px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
    z-index: 1001;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    width: 100%;
    padding: 16px 20px;
    font-size: 1.1rem;
  }

  .header-cta {
    display: none;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

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

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    max-width: 100%;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 30px 24px;
  }

  .contact-info {
    padding: 30px 24px;
  }

  .cookie-consent-banner {
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    border-radius: 20px 20px 0 0;
  }

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

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

  .page-header {
    padding: 140px 0 60px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .about-secondary-image {
    width: 140px;
    height: 140px;
    right: -20px;
    bottom: -20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }
}
