@charset "UTF-8";
/*
Theme Name: Atlantis Loisirs
Theme URI: https://www.atlantisloisirs.fr
Author: Simon WILLEMETZ
Description: Thème custom pour Atlantis Loisirs — Location de canoë-kayak sur le Courant de Contis, Landes.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: atlantisloisirs
*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: #3a3a3a;
  background: #faf8f5;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

h1, h2, h3, h4, h5 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: #2c2c2c;
}

:root {
  --blue: #338CC1;
  --blue-dark: #1a6a9e;
  --blue-deeper: #0d4a6f;
  --blue-light: #e8f4fb;
  --blue-mist: #c5e2f2;
  --green: #538E3C;
  --green-dark: #3d6a2c;
  --green-light: #e8f3e3;
  --red: #DD002A;
  --red-dark: #b30022;
  --cream: #faf8f5;
  --sand: #f0ece4;
  --charcoal: #2c2c2c;
  --text: #3a3a3a;
  --text-light: #6b6b6b;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --font-heading: Cormorant Garamond, Georgia, serif;
  --font-body: Source Sans 3, Segoe UI, sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}
.stagger.visible > *:nth-child(1) {
  transition-delay: 0s;
}
.stagger.visible > *:nth-child(2) {
  transition-delay: 0.12s;
}
.stagger.visible > *:nth-child(3) {
  transition-delay: 0.24s;
}
.stagger.visible > *:nth-child(4) {
  transition-delay: 0.36s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(255, 255, 255, 0);
  }
}
@keyframes scrollBounce {
  0%, 100% {
    transform: scaleY(1);
    opacity: 1;
  }
  50% {
    transform: scaleY(0.5);
    opacity: 0.5;
  }
}
.section {
  position: relative;
  padding: 100px 24px;
}
@media (max-width: 768px) {
  .section {
    padding: 72px 20px;
  }
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #338CC1;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6b6b6b;
  max-width: 600px;
  line-height: 1.7;
}

.wave-divider {
  position: relative;
  width: 100%;
  line-height: 0;
  margin-top: -1px;
}
.wave-divider svg {
  width: 100%;
  height: auto;
  display: block;
}

.groups {
  background: #0d4a6f;
  color: #ffffff;
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.groups::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(51, 140, 193, 0.2), transparent 70%);
  border-radius: 50%;
}
.groups::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(83, 142, 60, 0.15), transparent 70%);
  border-radius: 50%;
}
.groups .section-label {
  color: #c5e2f2;
}
.groups .section-title {
  color: #ffffff;
  margin-bottom: 16px;
}
.groups p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.groups-tags {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.groups-tags span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
}
@media (max-width: 480px) {
  .groups-tags span {
    font-size: 0.8rem;
    padding: 6px 14px;
  }
}

.parallax-banner {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .parallax-banner {
    height: 320px;
  }
}

.parallax-bg {
  position: absolute;
  inset: -20%;
  z-index: 1;
}
.parallax-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(13, 74, 111, 0.8), rgba(61, 106, 44, 0.7));
}

.parallax-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
}
.parallax-content blockquote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 600;
  font-style: italic;
  color: #ffffff;
  line-height: 1.3;
  max-width: 700px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}
.parallax-content blockquote::before {
  content: "“";
  display: block;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.3);
  font-style: normal;
  line-height: 1;
  margin-bottom: -10px;
}

.presentation {
  background: #faf8f5;
}

.presentation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 1024px) {
  .presentation-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.presentation-text p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: #3a3a3a;
  margin-bottom: 24px;
}

.natura-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #e8f3e3;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(83, 142, 60, 0.2);
}
.natura-badge img {
  height: 40px;
  width: auto;
}
.natura-badge span {
  font-size: 0.88rem;
  font-weight: 600;
  color: #3d6a2c;
}

.presentation-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.16);
}
.presentation-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 6s ease;
}
.presentation-image:hover img {
  transform: scale(1.05);
}
.presentation-image::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  pointer-events: none;
}

.reviews {
  background: #e8f4fb;
  padding: 100px 24px;
}

.reviews-header {
  text-align: center;
  margin-bottom: 60px;
}

.reviews-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

.top-banner {
  background: linear-gradient(135deg, #0d4a6f, #1a6a9e);
  color: #ffffff;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 1001;
}
.top-banner span {
  opacity: 0.7;
  margin: 0 6px;
}
@media (max-width: 768px) {
  .top-banner {
    font-size: 0.75rem;
    padding: 8px 16px;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 1002;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(51, 140, 193, 0.1);
  transition: box-shadow 0.3s ease;
}
.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
@media (max-width: 1024px) {
  .header-inner {
    height: 70px;
  }
}

.logo {
  flex-shrink: 0;
}
.logo img {
  height: 68px;
  width: auto;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.logo img:hover {
  transform: scale(1.05);
}
@media (max-width: 1024px) {
  .logo img {
    height: 56px;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-phone,
.mobile-menu a.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a6a9e;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  border: 2px solid #1a6a9e;
}
.btn-phone:hover,
.mobile-menu a.btn-phone:hover {
  background: #ffffff;
  color: #1a6a9e;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
.btn-phone svg,
.mobile-menu a.btn-phone svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 768px) {
  .btn-phone .btn-phone-label,
  .mobile-menu a.btn-phone .btn-phone-label {
    display: none;
  }
}

.social-icons {
  display: flex;
  gap: 8px;
}
.social-icons a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e8f4fb;
  color: #338CC1;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.social-icons a:hover {
  background: #338CC1;
  color: #ffffff;
  transform: translateY(-2px);
}
.social-icons svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 1024px) {
  .social-icons {
    display: none;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  z-index: 1002;
}
.hamburger span {
  width: 26px;
  height: 2.5px;
  background: #2c2c2c;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-menu.active {
  display: flex;
}
.mobile-menu a {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c2c2c;
  padding: 12px 24px;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.mobile-menu a:hover {
  color: #338CC1;
  background: #e8f4fb;
}
.mobile-menu .mobile-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav a,
.nav .menu-item a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #3a3a3a;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}
.nav a:hover, .nav a.active, .nav a.current-menu-item > a,
.nav .menu-item a:hover,
.nav .menu-item a.active,
.nav .menu-item a.current-menu-item > a {
  color: #338CC1;
  background: #e8f4fb;
}
.nav .current-menu-item > a,
.nav .current_page_item > a {
  color: #338CC1;
  background: #e8f4fb;
}
@media (max-width: 1024px) {
  .nav {
    display: none;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #338CC1;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid #338CC1;
}
.btn-primary:hover {
  background: #ffffff;
  color: #338CC1;
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.16);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  transform: translateY(-3px);
  color: #ffffff;
}

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #538E3C;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn-green:hover {
  background: #3d6a2c;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(83, 142, 60, 0.4);
  color: #ffffff;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #2c2c2c;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(13, 74, 111, 0.5) 0%, rgba(13, 74, 111, 0.3) 40%, rgba(13, 74, 111, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeInDown 1s ease 0.3s both;
}
.hero-badge img {
  height: 52px;
  width: auto;
}
.hero-badge span {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.1;
  animation: fadeInUp 1s ease 0.5s both;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}
.hero h1 em {
  font-style: italic;
  color: #c5e2f2;
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }
}

.hero-tagline {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  margin: 0 auto 36px;
  line-height: 1.7;
  font-weight: 300;
  animation: fadeInUp 1s ease 0.7s both;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.9s both;
}

.hero-video-trigger {
  position: absolute;
  z-index: 4;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: fadeIn 1s ease 1.2s both, pulse 2.5s ease-in-out infinite 2s;
}
.hero-video-trigger:hover {
  background: #338CC1;
  border-color: #338CC1;
  transform: translateX(-50%) scale(1.1);
}
.hero-video-trigger svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
  margin-left: 4px;
}
@media (max-width: 768px) {
  .hero-video-trigger {
    bottom: 100px;
    width: 64px;
    height: 64px;
  }
  .hero-video-trigger svg {
    width: 22px;
    height: 22px;
  }
}

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.video-modal.active {
  display: flex;
}

.video-modal-inner {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.2);
}
.video-modal-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.video-modal-close:hover {
  background: #ffffff;
  color: #2c2c2c;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s ease 1.5s both;
}
.hero-scroll span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  animation: scrollBounce 2s ease infinite;
}

.hero-wave {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  z-index: 5;
  line-height: 0;
}
.hero-wave svg {
  width: 100%;
  height: auto;
}

.dual-cta {
  background: #faf8f5;
  padding: 100px 24px;
}

.dual-cta-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 768px) {
  .dual-cta-grid {
    grid-template-columns: 1fr;
  }
}

.cta-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 440px;
  cursor: pointer;
}
.cta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.cta-card:hover img {
  transform: scale(1.08);
}
@media (max-width: 768px) {
  .cta-card {
    height: 340px;
  }
}

.cta-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 74, 111, 0.9) 0%, rgba(13, 74, 111, 0.3) 50%, rgba(13, 74, 111, 0.1) 100%);
  transition: background 0.5s ease;
}
.cta-card:hover .cta-card-overlay {
  background: linear-gradient(0deg, rgba(13, 74, 111, 0.95) 0%, rgba(13, 74, 111, 0.4) 50%, rgba(13, 74, 111, 0.2) 100%);
}

.cta-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  z-index: 2;
}
.cta-card-content h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 8px;
}
.cta-card-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .cta-card-content {
    padding: 24px;
  }
  .cta-card-content h3 {
    font-size: 1.6rem;
  }
}

.cta-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: gap 0.3s ease;
}
.cta-card-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}
.cta-card:hover .cta-card-link {
  gap: 14px;
}
.cta-card:hover .cta-card-link svg {
  transform: translateX(4px);
}

.review-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
.review-card p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #3a3a3a;
  margin-bottom: 20px;
  font-style: italic;
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.review-stars svg {
  width: 18px;
  height: 18px;
  fill: #f5a623;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #338CC1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
}

.review-author-info strong {
  display: block;
  font-size: 0.9rem;
  color: #2c2c2c;
}
.review-author-info span {
  font-size: 0.8rem;
  color: #6b6b6b;
}

.review-google {
  position: absolute;
  top: 20px;
  right: 24px;
  opacity: 0.3;
}
.review-google svg {
  width: 24px;
  height: 24px;
}

.reassurance {
  background: #ffffff;
  padding: 100px 24px;
}

.reassurance-header {
  text-align: center;
  margin-bottom: 60px;
}

.reassurance-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 1024px) {
  .reassurance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .reassurance-grid {
    grid-template-columns: 1fr;
  }
}

.reassurance-item {
  text-align: center;
  padding: 36px 20px;
  border-radius: 20px;
  background: #faf8f5;
  border: 1px solid rgba(51, 140, 193, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reassurance-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  border-color: rgba(51, 140, 193, 0.2);
}
.reassurance-item h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #2c2c2c;
}
.reassurance-item p {
  font-size: 0.9rem;
  color: #6b6b6b;
  line-height: 1.6;
}

.reassurance-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8f4fb;
  border-radius: 50%;
}
.reassurance-icon img {
  height: 36px;
  width: auto;
}
.reassurance-icon svg {
  width: 30px;
  height: 30px;
  color: #338CC1;
}

.footer {
  background: #2c2c2c;
  color: rgba(255, 255, 255, 0.8);
  padding: 72px 24px 0;
}
.footer h5 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-brand .logo-footer {
  height: 72px;
  width: auto;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: #338CC1;
  color: #ffffff;
  transform: translateY(-2px);
}
.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s ease;
}
.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}
.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  color: #338CC1;
}
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.8);
}
.footer-contact-item a:hover {
  color: #ffffff;
}

.footer-payments {
  margin-top: 20px;
}
.footer-payments p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}
.footer-payments img {
  height: 28px;
  width: auto;
  opacity: 0.7;
}

.footer-seo {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-seo p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
}
.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/*# sourceMappingURL=style.css.map */
