/*
Theme Name: Locstaypro
Theme URI: https://locstaypro.fr/
Author: Locstaypro
Author URI: https://locstaypro.fr/
Description: Thème vitrine premium pour conciergerie Locstaypro — gestion locative courte durée.
Version: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: locstaypro
*/

/* =============================
   CSS Variables & Base Styles
   ============================= */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --radius: 1rem;

  --navy: #1a3a5c;
  --sky: #5cbdb9;
  --sky-soft: #bfe2ec;
  --sky-tint: #eef7fa;
  --primary: #2BA8C8;
  --primary-dark: #107faa;

  --background: #ffffff;
  --foreground: #1a3a5c;

  --card: #ffffff;
  --card-foreground: #1a3a5c;

  --muted: #f5f9fb;
  --muted-foreground: #6b7f8e;

  --accent: #e8f4f8;
  --accent-foreground: #1a3a5c;

  --border: #d4e8f0;
  --input: #d4e8f0;
  --ring: #5cbdb9;

  --gradient-hero: linear-gradient(180deg, #eef7fa 0%, #eef7fa 60%, #ffffff 100%);
  --gradient-primary: linear-gradient(135deg, #5cbdb9, #2BA8C8);
  --gradient-navy: linear-gradient(135deg, #1a3a5c, #2a4a6e);
  --shadow-soft: 0 10px 40px -15px rgba(44, 168, 200, 0.30);
  --shadow-card: 0 4px 20px -8px rgba(44, 168, 200, 0.20);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', system-ui, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

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

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

/* =============================
   Utilities
   ============================= */

.container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.text-gradient-primary {
  background-image: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bg-gradient-hero { background-image: var(--gradient-hero); }
.bg-gradient-primary { background-image: var(--gradient-primary); }
.bg-gradient-navy { background-image: var(--gradient-navy); }

.shadow-soft { box-shadow: var(--shadow-soft); }
.shadow-card { box-shadow: var(--shadow-card); }

/* =============================
   Header
   ============================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  background: transparent;
}

.site-header.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  padding: 0.75rem 0;
}

@media (min-width: 640px) {
  .header-inner {
    height: 6rem;
  }
}

.logo-img {
  height: 64px;
  width: auto;
  transition: transform 0.3s ease;
}

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

.logo-img--light {
  filter: brightness(0) invert(1);
}

@media (min-width: 640px) {
  .logo-img {
    height: 80px;
  }
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
}

.desktop-nav a {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(26,58,92,0.8);
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--primary);
  background: var(--sky-tint);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-image: var(--gradient-primary);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  opacity: 0.95;
  box-shadow: 0 10px 30px -10px rgba(44,168,200,0.5);
}

.mobile-toggle {
  display: block;
  padding: 0.5rem;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-nav {
  display: none;
  padding-bottom: 1rem;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 0.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.mobile-nav-inner a {
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(26,58,92,0.8);
  transition: all 0.2s ease;
}

.mobile-nav-inner a:hover {
  background: var(--sky-tint);
  color: var(--primary);
}

/* =============================
   Hero
   ============================= */

.hero {
  position: relative;
  padding-top: 9rem;
  padding-bottom: 7rem;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: var(--gradient-hero);
}

@media (min-width: 640px) {
  .hero {
    padding-top: 11rem;
    padding-bottom: 8rem;
    min-height: 0;
  }
}

.hero-blur-1 {
  position: absolute;
  top: -6rem;
  left: -6rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(92,189,185,0.3);
  filter: blur(80px);
  pointer-events: none;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(238,247,250,0.55) 0%, rgba(255,255,255,0.85) 100%);
}

.hero-blur-2 {
  position: absolute;
  top: 33%;
  right: -8rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(43,168,200,0.2);
  filter: blur(80px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}

.hero-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

@media (min-width: 640px) {
  .hero-tag {
    font-size: 1rem;
  }
}

.hero-title {
  margin-top: 1rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.05;
}

@media (min-width: 640px) {
  .hero-title {
    margin-top: 1.5rem;
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(26,58,92,0.8);
}

@media (min-width: 640px) {
  .hero-subtitle {
    margin-top: 1.25rem;
    font-size: 1.5rem;
  }
}

.hero-stats {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .hero-stats {
    margin-top: 3rem;
    gap: 1.5rem;
  }
}

.hero-stat {
  border-radius: 1rem;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--sky-soft);
  padding: 1rem 0.75rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}

@media (min-width: 640px) {
  .hero-stat {
    border-radius: 1.5rem;
    padding: 1.5rem 1.25rem;
  }
}

.hero-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  background-image: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (min-width: 640px) {
  .hero-stat-value {
    font-size: 2.25rem;
  }
}

.hero-stat-label {
  margin-top: 0.25rem;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  line-height: 1.3;
}

@media (min-width: 640px) {
  .hero-stat-label {
    font-size: 0.75rem;
  }
}

.hero-buttons {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    margin-top: 2.5rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: none;
    padding: 0;
  }
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--sky-soft);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  transition: all 0.2s ease;
}

@media (min-width: 640px) {
  .btn-secondary {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
}

.btn-secondary:hover {
  background: white;
}

/* =============================
   Section Headers
   ============================= */

.section-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  margin-top: 0.75rem;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
}

@media (min-width: 640px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-desc {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* =============================
   Services
   ============================= */

.services {
  padding: 6rem 0;
  background: var(--sky-tint);
}

.services-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 4rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  position: relative;
  background: white;
  border-radius: 1.5rem;
  padding: 1.25rem;
  border: 1px solid var(--sky-soft);
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .service-card {
    padding: 1.75rem;
  }
}

.service-card:hover {
  border-color: var(--sky);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.service-number {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 3rem;
  font-weight: 700;
  color: var(--sky-tint);
  line-height: 1;
  transition: color 0.3s ease;
}

.service-card:hover .service-number {
  color: var(--sky-soft);
}

.service-icon {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 1rem;
  background-image: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 640px) {
  .service-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1.25rem;
  }
}

.service-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: white;
}

@media (min-width: 640px) {
  .service-icon svg {
    width: 1.75rem;
    height: 1.75rem;
  }
}

.service-title {
  position: relative;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

@media (min-width: 640px) {
  .service-title {
    margin-top: 1.25rem;
    font-size: 1.25rem;
  }
}

.service-text {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

@media (min-width: 640px) {
  .service-text {
    margin-top: 0.75rem;
    font-size: 0.875rem;
  }
}

/* =============================
   Advantages
   ============================= */

.advantages {
  padding: 6rem 0 10rem;
  background: var(--background);
  overflow: hidden;
}

.advantages-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 4rem;
}

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

.advantage-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: 1rem;
  background: var(--sky-tint);
  border: 1px solid var(--sky-soft);
  padding: 1rem;
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .advantage-card {
    gap: 1.5rem;
    border-radius: 1.5rem;
    padding: 1.75rem;
  }
}

.advantage-card:hover {
  box-shadow: var(--shadow-soft);
  border-color: var(--sky);
  transform: translateY(-2px);
}

.advantage-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background-image: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}

@media (min-width: 640px) {
  .advantage-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
  }
}

