@charset "UTF-8";

:root {
  --ocean-deep: #0a2a4a;
  --ocean-mid: #1a5276;
  --ocean-light: #3498db;
  --steel-silver: #8e9aaf;
  --steel-bright: #d5d8df;
  --rust-warm: #c4715a;
  --rust-dark: #8b4d3b;
  --foam-white: #f8f9fa;
  --sand-light: #e8dcc4;
  --nav-black: #1c1c1c;
  --success-green: #2d7a4f;
  --error-red: #b84233;
}

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

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

body {
  font-family: 'Montserrat', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: var(--foam-white);
  color: var(--nav-black);
  line-height: 1.6;
  overflow-x: hidden;
}

body.overlay-active {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75em;
  color: var(--ocean-deep);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  position: relative;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
}

p {
  margin-bottom: 1rem;
  color: inherit;
}

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

a:hover {
  color: var(--rust-warm);
}

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

.section-padding {
  padding: clamp(60px, 8vw, 120px) 0;
}

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

.text-ocean-deep { color: var(--ocean-deep); }
.text-ocean-mid { color: var(--ocean-mid); }
.text-ocean-light { color: var(--ocean-light); }
.text-rust-warm { color: var(--rust-warm); }
.text-rust-dark { color: var(--rust-dark); }
.text-steel-silver { color: var(--steel-silver); }
.text-steel-bright { color: var(--steel-bright); }
.text-foam-white { color: var(--foam-white); }
.text-nav-black { color: var(--nav-black); }

.bg-ocean-deep { background-color: var(--ocean-deep); }
.bg-ocean-mid { background-color: var(--ocean-mid); }
.bg-ocean-light { background-color: var(--ocean-light); }
.bg-rust-warm { background-color: var(--rust-warm); }
.bg-rust-dark { background-color: var(--rust-dark); }
.bg-steel-silver { background-color: var(--steel-silver); }
.bg-steel-bright { background-color: var(--steel-bright); }
.bg-foam-white { background-color: var(--foam-white); }
.bg-sand-light { background-color: var(--sand-light); }
.bg-nav-black { background-color: var(--nav-black); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  min-height: 52px;
  background: linear-gradient(135deg, var(--rust-warm) 0%, var(--rust-dark) 100%);
  color: var(--foam-white);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(196, 113, 90, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(196, 113, 90, 0.4);
  color: var(--foam-white);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  min-height: 52px;
  background: transparent;
  color: var(--foam-white);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--foam-white);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  gap: 0.5rem;
}

.btn-secondary:hover {
  background: var(--foam-white);
  color: var(--ocean-deep);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  min-height: 52px;
  background: transparent;
  color: var(--ocean-deep);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--ocean-deep);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  gap: 0.5rem;
}

.btn-outline-dark:hover {
  background: var(--ocean-deep);
  color: var(--foam-white);
}

.header-main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(28, 28, 28, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}

.header-main.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--ocean-light) 0%, var(--rust-warm) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--foam-white);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foam-white);
  line-height: 1.2;
}

.logo-text span {
  color: var(--ocean-light);
}

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

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--steel-bright);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--foam-white);
}

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

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--foam-white);
  margin: 4px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

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

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

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

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--ocean-deep);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-background::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 42, 74, 0.92) 0%, rgba(26, 82, 118, 0.88) 50%, rgba(10, 42, 74, 0.95) 100%);
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--ocean-light);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(5px);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--foam-white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title .accent {
  color: var(--rust-warm);
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--steel-bright);
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--foam-white);
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--steel-silver);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.section-subtitle {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rust-warm);
  margin-bottom: 0.75rem;
}

.section-title {
  max-width: 800px;
  margin: 0 auto 1rem;
}

.section-description {
  font-size: 1.1rem;
  color: var(--steel-silver);
  max-width: 700px;
  margin: 0 auto;
}

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

