


strong, p, h1, h2, h3, h4, h5, h6 {
  color: inherit;
}


:root {
  --ocean-blue-dark: #0a2540;
  --ocean-blue-mid: #1a4066;
  --ocean-blue-light: #2d6aa0;
  --electric-orange: #ff6b35;
  --electric-orange-dark: #e55a2b;
  --metallic-silver: #c0c0c0;
  --metallic-dark: #4a4a4a;
  --pure-white: #ffffff;
  --soft-gray: #f8f9fa;
  --text-dark: #1a1a2e;
  --text-light: #f5f5f5;
}


html {
  scroll-behavior: smooth;
}

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


h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.title-gradient {
  background: linear-gradient(135deg, var(--ocean-blue-dark) 0%, var(--ocean-blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.accent-gradient {
  background: linear-gradient(135deg, var(--electric-orange) 0%, var(--electric-orange-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.navbar {
  background: rgba(10, 37, 64, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand .logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--pure-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand .logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--electric-orange) 0%, var(--electric-orange-dark) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.navbar-menu {
  background: transparent;
}

.navbar-item {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 600;
  padding: 0.5rem 1rem !important;
  border-radius: 6px;
  transition: all 0.2s ease !important;
}

.navbar-item:hover {
  color: var(--pure-white) !important;
  background: rgba(255, 107, 53, 0.15) !important;
}

.navbar-item.is-active {
  color: var(--electric-orange) !important;
}


.navbar-burger {
  color: var(--pure-white) !important;
  background: transparent;
  border: none;
  cursor: pointer;
}

.navbar-burger span {
  background-color: var(--pure-white);
  height: 3px;
  width: 25px;
  transition: all 0.3s ease;
}


.btn-primary {
  background: linear-gradient(135deg, var(--electric-orange) 0%, var(--electric-orange-dark) 100%);
  color: var(--pure-white) !important;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 8px;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  background: linear-gradient(135deg, var(--electric-orange-dark) 0%, var(--electric-orange) 100%);
}

.btn-secondary {
  background: transparent;
  color: var(--ocean-blue-dark) !important;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 8px;
  border: 3px solid var(--ocean-blue-dark);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--ocean-blue-dark);
  color: var(--pure-white) !important;
}

.btn-outline-light {
  background: transparent;
  color: var(--pure-white) !important;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  border-color: var(--electric-orange);
  color: var(--electric-orange) !important;
  background: transparent;
}


.hero-section {
  min-height: 85vh;
  background: linear-gradient(135deg, var(--ocean-blue-dark) 0%, var(--ocean-blue-mid) 50%, var(--ocean-blue-light) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: 50px 50px;
  animation: float 20s linear infinite;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(10, 37, 64, 0.8) 0%, transparent 50%);
}

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

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--pure-white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.7;
}

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

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

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--electric-orange);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

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

.hero-image {
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}


.section-padding {
  padding: 5rem 0;
}

.section-dark {
  background: var(--ocean-blue-dark);
  color: var(--pure-white);
}

.section-light {
  background: var(--soft-gray);
}

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

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--ocean-blue-dark);
}

.section-subtitle {
  font-size: 1.125rem;
  color: #6c757d;
  max-width: 600px;
}


.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-card {
  background: var(--pure-white);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s 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 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--ocean-blue-mid) 0%, var(--ocean-blue-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.3);
}

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

.service-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ocean-blue-dark);
  margin-bottom: 0.75rem;
}

.service-card-description {
  color: #6c757d;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.service-card-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--electric-orange);
}

.service-card-price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: #6c757d;
}


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

.feature-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--pure-white);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--ocean-blue-dark) 0%, var(--ocean-blue-mid) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ocean-blue-dark);
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: #6c757d;
  margin: 0;
}


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

.testimonial-quote {
  font-size: 4rem;
  color: var(--electric-orange);
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.1rem;
  color: #4a4a4a;
  line-height: 1.8;
  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;
  border: 3px solid var(--electric-orange);
}

.testimonial-name {
  font-weight: 800;
  color: var(--ocean-blue-dark);
  font-size: 1rem;
}

.testimonial-role {
  color: #6c757d;
  font-size: 0.875rem;
}


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

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

.team-image {
  height: 280px;
  background: linear-gradient(135deg, var(--ocean-blue-mid) 0%, var(--ocean-blue-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ocean-blue-dark);
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--electric-orange);
  font-weight: 600;
  font-size: 0.875rem;
}