.advantage-card:hover .advantage-icon {
  transform: scale(1.05);
}

.advantage-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: white;
}

@media (min-width: 640px) {
  .advantage-icon svg {
    width: 1.75rem;
    height: 1.75rem;
  }
}

.advantage-content {
  flex: 1;
  padding-top: 0.125rem;
}

@media (min-width: 640px) {
  .advantage-content {
    padding-top: 0.25rem;
  }
}

.advantage-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

@media (min-width: 640px) {
  .advantage-title {
    font-size: 1.5rem;
  }
}

.advantage-text {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

@media (min-width: 640px) {
  .advantage-text {
    margin-top: 0.5rem;
    font-size: 1rem;
  }
}

/* =============================
   Process
   ============================= */

.process {
  padding: 6rem 0;
  background: var(--sky-tint);
}

.process-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 4rem;
}

@media (min-width: 640px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-card {
  position: relative;
  background: white;
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--sky-soft);
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .process-card {
    padding: 2rem;
  }
}

.process-card:hover {
  box-shadow: var(--shadow-soft);
}

.process-step {
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-image: var(--gradient-primary);
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.process-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: var(--sky-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.process-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.process-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
}

.process-text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* =============================
   Gallery
   ============================= */

.gallery {
  padding: 6rem 0;
  background: var(--sky-tint);
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0 1rem 1.5rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

@media (min-width: 640px) {
  .gallery-track {
    gap: 1.5rem;
    padding: 0 2rem 1.5rem;
  }
}

.gallery-item {
  flex-shrink: 0;
  scroll-snap-align: center;
  width: 85%;
  aspect-ratio: 4/3;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.4);
  background: white;
}

@media (min-width: 640px) {
  .gallery-item {
    width: 60%;
  }
}

@media (min-width: 1024px) {
  .gallery-item {
    width: 420px;
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  margin-top: 0.5rem;
}

.gallery-dot {
  height: 0.375rem;
  border-radius: 9999px;
  background: rgba(26,58,92,0.2);
  transition: all 0.3s ease;
}

.gallery-dot.active {
  width: 1.5rem;
  background: var(--primary);
}

.gallery-dot:not(.active) {
  width: 0.375rem;
}

/* =============================
   About / Security
   ============================= */

.about {
  padding: 10rem 0 6rem;
  background: var(--background);
  overflow: hidden;
}

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-card {
  position: relative;
  border-radius: 1.5rem;
  background-image: var(--gradient-navy);
  padding: 2.5rem;
  color: white;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 640px) {
  .about-card {
    padding: 3.5rem;
  }
}

.about-card-blur-1 {
  position: absolute;
  top: -6rem;
  right: -6rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: rgba(92,189,185,0.3);
  filter: blur(60px);
}

.about-card-blur-2 {
  position: absolute;
  bottom: -5rem;
  left: -5rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: rgba(43,168,200,0.4);
  filter: blur(60px);
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-point-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-point-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.about-point-title {
  font-weight: 600;
}

.about-point-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
}

.about-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
}

@media (min-width: 640px) {
  .about-content h2 {
    font-size: 3rem;
  }
}

.about-content p {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.about-content p + p {
  margin-top: 1rem;
  font-size: 1rem;
}

/* =============================
   Trust / Travelers
   ============================= */

.trust {
  padding: 6rem 0;
  background: var(--background);
}

.trust-divider {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary);
}

.trust-divider span {
  width: 2rem;
  height: 1px;
  background: rgba(43,168,200,0.6);
}

.trust-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 5rem;
  }
}

