:root {
  --navy: #081b33;
  --navy-dark: #051126;
  --teal: #21b6ad;
  --teal-light: #6fdac8;
  --sky: #e7f3ff;
  --muted: #5e6673;
  --border: #e1e6ef;
  --card: #ffffff;
  font-family: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #f8fbff 0%, #f2f5fb 40%, #ffffff 100%);
  color: var(--navy);
  position: relative;
}

/* Subtle animated background pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(33, 182, 173, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(143, 216, 255, 0.06) 0%, transparent 50%);
  z-index: -1;
  animation: bodyBackgroundMove 30s ease-in-out infinite;
  pointer-events: none;
}

@keyframes bodyBackgroundMove {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(-20px) scale(1.05);
    opacity: 0.8;
  }
}

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

.top-bar {
  background: var(--navy-dark);
  color: #c5d3ef;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.9rem;
}

.site-header,
main,
.site-footer {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  gap: 24px;
}

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

.logo-link {
  display: inline-block;
  transition: transform 0.2s ease;
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.brand strong {
  display: block;
  font-size: 1.1rem;
}

.brand span {
  font-size: 0.9rem;
  color: var(--muted);
}

.main-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  font-weight: 600;
}

.main-nav a {
  color: var(--navy);
}

.btn {
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.full {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.btn.solid {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--navy-dark);
}

.btn.outline {
  border-color: var(--navy);
  color: var(--navy);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--navy);
  background: #ffffff;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(5, 17, 38, 0.12);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 12px;
}

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

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 40px 0 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Ensure hero content is above carousel */
.hero > * {
  position: relative;
  z-index: 5;
}

/* Dynamic Background Images for Hero - Now using carousel */

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(33, 182, 173, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: float 8s ease-in-out infinite;
}

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

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  margin-top: 0;
}

.lede {
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  align-items: stretch;
}

.hero-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.hero-stats li {
  background: var(--card);
  border-radius: 18px;
  padding: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 6px 20px rgba(12, 37, 71, 0.08);
}

.hero-review {
  background: var(--card);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(8, 27, 51, 0.1);
}

.hero-media {
  position: relative;
  overflow: hidden;
  z-index: 5;
}

/* Old background animation removed - now using carousel */

.hero-media img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(5, 17, 38, 0.25);
  position: relative;
  z-index: 1;
  transition: transform 0.6s ease;
}

.hero-card {
  position: absolute;
  bottom: -30px;
  right: 20px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  width: min(320px, 70%);
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(5, 17, 38, 0.15);
}

.text-link {
  color: var(--teal);
  font-weight: 600;
}

.about,
.services,
.insights,
.testimonials,
.newsletter,
.contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 50%, #f0f5ff 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(33, 182, 173, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: #ffffff;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 20px rgba(8, 27, 51, 0.06);
}

.contact-method:hover {
  border-color: var(--teal);
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(33, 182, 173, 0.15);
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-icon.phone {
  background: linear-gradient(135deg, rgba(33, 182, 173, 0.15), rgba(33, 182, 173, 0.25));
  color: var(--teal);
}

.contact-icon.email {
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.15), rgba(108, 99, 255, 0.25));
  color: var(--accent-2);
}

.contact-icon.location {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 107, 107, 0.25));
  color: #ff6b6b;
}

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

.contact-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-details h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--navy);
}

.contact-details p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-action {
  font-size: 0.85rem;
  color: var(--teal);
  font-weight: 600;
  margin-top: 4px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.contact-method:hover .contact-action {
  opacity: 1;
  transform: translateX(0);
}

.contact-form-wrapper {
  background: #ffffff;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(8, 27, 51, 0.12);
  border: 1px solid var(--border);
}

.contact-form-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--border);
}

.contact-form-header h3 {
  margin: 0 0 8px;
  font-size: 1.6rem;
  color: var(--navy);
}

.contact-form-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px 16px;
  border-radius: 12px;
  border: 2px solid var(--border);
  font-size: 0.95rem;
  transition: all 0.2s ease;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(33, 182, 173, 0.1);
}

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

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  margin: 0;
}

/* Dynamic Background for About Section */
section#about.about {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

section#about.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20%;
  width: 800px;
  height: 800px;
  background-image: 
    url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1200&q=80'),
    url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
  border-radius: 50%;
  animation: slideBackground 16s ease-in-out infinite;
  filter: blur(4px);
}

@keyframes slideBackground {
  0%, 100% {
    transform: translateX(0) translateY(0);
    background-image: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1200&q=80');
  }
  50% {
    transform: translateX(100px) translateY(-50px);
    background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1200&q=80');
  }
}

section#about.about > * {
  position: relative;
  z-index: 1;
}

/* Dynamic Background for Services Section */
section#services.services {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

