@charset "utf-8";
/*--------------------CSS Document--------------------*/

/* 
 styles.css – for Cabinet Dr. Guillaume DAUTEL – Marseille
    ---------------------------------------------------
*/

/* ============================================
   CSS Variables & Reset
   ============================================ */

:root {
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --primary-light: #38bdf8;
  --primary-50: #f0f9ff;
  --accent: #10b981;
  --accent-light: #d1fae5;
  --text-dark: #0f172a;
  --text-medium: #475569;
  --text-light: #94a3b8;
  --font-heading: "Poppins", sans-serif;
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-lighter: #f1f5f9;
  --border: #e2e8f0;
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

/* ============================================
   Global reset & typography
   ============================================ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  line-height: 1.7;
  background: var(--bg-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ============================================
   Skip link – visible on focus
   ============================================ */

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary);
  color: var(--bg-white);
  padding: 12px 20px;
  z-index: 9999;
  font-weight: 600;
  font-size: 0.95rem;
  transition: top 0.25s;
}
.skip-link:focus-visible {
  top: 0;
  outline: none;
}

/* ============================================
   Headings
   ============================================ */
   
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  margin: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary-50);
  color: var(--primary-dark);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   Buttons
   ============================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 10px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  border: none;
  background: var(--primary);
  color: var(--bg-white);
  cursor: pointer;
  transition: var(--transition);
  outline: none;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow-hover); /* rgba(14, 165, 233, 0.35);*/
}

.btn-primary-2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 10px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  border: none;
  background: rgb(255, 225, 0);
  color: var(--bg-white);
  cursor: pointer;
  transition: var(--transition);
  outline: none;
}
.btn-primary-2:hover {
  background: rgb(205, 181, 0);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow-hover); /* rgba(234, 230, 14, 0.35);*/
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
  outline: none;
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--bg-white);
  transform: translateY(-2px);
}

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

/* ============================================
   Navigation Navbar
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 0.75rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
}

.logo:hover {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
  transform: translateY(-2px);
}

.logo-icon {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
}
.nav-links a:not(.btn-primary, .btn-primary-2) {
  padding: 10px 10px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--text-medium);
  transition: var(--transition);
}
.nav-links a:not(.btn-primary, .btn-primary-2):hover {
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.95);
}
.nav-links .btn-primary .btn-primary-2 {
  padding: 10px 10px;
  font-size: 0.8rem;
  margin-left: 0.5rem;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 60px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge-white {
  display: block;
  margin-left: auto;
  margin-right: auto;
  background: var(--bg-white);
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-badge-white:hover {
  display: block;
  margin-left: auto;
  margin-right: auto;
  background: var(--bg-white);
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
  transform: translateY(-2px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-badge {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 16px 16px;
  /* background: var(--bg-white);    background: rgba(14, 164, 233, 0.1); */
  /* color: var(--primary-dark); */
  background: linear-gradient(135deg, #0284c7, #0ea5e9, #ffe100, #cdb500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 950;
  margin-bottom: 1.5rem;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-badge:hover {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 16px 16px;
  /* background: var(--bg-light);    background: rgba(14, 164, 233, 0.2); */
  /* color: var(--primary-dark); */
  background: linear-gradient(
    135deg,
    #0ea5e9 50%,
    #0284c7 50%,
    #cdb500 50%,
    #ffe100 50%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 950;
  margin-bottom: 1.5rem;
  text-align: center;
  transform: translateY(-2px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
  max-width: 540px;
}

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

.hero-stats {
  display: flex;
  gap: 2.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float 3s ease-in-out infinite;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-shape {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morph 6s ease-in-out infinite;
  box-shadow: var(--shadow-xl);
}

.hero-shape-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgb(255, 225, 0), rgb(205, 181, 0));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morph 6s ease-in-out infinite;
  box-shadow: var(--shadow-xl);
}

@keyframes morph {
  0%,
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
}

.hero-avatar {
  position: absolute;
  width: 70%;
  height: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-avatar svg {
  width: 100%;
  height: 100%;
}
.doctor-placeholder {
  width: 350px;
  height: 350px;
  /* background: var(--bg-light); */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10rem;
  /* box-shadow: var(--shadow-sm); */
}
.floating-card {
  position: absolute;
  background: var(--bg-white);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
  animation: float 3s ease-in-out infinite;
}
.floating-card svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.card-1 {
  top: 10%;
  left: -8%;
  animation-delay: 0s;
}
.card-2 {
  bottom: 18%;
  right: -5%;
  animation-delay: 0s;
}
.card-2 svg {
  color: #f59e0b;
}

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

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

.services {
  padding: 100px 0;
  background: var(--bg-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  background: var(--bg-white);
}
.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-50);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  color: var(--primary);
}
.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}
.card-link:hover {
  color: var(--primary-dark);
  gap: 8px;
}

/* ============================================
   About Section
   ============================================ */

.about {
  padding: 100px 0;
  margin-top: 20px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #ffffff 100%);
  /* background: linear-gradient(135deg, #e0f7fa 0%, #ffffff 100%); */
}

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

.about-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  max-width: 400px;
}
.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  transition: var(--transition);
}
.about-image-frame:hover img {
  transform: scale(1.03);
}