.trust-card {
  border-radius: 1.5rem;
  background: var(--sky-tint);
  border: 1px solid var(--sky-soft);
  padding: 1.75rem;
  text-align: center;
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .trust-card {
    padding: 2.25rem;
  }
}

.trust-card:hover {
  background: white;
  box-shadow: var(--shadow-soft);
}

.trust-icon {
  margin: 0 auto;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background-image: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.trust-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.trust-title {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
}

.trust-text {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* =============================
   Testimonials
   ============================= */

.testimonials {
  padding: 6rem 0;
  background: var(--background);
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

@media (min-width: 640px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  position: relative;
  background: var(--sky-tint);
  border-radius: 1.5rem;
  padding: 1.75rem;
  border: 1px solid var(--sky-soft);
  transition: all 0.3s ease;
}

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

.testimonial-quote-icon {
  width: 2rem;
  height: 2rem;
  color: rgba(43,168,200,0.3);
  margin-bottom: 0.75rem;
}

.testimonial-text {
  font-size: 0.875rem;
  color: rgba(26,58,92,0.85);
  line-height: 1.6;
}

.testimonial-stars {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--primary);
}

.testimonial-stars svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.testimonial-author {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--sky-soft);
}

.testimonial-name {
  font-weight: 600;
  color: var(--navy);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* =============================
   FAQ
   ============================= */

.faq {
  padding: 6rem 0;
  background: var(--background);
  position: relative;
  overflow: hidden;
}

.faq-blur {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: rgba(92,189,185,0.15);
  filter: blur(80px);
  pointer-events: none;
}

.faq-list {
  max-width: 48rem;
  margin: 3rem auto 0;
}

.faq-item {
  border-radius: 0.75rem;
  border: 1px solid var(--sky-soft);
  background: var(--sky-tint);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .faq-item {
    border-radius: 1rem;
  }
}

.faq-item.active {
  background: white;
  box-shadow: var(--shadow-card);
}

.faq-question {
  width: 100%;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Sora', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

@media (min-width: 640px) {
  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1.125rem;
  }
}

.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  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;
}

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

.faq-answer-inner {
  padding: 0 1.5rem 1rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

@media (min-width: 640px) {
  .faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    font-size: 1rem;
  }
}

/* =============================
   Contact
   ============================= */

.contact {
  padding: 6rem 0;
  background: var(--background);
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 2fr 3fr;
  }
}