.service-card {
  background: var(--foam-white);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.service-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card-content {
  padding: 1.75rem;
}

.service-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--ocean-mid) 0%, var(--ocean-deep) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.service-card-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.service-card-text {
  color: var(--steel-silver);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.service-card-price {
  display: inline-block;
  background: var(--sand-light);
  color: var(--ocean-deep);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.advantages-section {
  background: var(--ocean-deep);
  position: relative;
  overflow: hidden;
}

.advantages-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

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

.advantage-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.advantage-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.advantage-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--rust-warm) 0%, var(--rust-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.advantage-title {
  color: var(--foam-white);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.advantage-text {
  color: var(--steel-silver);
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-section {
  background: var(--foam-white);
}

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

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

.about-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 60%;
  height: 60%;
  background: linear-gradient(135deg, var(--ocean-mid) 0%, var(--ocean-deep) 100%);
  border-radius: 12px;
  z-index: -1;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ocean-mid);
  color: var(--foam-white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.about-title {
  margin-bottom: 1.5rem;
}

.about-text {
  color: var(--nav-black);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--rust-warm) 0%, var(--rust-dark) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--foam-white);
  font-size: 1.25rem;
  flex-shrink: 0;
}

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

.testimonials-section {
  background: linear-gradient(180deg, var(--sand-light) 0%, var(--foam-white) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}
.service-features-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem 0;
}

.service-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--steel-silver);
}

.service-features-list li::before {
  content: '✓';
  color: var(--rust-warm);
  font-weight: bold;
  flex-shrink: 0;
}

.service-area-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem 0;
}

.service-area-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-weight: 500;
  color: var(--nav-black);
}

.service-area-list li::before {
  content: '📍';
  font-size: 1rem;
}

.testimonial-card {
  background: var(--foam-white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  position: relative;
}

.testimonial-quote {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 4rem;
  color: var(--ocean-light);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: #fbbf24;
  font-size: 1.1rem;
}

.testimonial-text {
  color: var(--nav-black);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.testimonial-name {
  font-weight: 700;
  color: var(--ocean-deep);
  margin-bottom: 0.25rem;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--steel-silver);
}

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

.team-card {
  text-align: center;
}

.team-card-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--foam-white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-card-name {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.team-card-role {
  color: var(--rust-warm);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.team-card-bio {
  color: var(--steel-silver);
  font-size: 0.9rem;
  max-width: 280px;
  margin: 0 auto;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 3rem;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 1.25rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--ocean-light) 0%, var(--rust-warm) 100%);
}

.process-step {
  position: relative;
  padding-bottom: 3rem;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-step-number {
  position: absolute;
  left: -2.75rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--ocean-mid) 0%, var(--ocean-deep) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--foam-white);
  z-index: 1;
}

.process-step-content {
  background: var(--foam-white);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.process-step-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.process-step-text {
  color: var(--steel-silver);
  font-size: 0.95rem;
  margin: 0;
}

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

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 42, 74, 0.9) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

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

.gallery-title {
  color: var(--foam-white);
  font-size: 1.1rem;
  margin: 0;
}

.gallery-location {
  color: var(--ocean-light);
  font-size: 0.875rem;
}

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

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

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--nav-black);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--ocean-mid);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--ocean-light);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

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

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  color: var(--steel-silver);
  line-height: 1.7;
  margin: 0;
}

.contact-section {
  background: var(--ocean-deep);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(26, 82, 118, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.contact-info {
  color: var(--foam-white);
}

.contact-title {
  color: var(--foam-white);
  margin-bottom: 1.5rem;
}

.contact-text {
  color: var(--steel-silver);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

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

.contact-item-label {
  font-size: 0.875rem;
  color: var(--steel-silver);
  margin-bottom: 0.25rem;
}

.contact-item-value {
  font-weight: 600;
  color: var(--foam-white);
  word-break: break-all;
}

.contact-form-wrapper {
  background: var(--foam-white);
  border-radius: 16px;
  padding: 2.5rem;
}

.contact-form-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--nav-black);
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--nav-black);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: var(--foam-white);
  color: var(--nav-black);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--ocean-light);
  box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--steel-silver);
}

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

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
}

