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

:root {
  --primary-color: #1EAEAE;
  --primary-dark: #158787;
  --primary-light: #E0F7F7;
  --secondary-color: #2C5F6F;
  --text-dark: #1A2332;
  --text-gray: #6B7280;
  --white: #FFFFFF;
  --light-gray: #F9FAFB;
  --border-color: #E5E7EB;
  --error-color: #DC2626;
  --success-color: #059669;
}

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

/* Loading mechanism styles */
.dynamic-content {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}
.dynamic-content.loaded {
    opacity: 1;
}

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

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.3s, visibility 0.3s;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--primary-light);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.top-bar {
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 14px 0;
  font-size: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s;
}

.top-bar-item:hover {
  opacity: 0.8;
}

.top-bar-item svg {
  flex-shrink: 0;
}

.header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  position: relative;
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
}

.nav-cta {
  background: var(--primary-color);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 25px;
  transition: all 0.3s;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.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(--text-dark);
  transition: all 0.3s;
  border-radius: 2px;
}

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

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

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

.hero {
  position: relative;
  min-height: 750px;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://storage.googleapis.com/campaign-website-images/10028/pexels-photo-5327585.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 174, 174, 0.94) 0%, rgba(21, 135, 135, 0.90) 50%, rgba(44, 95, 111, 0.92) 100%);
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -2px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 32px;
  line-height: 1.7;
  opacity: 0.95;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.hero-features {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
}

.hero-feature svg {
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--primary-color);
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--white);
  letter-spacing: 0.5px;
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

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

.quick-quote-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-quote-card h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.quick-quote-card > p {
  color: var(--text-gray);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  flex-direction: column;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
  padding: 16px 20px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s;
  background: var(--white);
  color: var(--text-dark);
}

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

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

.hero-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.btn-form-submit {
  background: var(--primary-color);
  color: var(--white);
  padding: 18px 32px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(30, 174, 174, 0.3);
}

.btn-form-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 174, 174, 0.4);
}

.checkbox-row {
  margin: 8px 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
}

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

.checkbox-label span {
  flex: 1;
}

.checkbox-label a {
  color: var(--primary-color);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.privacy-line {
  display: block;
  margin-top: 8px;
}

.consent-error {
  display: none;
  color: var(--error-color);
  font-size: 13px;
  margin-top: 8px;
  padding-left: 28px;
}

.consent-error.show {
  display: block;
}

.form-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-gray);
  margin-top: 4px;
}

.form-note svg {
  color: var(--primary-color);
  flex-shrink: 0;
}

.stats-banner {
  padding: 60px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
}

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

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--light-gray);
  border-radius: 16px;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.stat-item:hover {
  background: var(--white);
  border-color: var(--primary-light);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(30, 174, 174, 0.1);
}

.stat-icon {
  color: var(--primary-color);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-label {
  display: block;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-align: center;
}

.welcome-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
}

.welcome-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.welcome-text h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 24px;
}

.welcome-text p {
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 16px;
}

.welcome-form {
  background: var(--white);
  padding: 45px;
  border-radius: 24px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(30, 174, 174, 0.1);
  transition: all 0.3s;
}

.welcome-form:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.welcome-form h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.form-subtitle {
  color: var(--text-gray);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.5;
}

.features-list {
  margin-top: 32px;
  display: grid;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dark);
  font-weight: 500;
}

.feature-item svg {
  color: var(--primary-color);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s;
  background: var(--white);
}

.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 var(--primary-light);
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: var(--error-color);
}

.error-message {
  display: none;
  color: var(--error-color);
  font-size: 13px;
  margin-top: 6px;
}

.form-group.error .error-message {
  display: block;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  cursor: pointer;
}

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

.checkbox-group {
  margin: 24px 0;
}

.checkbox-group .checkbox-label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  cursor: pointer;
  align-items: start;
}

.checkbox-group .checkbox-column {
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
}

.checkbox-group .checkbox-column input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--primary-color);
  flex-shrink: 0;
  margin: 0;
}