.contact-info {
  border-radius: 1.5rem;
  background-image: var(--gradient-navy);
  color: white;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .contact-info {
    padding: 2.5rem;
  }
}

.contact-info-blur {
  position: absolute;
  bottom: -5rem;
  right: -5rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: rgba(43,168,200,0.4);
  filter: blur(60px);
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

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

.contact-info-item a {
  color: inherit;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.contact-info-item:hover .contact-info-icon {
  background: rgba(255,255,255,0.25);
}

.contact-info-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: white;
}

.contact-info-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}

.contact-info-value {
  font-weight: 600;
}

.contact-form {
  border-radius: 1.5rem;
  background: white;
  border: 1px solid var(--sky-soft);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

@media (min-width: 640px) {
  .contact-form {
    padding: 2.5rem;
  }
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  margin-bottom: 0;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--sky-soft);
  background: white;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--navy);
  font-family: 'Manrope', sans-serif;
  transition: all 0.2s ease;
}

.form-control::placeholder {
  color: var(--muted-foreground);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(43,168,200,0.15);
}

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

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7f8e' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  padding-right: 2.5rem;
}

.form-error {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #e11d48;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 0;
}

.form-success svg {
  width: 4rem;
  height: 4rem;
  color: var(--primary);
}

.form-success h3 {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

.form-success p {
  margin-top: 0.5rem;
  color: var(--muted-foreground);
  max-width: 24rem;
}

.wpcf7 .wpcf7-form-control-wrap {
  display: block;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--sky-soft);
  background: white;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--navy);
  font-family: 'Manrope', sans-serif;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(43,168,200,0.15);
}

.wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-image: var(--gradient-primary);
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  box-shadow: var(--shadow-soft);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wpcf7-submit:hover {
  box-shadow: 0 10px 30px -10px rgba(44,168,200,0.5);
}

.wpcf7-form.invalid .wpcf7-not-valid {
  border-color: #e11d48 !important;
}

.wpcf7-not-valid-tip {
  color: #e11d48;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.wpcf7-response-output {
  border-radius: 0.75rem;
  margin: 1rem 0 0;
  padding: 1rem;
  font-size: 0.875rem;
}

.wpcf7 form.sent .wpcf7-response-output {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

/* =============================
   Footer
   ============================= */

.site-footer {
  position: relative;
  background: var(--navy);
  color: white;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(43,168,200,0.6), transparent);
}

.footer-blur-1 {
  position: absolute;
  top: -8rem;
  left: -8rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: rgba(43,168,200,0.1);
  filter: blur(60px);
}

.footer-blur-2 {
  position: absolute;
  bottom: -8rem;
  right: -8rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: rgba(43,168,200,0.1);
  filter: blur(60px);
}

.footer-inner {
  position: relative;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: start;
  }
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 20rem;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.footer-nav {
  list-style: none;
}

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

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s ease;
}

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

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

.footer-contact-item svg {
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  color: var(--primary);
  flex-shrink: 0;
}

.footer-contact-item a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s ease;
  word-break: break-all;
}

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

.footer-contact-item span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}

.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}

/* =============================
   Animations
   ============================= */

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.07s; }
.delay-2 { transition-delay: 0.14s; }
.delay-3 { transition-delay: 0.21s; }
.delay-4 { transition-delay: 0.28s; }
.delay-5 { transition-delay: 0.35s; }
.delay-6 { transition-delay: 0.42s; }
.delay-7 { transition-delay: 0.49s; }
.delay-8 { transition-delay: 0.56s; }