section#services.services::before {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -15%;
  width: 700px;
  height: 700px;
  background-image: 
    url('https://images.unsplash.com/photo-1553877522-43269d4ea984?auto=format&fit=crop&w=1200&q=80'),
    url('https://images.unsplash.com/photo-1529333166437-7750a6dd5a70?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  z-index: 0;
  border-radius: 50%;
  animation: pulseBackground 14s ease-in-out infinite;
  filter: blur(3px);
}

@keyframes pulseBackground {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    background-image: url('https://images.unsplash.com/photo-1553877522-43269d4ea984?auto=format&fit=crop&w=1200&q=80');
    opacity: 0.06;
  }
  50% {
    transform: scale(1.2) rotate(180deg);
    background-image: url('https://images.unsplash.com/photo-1529333166437-7750a6dd5a70?auto=format&fit=crop&w=1200&q=80');
    opacity: 0.08;
  }
}

section#services.services > * {
  position: relative;
  z-index: 1;
}

.about-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.about-grid article,
.service-grid article {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(8, 27, 51, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 8px;
}

.service-image {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 16px;
}

.booking-shell {
  margin: 24px 0 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  background: #ffffff;
  border-radius: 32px;
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(8, 27, 51, 0.1);
}

.booking-form {
  display: grid;
  gap: 16px;
}

.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
}

.booking-form select,
.booking-form input,
.booking-form textarea {
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 12px;
  background: var(--sky);
}

.booking-form textarea {
  resize: vertical;
}

.badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.badges span {
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.mini-note {
  color: var(--muted);
  font-size: 0.85rem;
}

.availability {
  padding: 32px 0 56px;
  position: relative;
  overflow: hidden;
}

/* Dynamic Background for Availability */
.availability::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    url('https://images.unsplash.com/photo-1553877522-43269d4ea984?auto=format&fit=crop&w=1920&q=80'),
    url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.04;
  z-index: 0;
  animation: parallaxBackground 18s ease-in-out infinite;
  filter: blur(2px);
}

@keyframes parallaxBackground {
  0%, 100% {
    background-position: 0% 50%;
    background-image: url('https://images.unsplash.com/photo-1553877522-43269d4ea984?auto=format&fit=crop&w=1920&q=80');
  }
  50% {
    background-position: 100% 50%;
    background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1920&q=80');
  }
}

.availability > * {
  position: relative;
  z-index: 1;
}

.availability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.availability-grid article {
  background: var(--card);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 20px;
  box-shadow: 0 10px 30px rgba(8, 27, 51, 0.08);
}

.premium-offerings {
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  position: relative;
  overflow: hidden;
}

/* Dynamic Background for Premium Offerings */
.premium-offerings::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    url('https://images.unsplash.com/photo-1454165205744-3b78555e5572?auto=format&fit=crop&w=1920&q=80'),
    url('https://images.unsplash.com/photo-1556761175-4b46a572b786?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.06;
  z-index: 0;
  animation: backgroundFade 15s ease-in-out infinite;
  filter: blur(2px);
}

@keyframes backgroundFade {
  0%, 100% {
    background-image: url('https://images.unsplash.com/photo-1454165205744-3b78555e5572?auto=format&fit=crop&w=1920&q=80');
    opacity: 0.06;
  }
  50% {
    background-image: url('https://images.unsplash.com/photo-1556761175-4b46a572b786?auto=format&fit=crop&w=1920&q=80');
    opacity: 0.08;
  }
}

.premium-offerings > * {
  position: relative;
  z-index: 1;
}

.premium-header {
  margin-bottom: 40px;
}

.premium-header p {
  max-width: 600px;
  margin: 12px auto 0;
  color: var(--muted);
}

.premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.premium-card {
  background: var(--card);
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(8, 27, 51, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.premium-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(8, 27, 51, 0.18);
}

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

.premium-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.premium-content h3 {
  margin: 0;
  font-size: 1.4rem;
}

.premium-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.premium-content ul li {
  padding-left: 20px;
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
}

.premium-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.premium-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 8px;
}

.insights {
  background: #f5f8ff;
  border-radius: 32px;
  padding: 60px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

/* Dynamic Background for Insights */
.insights::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background-image: url('https://images.unsplash.com/photo-1529333166437-7750a6dd5a70?auto=format&fit=crop&w=800&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
  border-radius: 50%;
  animation: rotateBackground 20s linear infinite;
  filter: blur(3px);
}

@keyframes rotateBackground {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

.insights > * {
  position: relative;
  z-index: 1;
}

.insights-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.insights-grid article {
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sky);
  color: var(--navy);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sky);
  font-size: 0.85rem;
  font-weight: 600;
}

.pill.warning {
  color: #ff9800;
}

.pill.danger {
  color: #f05454;
}

.pill.ghost {
  color: var(--muted);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.testimonial-grid figure {
  background: var(--card);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 14px 30px rgba(9, 22, 44, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(8, 27, 51, 0.35);
}

.testimonial-highlight {
  text-align: center;
  margin-bottom: 24px;
}

.testimonial-highlight strong {
  font-size: 3rem;
  display: block;
  color: var(--teal);
}

.events {
  padding: 52px 0;
}

.events-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.events-grid article {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(8, 27, 51, 0.08);
}

.automation {
  padding: 52px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: start;
}

.automation-copy ul {
  padding-left: 18px;
  color: var(--muted);
}

.automation-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(8, 27, 51, 0.08);
}

blockquote {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--navy-dark);
}