.checkbox-group .text-column {
  flex: 1;
}

.checkbox-group .checkbox-text {
  display: block;
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
}

.checkbox-group .checkbox-text a {
  color: var(--primary-color);
  text-decoration: none;
}

.checkbox-group .checkbox-text a:hover {
  text-decoration: underline;
}

.checkbox-group .checkmark {
  display: none;
}

.btn-submit {
  width: 100%;
  background: var(--primary-color);
  color: var(--white);
  padding: 16px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
}

.btn-submit:hover:not(:disabled) {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(30, 174, 174, 0.3);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-submit .btn-loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

.btn-submit.loading .btn-text {
  display: none;
}

.btn-submit.loading .btn-loader {
  display: block;
}

.services-section {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}

.section-title {
  font-size: 52px;
  font-weight: 800;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -1px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  margin: 20px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  font-size: 19px;
  color: var(--text-gray);
  margin-bottom: 70px;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.service-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(30, 174, 174, 0.15);
  border-color: var(--primary-light);
}

.service-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-color);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover .service-image::after {
  opacity: 1;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

.service-features {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.service-features li {
  padding: 8px 0;
  color: var(--text-gray);
  position: relative;
  padding-left: 24px;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.service-content {
  padding: 32px;
}

/* Modern Card Styles */
.services-grid.modern-cards {
  gap: 30px;
}

.service-card.modern {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
}

.service-card.modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: #e0e0e0;
}

.card-image-wrapper {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
  background: #f8f9fa;
}

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

.service-card.modern:hover .card-image-wrapper img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card.modern:hover .card-overlay {
  opacity: 1;
}

.card-body {
  padding: 32px;
  background: #ffffff;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 14px;
  line-height: 1.3;
}

.card-body p {
  font-size: 15px;
  line-height: 1.7;
  color: #666666;
  margin: 0;
}

.service-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.service-content p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 24px;
}

.btn-learn-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: all 0.3s;
}

.btn-learn-more::after {
  content: '→';
  margin-left: 8px;
  transition: margin-left 0.3s;
}

.btn-learn-more:hover {
  color: var(--primary-dark);
}

.btn-learn-more:hover::after {
  margin-left: 14px;
}

.why-choose-section {
  padding: 100px 0;
  background: var(--light-gray);
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(30, 174, 174, 0.15);
  border-color: var(--primary-light);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s;
}

.why-card:hover .why-icon {
  background: var(--primary-color);
  transform: scale(1.1);
}

.why-icon svg {
  color: var(--primary-color);
  width: 28px;
  height: 28px;
}

.why-card:hover .why-icon svg {
  color: var(--white);
}

.why-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.why-card p {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 15px;
}

.about-section {
  padding: 100px 0;
  background: var(--white);
}

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

.about-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 174, 174, 0.1) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-content p {
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 16px;
}

.btn-outline {
  display: inline-block;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 14px 32px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  margin-top: 12px;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(30, 174, 174, 0.3);
}

.how-it-works-section {
  padding: 100px 0;
  background: var(--light-gray);
}

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

.step-card {
  background: var(--white);
  padding: 50px 40px;
  border-radius: 24px;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--border-color);
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(30, 174, 174, 0.15);
  border-color: var(--primary-color);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(30, 174, 174, 0.25);
}

.step-icon {
  color: var(--primary-color);
  margin: 30px 0 20px;
}

.step-card h3 {
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-weight: 700;
}

.step-card p {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 15px;
}

.clients-section {
  padding: 100px 0;
  background: var(--white);
}

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

.client-card {
  background: var(--light-gray);
  padding: 45px 36px;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid transparent;
}

.client-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(30, 174, 174, 0.12);
  background: var(--white);
  border-color: var(--primary-light);
}

.client-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.client-rating svg {
  color: #FDB022;
}

.quote-icon {
  color: var(--primary-color);
  margin-bottom: 20px;
  opacity: 0.6;
}

.client-quote {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 15px;
  font-style: italic;
}