.form-note {
  font-size: 0.85rem;
  color: var(--steel-silver);
  text-align: center;
  margin-top: 1rem;
}

.map-section {
  height: 450px;
  width: 100%;
}

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

.footer-main {
  background: var(--nav-black);
  padding: 4rem 0 2rem;
  color: var(--steel-silver);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--ocean-light) 0%, var(--rust-warm) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--foam-white);
}

.footer-logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--foam-white);
}

.footer-logo-text span {
  color: var(--ocean-light);
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--foam-white);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: var(--steel-silver);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--rust-warm);
}

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

.footer-copyright {
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal-link {
  font-size: 0.9rem;
  color: var(--steel-silver);
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: var(--rust-warm);
}

.cookie-consent-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 400px;
  background: var(--nav-black);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: block;
}

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

.cookie-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--foam-white);
  margin-bottom: 0.75rem;
}

.cookie-text {
  font-size: 0.9rem;
  color: var(--steel-silver);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
}

.cookie-btn {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--rust-warm) 0%, var(--rust-dark) 100%);
  color: var(--foam-white);
  border: none;
}

.cookie-accept:hover {
  box-shadow: 0 4px 15px rgba(196, 113, 90, 0.3);
}

.cookie-decline {
  background: transparent;
  color: var(--steel-silver);
  border: 1px solid var(--steel-silver);
}

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

.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: var(--ocean-deep);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 42, 74, 0.95) 0%, rgba(26, 82, 118, 0.9) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 100px 0 60px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--ocean-light);
}

.breadcrumb span {
  color: var(--steel-silver);
}

.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--foam-white);
  margin-bottom: 1rem;
}

.page-hero-subtitle {
  font-size: 1.15rem;
  color: var(--steel-bright);
  max-width: 700px;
}

.service-detail-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.service-detail-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-detail-title {
  margin-bottom: 1.5rem;
}

.service-detail-text {
  font-size: 1.1rem;
  color: var(--nav-black);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.service-detail-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--nav-black);
}

.service-feature-icon {
  color: var(--rust-warm);
  font-size: 1.1rem;
}

.service-pricing-card {
  background: var(--ocean-deep);
  border-radius: 12px;
  padding: 2rem;
  color: var(--foam-white);
}

.service-pricing-title {
  color: var(--foam-white);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--rust-warm);
  margin-bottom: 0.5rem;
}

.service-pricing-note {
  font-size: 0.9rem;
  color: var(--steel-silver);
  margin-bottom: 1.5rem;
}

.service-pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.service-pricing-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-pricing-list li:last-child {
  border-bottom: none;
}

.service-pricing-list .check {
  color: var(--success-green);
}

.service-pricing-list .cross {
  color: var(--error-red);
}

.pricing-cta {
  width: 100%;
}

.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--foam-white);
}

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

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--success-green) 0%, #1e5c3a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--foam-white);
  margin: 0 auto 2rem;
}

.thank-you-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.thank-you-text {
  font-size: 1.15rem;
  color: var(--steel-silver);
  margin-bottom: 2rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--nav-black);
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-subtitle {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--ocean-deep);
}

.legal-text {
  color: var(--nav-black);
  line-height: 1.8;
}

.legal-text a {
  color: var(--ocean-mid);
  text-decoration: underline;
}

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

  .about-image-wrapper {
    order: -1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .service-detail-header {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-main {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--nav-black);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transition: right 0.4s ease;
    z-index: 999;
  }

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

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .nav-link {
    font-size: 1.2rem;
    color: var(--foam-white);
  }

  .mobile-menu-btn {
    display: flex;
    z-index: 1000;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .hero-stat-number {
    font-size: 1.75rem;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

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

  .process-timeline {
    padding-left: 2.5rem;
  }

  .process-timeline::before {
    left: 1rem;
  }

  .process-step-number {
    left: -2.25rem;
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .cookie-consent-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }

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

  .contact-form-wrapper {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

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

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

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

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

  .testimonial-card {
    padding: 1.5rem;
  }
}