.contact-info-card {
  background: var(--pure-white);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--ocean-blue-dark) 0%, var(--ocean-blue-mid) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-weight: 800;
  color: var(--ocean-blue-dark);
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: #6c757d;
  margin: 0;
}

.contact-details a {
  color: var(--electric-orange);
  text-decoration: none;
}


.contact-form {
  background: var(--pure-white);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.form-label {
  display: block;
  font-weight: 700;
  color: var(--ocean-blue-dark);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--pure-white);
}

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

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


.faq-item {
  background: var(--pure-white);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--electric-orange);
  transition: transform 0.3s ease;
}

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

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

.faq-answer-content {
  padding: 0 2rem 1.5rem;
  color: #6c757d;
  line-height: 1.7;
}


.footer-section {
  background: var(--ocean-blue-dark);
  color: var(--pure-white);
  padding: 4rem 0 2rem;
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-logo {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--pure-white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 300px;
}

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

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}


.cookie-consent-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 500px;
  background: var(--pure-white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: block;
}

.cookie-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ocean-blue-dark);
  margin-bottom: 0.75rem;
}

.cookie-text {
  color: #6c757d;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.cookie-btn {
  flex: 1;
  min-width: 120px;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--electric-orange) 0%, var(--electric-orange-dark) 100%);
  color: var(--pure-white);
}

.cookie-btn-accept:hover {
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--ocean-blue-dark);
  border: 2px solid var(--ocean-blue-dark);
}

.cookie-btn-decline:hover {
  background: var(--ocean-blue-dark);
  color: var(--pure-white);
}


.page-header {
  background: linear-gradient(135deg, var(--ocean-blue-dark) 0%, var(--ocean-blue-mid) 100%);
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--electric-orange);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}

.page-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--pure-white);
  margin-bottom: 1rem;
}

.page-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}


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

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--ocean-blue-mid) 0%, var(--ocean-blue-dark) 100%);
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(10, 37, 64, 0.95) 0%, transparent 100%);
  color: var(--pure-white);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-title {
  font-weight: 800;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.gallery-category {
  font-size: 0.875rem;
  color: var(--electric-orange);
}


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

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--electric-orange) 0%, var(--electric-orange-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--pure-white);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 2.5rem;
  right: -10%;
  width: 20%;
  height: 3px;
  background: linear-gradient(to right, var(--electric-orange) 0%, transparent 100%);
}

.process-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ocean-blue-dark);
  margin-bottom: 0.75rem;
}

.process-description {
  color: #6c757d;
  font-size: 0.95rem;
}


.legal-content {
  background: var(--pure-white);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ocean-blue-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0;
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content p {
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.legal-content li {
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}


.thank-you-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ocean-blue-dark) 0%, var(--ocean-blue-mid) 100%);
  text-align: center;
  padding: 4rem 0;
}

.thank-you-content {
  background: var(--pure-white);
  border-radius: 20px;
  padding: 4rem;
  max-width: 600px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.thank-you-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--ocean-blue-dark);
  margin-bottom: 1rem;
}

.thank-you-text {
  color: #6c757d;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}


@keyframes float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50px); }
}

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

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}


@media screen and (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 4rem 0;
  }
  
  .hero-stats {
    justify-content: center;
    gap: 2rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image-container {
    margin-top: 2rem;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .process-step::after {
    display: none;
  }
  
  .cookie-consent-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
  
  .footer-section {
    padding: 3rem 0 1.5rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}


.navbar-menu.is-active {
  display: block;
}

@media screen and (min-width: 769px) {
  .navbar-menu {
    display: flex;
  }
  
  .navbar-burger {
    display: none;
  }
}


.text-ocean-blue {
  color: var(--ocean-blue-dark);
}

.text-electric-orange {
  color: var(--electric-orange);
}

.bg-ocean-blue {
  background-color: var(--ocean-blue-dark);
}

.bg-electric-orange {
  background-color: var(--electric-orange);
}

.has-gradient-text {
  background: linear-gradient(135deg, var(--ocean-blue-dark) 0%, var(--electric-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  height: 400px;
}

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


.cta-section {
  background: linear-gradient(135deg, var(--ocean-blue-dark) 0%, var(--ocean-blue-mid) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--pure-white);
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


.service-tag {
  display: inline-block;
  background: rgba(255, 107, 53, 0.1);
  color: var(--electric-orange);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}


.rating-stars {
  color: var(--electric-orange);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}


.image-placeholder {
  background: linear-gradient(135deg, var(--ocean-blue-mid) 0%, var(--ocean-blue-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.2);
  font-size: 3rem;
}