.client-info {
  border-top: 2px solid var(--border-color);
  padding-top: 20px;
}

.client-info strong {
  color: var(--text-dark);
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
}

.client-info span {
  color: var(--text-gray);
  font-size: 14px;
}

.faq-section {
  padding: 100px 0;
  background: var(--light-gray);
}

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

.faq-item {
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-color);
}

.faq-question {
  padding: 28px 32px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  user-select: none;
}

.faq-question h3 {
  font-size: 18px;
  color: var(--text-dark);
  font-weight: 600;
  margin: 0;
}

.faq-question svg {
  color: var(--primary-color);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 32px 28px;
}

.faq-answer p {
  color: var(--text-gray);
  line-height: 1.8;
  margin: 0;
}

.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #1EAEAE 0%, #158787 50%, #2C5F6F 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 32px;
  opacity: 0.95;
}

.btn-cta {
  display: inline-block;
  background: var(--white);
  color: var(--primary-color);
  padding: 18px 48px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s;
  border: 2px solid var(--white);
}

.btn-cta:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.footer-description {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-column ul {
  list-style: none;
}

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

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
  display: inline-block;
}

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

.contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.contact-list svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}

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

.separator {
  color: rgba(255, 255, 255, 0.3);
}

.toast {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-dark);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  transition: bottom 0.3s;
  max-width: 90%;
  text-align: center;
}

.toast.show {
  bottom: 30px;
}

.toast.success {
  background: var(--success-color);
}

.toast.error {
  background: var(--error-color);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

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

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.page-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 80px 0 60px;
  text-align: center;
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
}

.content-section {
  padding: 80px 0;
  background: var(--white);
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 40px 0 20px;
}

.content-wrapper h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 30px 0 16px;
}

.content-wrapper p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-wrapper a {
  color: var(--primary-color);
  text-decoration: none;
}

.content-wrapper a:hover {
  text-decoration: underline;
}

.contact-info-section {
  padding: 60px 0;
  background: var(--white);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.contact-info-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--light-gray);
  border-radius: 20px;
  transition: all 0.3s;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  background: var(--white);
}

.contact-info-icon {
  color: var(--primary-color);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.contact-info-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.contact-info-card p {
  color: var(--text-gray);
  line-height: 1.8;
}

.contact-info-card a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s;
}

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

.contact-form-section {
  padding: 80px 0;
  background: var(--light-gray);
}

.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-form-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.contact-form-header p {
  color: var(--text-gray);
  font-size: 16px;
}

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

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

.contact-form .required {
  color: var(--error-color);
}

.business-hours-section {
  padding: 60px 0;
  background: var(--white);
}

.business-hours-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.business-hours-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 32px;
}

.hours-grid {
  display: grid;
  gap: 20px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background: var(--light-gray);
  border-radius: 10px;
  font-size: 16px;
}

.hours-item .day {
  font-weight: 600;
  color: var(--text-dark);
}

.hours-item .time {
  color: var(--text-gray);
}

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

  .nav-menu {
    position: fixed;
    top: 73px;
    left: -100%;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: left 0.3s;
    gap: 20px;
    align-items: flex-start;
  }

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

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

  .hero-card {
    order: 2;
  }

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

  .hero-subtitle {
    font-size: 17px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 16px 32px;
    font-size: 15px;
  }

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

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

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

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

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

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

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

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

  .footer-links-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 80px 0 60px;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-features {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 15px;
  }

  .hero-title {
    font-size: 36px;
    letter-spacing: -1.5px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 8px 16px;
  }

  .quick-quote-card {
    padding: 28px 20px;
  }

  .quick-quote-card h3 {
    font-size: 24px;
  }

  .section-title {
    font-size: 36px;
  }

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

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

  .welcome-text h2 {
    font-size: 32px;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .cta-content h2 {
    font-size: 36px;
  }

  .welcome-form {
    padding: 24px;
  }

  .stat-number {
    font-size: 28px;
  }

  .top-bar-content {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