/* =============================
   WordPress Defaults
   ============================= */

.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.875rem; color: var(--muted-foreground); }
.screen-reader-text { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* ================================================================
   Packages section
   ================================================================ */
.packages {
  padding: 6rem 0;
  background-image: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}
.packages::before,
.packages::after {
  content: "";
  position: absolute;
  width: 18rem;
  height: 18rem;
  border-radius: 9999px;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.packages::before {
  top: -6rem;
  left: -6rem;
  background: color-mix(in oklab, var(--primary) 15%, transparent);
}
.packages::after {
  bottom: -6rem;
  right: -6rem;
  background: color-mix(in oklab, var(--sky) 22%, transparent);
}
.packages .container { position: relative; z-index: 1; }

.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 3.5rem auto 0;
  align-items: stretch;
}
@media (min-width: 768px) {
  .packages-grid { grid-template-columns: 1fr 1fr; }
}

.pack-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--sky-soft);
  border-radius: 1.75rem;
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
  overflow: hidden;
}
@media (min-width: 640px) { .pack-card { padding: 2.5rem; } }
.pack-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }

.pack-card-premium {
  background-image: var(--gradient-navy);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-soft);
  --ring-color: color-mix(in oklab, var(--primary) 30%, transparent);
  outline: 1px solid var(--ring-color);
  outline-offset: -1px;
}
.pack-card-premium::before {
  content: "";
  position: absolute;
  top: -6rem;
  right: -6rem;
  width: 16rem;
  height: 16rem;
  border-radius: 9999px;
  background: color-mix(in oklab, var(--primary) 40%, transparent);
  filter: blur(50px);
  pointer-events: none;
}

.pack-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  background-image: var(--gradient-primary);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: .4rem .85rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-soft);
  z-index: 2;
}
.pack-badge svg { width: 14px; height: 14px; }

.pack-head { position: relative; z-index: 1; }
.pack-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.pack-label-light { color: rgba(255,255,255,.85); }
.pack-title {
  margin: .5rem 0 0;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}
.pack-card-premium .pack-title { color: #fff; }
.pack-desc {
  margin: .75rem 0 0;
  color: var(--muted-foreground);
  line-height: 1.55;
}
.pack-desc-light { color: rgba(255,255,255,.78); }

.pack-price {
  margin-top: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: .5rem;
}
.pack-price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-display);
  line-height: 1;
}
.pack-card-premium .pack-price-value { color: #fff; }
.pack-price-unit { font-size: .875rem; color: var(--muted-foreground); }
.pack-price-unit-light { color: rgba(255,255,255,.75); }

.pack-divider {
  height: 1px;
  background: var(--sky-soft);
  margin: 2rem 0;
  position: relative;
  z-index: 1;
}
.pack-divider-light { background: rgba(255,255,255,.15); }

.pack-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .875rem;
  flex: 1;
  position: relative;
  z-index: 1;
}
.pack-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: color-mix(in oklab, var(--foreground) 90%, transparent);
  line-height: 1.4;
}
.pack-item-light { color: rgba(255,255,255,.92); }
.pack-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: .55rem;
  background: var(--sky-tint);
  color: var(--primary);
  margin-top: 2px;
}
.pack-icon svg { width: 16px; height: 16px; }
.pack-icon-light {
  background: rgba(255,255,255,.15);
  color: #fff;
  backdrop-filter: blur(4px);
}
.pack-item span:last-child { padding-top: 4px; }

.pack-note {
  position: relative;
  z-index: 1;
  margin: 1.5rem 0 0;
  font-size: .75rem;
  font-style: italic;
  color: rgba(255,255,255,.6);
}

.pack-cta {
  position: relative;
  z-index: 1;
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: .95rem 1.5rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s ease;
  cursor: pointer;
}
.pack-cta svg { width: 16px; height: 16px; transition: transform .25s ease; }
.pack-cta:hover svg { transform: translateX(4px); }

.pack-cta-outline {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.pack-cta-outline:hover {
  background: var(--primary);
  color: #fff;
}
.pack-cta-light {
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow-soft);
}
.pack-cta-light:hover {
  background-image: var(--gradient-primary);
  color: #fff;
}