.about-exp-badge {
  position: absolute;
  bottom: -10px;
  right: 10px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.exp-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}
.exp-label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.about-text .section-tag {
  margin-bottom: 0.75rem;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.about-text h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.about-text > p {
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.about-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-medium);
}

.check-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.check-icon svg {
  width: 14px;
  height: 14px;
}
.check-icon-2 {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--bg-white);
  border-radius: 50%;
  flex-shrink: 0;
}
.check-icon-2 svg {
  width: 14px;
  height: 14px;
}

/* ============================================
   Carousel Section
   ============================================ */

.gallery {
  padding: 10px 0;
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.02) 0%,
    transparent 80%
  );
  /* background: var(--bg-light); */
  /* background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #ffffff 100%); */
}

.carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  aspect-ratio: 16 / 10;
}

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

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  opacity: 0;
  z-index: 2;
}
.carousel:hover .carousel-btn,
.carousel-btn:focus-visible {
  opacity: 1;
}
.carousel-btn svg {
  width: 22px;
  height: 22px;
}
.carousel-btn:hover {
  background: var(--bg-white);
  transform: translateY(-50%) scale(1.08);
}

.carousel-prev {
  left: 16px;
}
.carousel-next {
  right: 16px;
}

.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}
.carousel-dots button.active {
  background: var(--bg-white);
  transform: scale(1.25);
}
.carousel-dots button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

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

.testimonials {
  padding: 100px 0;
  background: var(--bg-white);
}

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

.testimonial-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}
.stars svg {
  width: 18px;
  height: 18px;
  color: #f59e0b;
}

.testimonial-card p {
  color: var(--text-medium);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

/* ============================================
   FAQ – new Section
   ============================================ */

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

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: var(--primary);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  list-style: none;
  user-select: none;
}
.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  color: var(--text-light);
}
.faq-icon svg {
  width: 20px;
  height: 20px;
}

details[open] .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
}
.faq-answer p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   Contact – map wrapper
   ============================================ */

.contact {
  padding: 100px 0;
  background: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.info-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-50);
  border-radius: var(--radius-sm);
  color: var(--primary);
  flex-shrink: 0;
}
.info-icon svg {
  width: 22px;
  height: 22px;
}

.info-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.info-item p,
.info-item a {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.5;
}
.info-item a:hover {
  color: var(--primary);
}

.map-wrapper {
  margin-top: 0.5rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.contact-cta {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.cta-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-50);
  border-radius: 50%;
  color: var(--primary);
}
.cta-icon svg {
  width: 32px;
  height: 32px;
}

.contact-cta h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
}

.contact-cta p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 360px;
}

.cta-note {
  font-size: 0.8rem !important;
  color: var(--text-light) !important;
}

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

.footer {
  background: var(--text-dark);
  color: var(--bg-white);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--bg-white);
}

.footer-section p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}
.footer-section li {
  margin-bottom: 0.6rem;
}
.footer-section a {
  color: var(--text-light);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-section a:hover {
  color: var(--primary-light);
}

.footer-contact li {
  color: var(--text-light);
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-light);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--primary);
  color: var(--bg-white);
}
.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-emergency {
  margin-bottom: 0.5rem;
}

.footer-phone a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-light) !important;
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-size: 0.85rem;
}

/* ============================================
   Responsive Design – Media queries
   ============================================ */

@media (max-width: 1024px) {
  .hero-container {
    gap: 2rem;
  }
  .hero-stats {
    gap: 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
  }
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a {
    font-size: 1.2rem !important;
    padding: 12px 24px !important;
  }
  .nav-links .btn-primary .btn-primary-2 {
    font-size: 1rem !important;
    padding: 10px 10px !important;
    margin-left: 0;
  }
  .mobile-menu-btn {
    display: flex;
    z-index: 1001;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-shape {
    width: 280px;
    height: 280px;
  }
  .hero-shape-2 {
    width: 280px;
    height: 280px;
  }
  .card-1 {
    left: -5%;
  }
  .card-2 {
    right: -2%;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-features li {
    justify-content: center;
  }
  .about-exp-badge {
    right: 50%;
    transform: translateX(50%);
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-buttons .btn-primary .btn-primary-2,
  .hero-buttons .btn-outline {
    text-align: center;
    justify-content: center;
  }
  .hero-shape {
    width: 220px;
    height: 220px;
  }
  .hero-shape-2 {
    width: 220px;
    height: 220px;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .contact-cta {
    padding: 2rem 1.5rem;
  }
}

/* ============================================
   Focus-visible – WCAG
   ============================================ */

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

::selection {
  background: var(--primary);
  color: var(--bg-white);
}