.newsletter {
  background: linear-gradient(135deg, #0c1f3f, #14305d);
  color: #f0f5ff;
  border-radius: 32px;
  padding: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

input,
button,
textarea {
  font: inherit;
}

input[type="email"] {
  padding: 14px 16px;
  border-radius: 999px;
  border: none;
  min-width: 260px;
}


.feedback-collection {
  padding: 60px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin: 40px 0;
}

.feedback-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 20px;
}

.feedback-card {
  background: var(--card);
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 32px;
  box-shadow: 0 16px 40px rgba(8, 27, 51, 0.1);
}

.feedback-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feedback-card ul li {
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}

.feedback-card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.clients {
  padding: 60px 0;
  background: #f5f8ff;
  border-radius: 32px;
  margin: 40px 0;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.client-logo {
  background: var(--card);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 18px 20px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px rgba(8, 27, 51, 0.08);
}

.client-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(8, 27, 51, 0.12);
}

.client-logo strong {
  font-size: 1.2rem;
  color: var(--navy);
  display: block;
}

.client-logo span {
  font-size: 0.85rem;
  color: var(--muted);
}

.client-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 10px 24px rgba(8, 27, 51, 0.18);
}

.social-media {
  padding: 60px 0;
  background: linear-gradient(135deg, #0c1f3f, #14305d);
  color: #f0f5ff;
  border-radius: 32px;
  margin: 40px 0;
}

.social-header {
  margin-bottom: 32px;
}

.social-header h2 {
  color: #f0f5ff;
  max-width: 600px;
  margin: 12px auto 0;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f0f5ff;
  transition: all 0.2s ease;
  text-decoration: none;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-link svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.social-note {
  text-align: center;
  color: rgba(240, 245, 255, 0.8);
  font-size: 0.95rem;
  margin-top: 16px;
}

.chat-launcher {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
}

.chat-launcher img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.chat-panel {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: min(360px, 90vw);
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(8, 27, 51, 0.25);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1000;
}

.chat-panel.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

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

.chat-panel header button {
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--navy);
}

.chat-messages {
  max-height: 260px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-message {
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.95rem;
  line-height: 1.4;
  width: fit-content;
  max-width: 90%;
}

.chat-message.user {
  background: var(--teal);
  color: var(--navy-dark);
  margin-left: auto;
}

.chat-message.bot {
  background: var(--sky);
  color: var(--navy);
}

.chat-form {
  display: flex;
  gap: 8px;
}

.chat-form input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 10px 14px;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0 60px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 600;
}

@media (max-width: 960px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .insights {
    padding: 32px;
  }

  .newsletter {
    padding: 32px;
  }

  .chat-panel {
    bottom: 90px;
    right: 16px;
  }

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

  .contact-method {
    padding: 20px;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
  }

  .chat-launcher {
    right: 16px;
    bottom: 16px;
  }
}

/* Image Gallery Section */
.image-gallery {
  background: linear-gradient(180deg, var(--navy-deep), var(--navy-soft));
  padding: 110px 0;
}

.gallery-header {
  width: min(900px, 90vw);
  margin: 0 auto 50px;
  text-align: center;
}

.gallery-grid {
  width: min(1200px, 90vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(63, 224, 197, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(2, 12, 27, 0.95), transparent);
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.gallery-overlay p {
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
}

/* Enhanced Image Styling */
.about-image,
.service-image,
.premium-image {
  transition: transform 0.4s ease, filter 0.3s ease;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.about-grid article:hover .about-image,
.service-grid article:hover .service-image,
.premium-card:hover .premium-image {
  transform: scale(1.05);
  filter: brightness(1.1) contrast(1.05);
}

/* Image with gradient overlay */
.service-image,
.premium-image {
  position: relative;
}

.service-image::after,
.premium-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(63, 224, 197, 0.1), rgba(143, 216, 255, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-grid article:hover .service-image::after,
.premium-card:hover .premium-image::after {
  opacity: 1;
}

/* Chat Loading State */
.chat-message.loading {
  animation: pulse 1.5s ease-in-out infinite;
  opacity: 0.7;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

/* Enhanced Hero Image */
.hero-media img {
  transition: transform 0.6s ease;
}

.hero:hover .hero-media img {
  transform: scale(1.02);
}

/* Image Border Effects */
.about-grid article,
.service-grid article,
.premium-card {
  position: relative;
  overflow: hidden;
}

.about-grid article::before,
.service-grid article::before,
.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid var(--teal);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.about-grid article:hover::before,
.service-grid article:hover::before,
.premium-card:hover::before {
  opacity: 0.5;
}
