/* ============================================
   RADIANT ACADEMY - MAIN STYLESHEET
   Clean, Modern & Professional Design
   ============================================ */

/* ============ CSS VARIABLES ============ */
:root {
  /* Color Palette */
  --primary: #1A5F6C;
  --primary-dark: #134A54;
  --primary-light: #2A7D8A;
  --secondary: #E07A5F;
  --secondary-light: #F4A390;
  --accent: #81B29A;
  --accent-light: #A8D5C2;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #FAF9F7;
  --cream: #F5F0E8;
  --dark: #1E1E2E;
  --text: #2D2D3F;
  --text-light: #6B6B7B;
  --text-muted: #9999A5;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: all 0.3s ease;
  --transition-fast: all 0.15s ease;

  /* Spacing */
  --section-padding: clamp(60px, 10vw, 100px);
  --container-width: 1200px;
  --container-padding: clamp(16px, 4vw, 40px);
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background-color: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.25rem); }

p {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--text-light);
  line-height: 1.7;
}

/* ============ LAYOUT ============ */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 60px);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  padding: 8px 16px;
  background: rgba(224, 122, 95, 0.1);
  border-radius: var(--radius-full);
}

.section-tag svg {
  width: 16px;
  height: 16px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  max-width: 580px;
  margin: 0 auto;
}

/* Grid System */
.grid {
  display: grid;
  gap: 24px;
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }

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

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

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.btn-primary:hover {
  background: var(--secondary-light);
  border-color: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 122, 95, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.8);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.btn-dark:hover {
  background: #3D3D4F;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 30, 46, 0.25);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.85rem;
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: 12px 0;
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
}

.navbar-brand svg {
  width: 40px;
  height: 40px;
}

.navbar-nav {
  display: none;
  align-items: center;
  gap: 4px;
}

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

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link svg {
  width: 16px;
  height: 16px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary);
  background: rgba(224, 122, 95, 0.08);
}

.navbar-cta {
  display: none;
}

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

/* Hamburger Menu */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
  z-index: 1001;
}

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

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
  border-radius: 2px;
}

.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(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 100px 24px 40px;
  transform: translateY(-100%);
  transition: var(--transition);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu .nav-link {
  padding: 16px 20px;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  border-radius: 0;
}

.mobile-menu .navbar-cta {
  display: flex;
  margin-top: 20px;
  width: 100%;
  justify-content: center;
}

/* ============ HERO SECTION ============ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.hero-left {
  position: relative;
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-left { justify-content: flex-start; }
}

.hero-image-wrapper {
  position: relative;
  width: 300px;
  height: 380px;
}

@media (min-width: 640px) {
  .hero-image-wrapper {
    width: 340px;
    height: 420px;
  }
}

@media (min-width: 1024px) {
  .hero-image-wrapper {
    width: 400px;
    height: 500px;
  }
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.hero-ring {
  position: absolute;
  border: 2px solid var(--secondary);
  border-radius: 50%;
  animation: ringPulse 4s ease-in-out infinite;
}

.hero-ring-1 {
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
}

.hero-ring-2 {
  width: 125%;
  height: 125%;
  top: -12.5%;
  left: -12.5%;
  animation-delay: 1s;
  border-color: var(--accent);
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.02); }
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--secondary);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.hero-badge-number {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.hero-badge-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224, 122, 95, 0.2);
  color: var(--secondary-light);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  color: var(--white);
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--secondary-light);
}

.hero-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-socials {
  display: flex;
  gap: 12px;
}

.hero-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  color: var(--white);
  transition: var(--transition);
}

.hero-social:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.hero-social svg {
  width: 20px;
  height: 20px;
}

/* ============ STATS BAR ============ */
.stats-bar {
  background: var(--white);
  padding: 50px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

.stat-item {
  text-align: center;
  padding: 20px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.stat-item:hover {
  background: var(--cream);
}

.stat-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: var(--radius-md);
  color: var(--white);
  transition: var(--transition);
}

.stat-item:hover .stat-icon {
  transform: scale(1.1);
}

.stat-icon svg {
  width: 26px;
  height: 26px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ============ MARQUEE ============ */
.marquee-strip {
  background: var(--secondary);
  padding: 18px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: marquee 40s linear infinite;
}

.marquee-content {
  display: flex;
  gap: 40px;
  padding-right: 40px;
  flex-shrink: 0;
}

.marquee-item {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}

.marquee-item span {
  opacity: 0.4;
  margin: 0 10px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SERVICE CARDS ============ */
.services-section {
  background: var(--off-white);
}

.service-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(224, 122, 95, 0.2);
}

.service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: var(--radius-md);
  color: var(--white);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.08) rotate(3deg);
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-card p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  border: 2px solid var(--secondary);
  transition: var(--transition);
  margin-top: auto;
  align-self: center;
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: var(--transition);
}

.service-link:hover {
  background: var(--secondary);
  color: var(--white);
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* ============ ABOUT SECTION ============ */
.about-preview {
  background: var(--cream);
}

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

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

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.about-float-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-float-card h4 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 4px;
}

.about-float-card p {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 18px;
}

.credentials-list {
  margin-bottom: 28px;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.credential-item:last-child {
  border-bottom: none;
}

.credential-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
}

.credential-icon svg {
  width: 100%;
  height: 100%;
}

/* ============ PARALLAX SECTION ============ */
.parallax-divider {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  text-align: center;
}

.parallax-content h2 {
  color: var(--white);
  margin-bottom: 18px;
}

.parallax-content p {
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  margin: 0 auto 28px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ============ VIDEO CARDS ============ */
.videos-section {
  background: var(--off-white);
}

.video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.video-thumbnail {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.05);
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(224, 122, 95, 0.4);
}

.video-play::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid var(--secondary);
  border-radius: 50%;
  opacity: 0.4;
  animation: playPulse 2.5s ease-in-out infinite;
}

@keyframes playPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.15); opacity: 0; }
}

.video-play svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
}

.video-card:hover .video-play {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-source {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--dark);
  color: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.video-info {
  padding: 20px;
}

.video-info h4 {
  margin-bottom: 6px;
  font-size: 1.05rem;
  color: var(--dark);
  transition: var(--transition);
}

.video-card:hover .video-info h4 {
  color: var(--secondary);
}

.video-info p {
  font-size: 0.85rem;
}

/* ============ FORM SECTION ============ */
.form-section {
  background: var(--cream);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 1024px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
}

.form-features h3 {
  margin-bottom: 16px;
  font-size: 1.75rem;
}

.form-features-list {
  margin-bottom: 28px;
}

.form-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  transition: var(--transition);
}

.form-feature-item:hover {
  transform: translateX(6px);
}

.form-feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
}

.form-feature-item:hover .form-feature-icon {
  transform: scale(1.08) rotate(-3deg);
}

.form-feature-icon svg {
  width: 22px;
  height: 22px;
}

.form-feature-item h5 {
  font-size: 1rem;
  margin-bottom: 3px;
  color: var(--dark);
}

.form-feature-item p {
  font-size: 0.85rem;
}

.form-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.04);
}

.form-card h3 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 1.4rem;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  transition: var(--transition);
  font-size: 0.95rem;
  background: var(--off-white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(224, 122, 95, 0.1);
}

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

.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
}

/* ============ TESTIMONIAL CARDS ============ */
.testimonials-section {
  background: var(--off-white);
}

.testimonial-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(0,0,0,0.04);
  height: 100%;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--secondary), var(--primary));
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  opacity: 0;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-quote {
  margin-bottom: 16px;
}

.testimonial-quote svg {
  width: 36px;
  height: 36px;
  color: var(--secondary);
  opacity: 0.2;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  color: var(--secondary);
  fill: var(--secondary);
}

.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.75;
  color: var(--text);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-info h5 {
  font-size: 1rem;
  margin-bottom: 3px;
  color: var(--dark);
}

.testimonial-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============ CTA SECTION ============ */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 28px;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

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

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-brand svg {
  width: 40px;
  height: 40px;
}

.footer-about p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.footer h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--secondary);
  display: inline-block;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid var(--secondary);
  opacity: 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary);
  transform: translateX(6px);
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

/* ============ FLOATING BUTTONS ============ */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  min-height: 50px;
}

.floating-btn:first-child {
  animation: slideInRight 0.5s ease forwards;
}

.floating-btn:last-child {
  animation: slideInRight 0.5s ease 0.1s forwards;
}

@keyframes slideInRight {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.floating-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.floating-btn:hover {
  transform: translateX(-4px) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.floating-btn.whatsapp {
  background: #25D366;
}

.floating-btn.whatsapp:hover {
  background: #20BD5A;
}

.floating-btn.whatsapp svg {
  animation: pulse 2s ease-in-out infinite;
}

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

@media (max-width: 640px) {
  .floating-buttons {
    bottom: 16px;
    right: 16px;
  }

  .floating-btn {
    padding: 14px;
    border-radius: 50%;
    min-width: 50px;
    min-height: 50px;
  }

  .floating-btn span {
    display: none;
  }
}

/* ============ CHATBOT ============ */
.chatbot-toggle {
  position: fixed;
  bottom: 100px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  border-radius: var(--radius-full);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 998;
  transition: var(--transition);
  min-height: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  animation: slideInRight 0.5s ease 0.2s forwards;
  transform: translateX(100px);
  opacity: 0;
}

.chatbot-toggle.show {
  transform: translateX(0);
  opacity: 1;
}

.chatbot-toggle svg {
  width: 20px;
  height: 20px;
}

.chatbot-toggle:hover {
  transform: translateX(-4px) !important;
  box-shadow: 0 12px 40px rgba(224, 122, 95, 0.35);
}

.chatbot-toggle span {
  white-space: nowrap;
}

.chatbot-toggle.active {
  background: var(--dark);
}

.chatbot-overlay {
  position: fixed;
  bottom: 110px;
  right: 24px;
  width: calc(100vw - 48px);
  max-width: 380px;
  max-height: 500px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 997;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  overflow: hidden;
}

.chatbot-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.chatbot-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 18px 20px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.chatbot-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-avatar svg {
  width: 22px;
  height: 22px;
}

.chatbot-header h4 {
  color: var(--white);
  font-size: 1rem;
}

.chatbot-header p {
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
}

.chatbot-close {
  color: var(--white);
  padding: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.chatbot-close:hover {
  transform: scale(1.1);
}

.chatbot-close svg {
  width: 20px;
  height: 20px;
}

.chatbot-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.chat-message {
  display: flex;
  gap: 10px;
  animation: messageFadeIn 0.3s ease;
}

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

.chat-message.bot {
  align-self: flex-start;
}

.chat-message.user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.chat-message-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-message.bot .chat-message-avatar {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--white);
}

.chat-message.user .chat-message-avatar {
  background: var(--secondary);
  color: var(--white);
}

.chat-message-avatar svg {
  width: 14px;
  height: 14px;
}

.chat-message-content {
  max-width: 78%;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  line-height: 1.5;
}

.chat-message.bot .chat-message-content {
  background: var(--cream);
  color: var(--text);
}

.chat-message.user .chat-message-content {
  background: var(--secondary);
  color: var(--white);
}

.chat-input-area {
  padding: 14px;
  border-top: 1px solid rgba(0,0,0,0.05);
  display: flex;
  gap: 10px;
}

.chat-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  transition: var(--transition);
  background: var(--off-white);
}

.chat-input:focus {
  outline: none;
  border-color: var(--secondary);
  background: var(--white);
}

.chat-send {
  width: 44px;
  height: 44px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  flex-shrink: 0;
}

.chat-send:hover {
  background: var(--secondary-light);
  transform: scale(1.05);
}

.chat-send svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 640px) {
  .chatbot-toggle {
    bottom: 90px;
    right: 16px;
  }

  .chatbot-overlay {
    bottom: 90px;
    right: 16px;
    width: calc(100vw - 32px);
  }
}

/* ============ TOAST ============ */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  transform: translateX(150%);
  transition: var(--transition);
  z-index: 2000;
  font-weight: 500;
}

.toast.show {
  transform: translateX(0);
}

.toast svg {
  width: 22px;
  height: 22px;
}

/* ============ PAGE HEADER ============ */
.page-header {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-header p {
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.breadcrumb a, .breadcrumb span {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

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

.breadcrumb svg {
  width: 12px;
  height: 12px;
  opacity: 0.5;
}

/* ============ ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 80ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 160ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 240ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 320ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 400ms; opacity: 1; transform: translateY(0); }

/* ============ UTILITY ============ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hidden { display: none !important; }

/* Focus styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

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

/* ============ SERVICE DETAIL CARDS ============ */
.services-detailed-section {
  background: var(--off-white);
}

.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
}

.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.service-detail-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--white);
}

.service-detail-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.service-detail-card:hover .service-detail-icon {
  transform: scale(1.08) rotate(-4deg);
}

.service-detail-icon svg {
  width: 30px;
  height: 30px;
}

.service-detail-header h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.service-detail-body {
  padding: 28px;
}

.service-detail-body p {
  margin-bottom: 20px;
  line-height: 1.75;
}

.service-features {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

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

.service-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.service-feature-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============ PRICING SECTION ============ */
.pricing-section {
  background: var(--cream);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

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

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.popular {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.pricing-card.popular:hover {
  border-color: var(--secondary);
}

.pricing-card.popular .pricing-price,
.pricing-card.popular .pricing-features li {
  color: rgba(255,255,255,0.9);
}

.pricing-card.popular .pricing-features svg {
  color: var(--secondary-light);
}

.pricing-badge {
  position: absolute;
  top: 18px;
  right: -32px;
  background: var(--secondary);
  color: var(--white);
  padding: 6px 40px;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(45deg);
}

.pricing-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.pricing-card:hover .pricing-icon {
  transform: scale(1.08) rotate(-4deg);
}

.pricing-card.popular .pricing-icon {
  background: rgba(255,255,255,0.2);
}

.pricing-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.pricing-card.popular .pricing-icon svg {
  color: var(--white);
}

.pricing-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--dark);
  line-height: 1;
}

.pricing-card.popular .pricing-price {
  color: var(--white);
}

.pricing-price span {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.7;
}

.pricing-duration {
  font-size: 0.85rem;
  margin-bottom: 24px;
  opacity: 0.8;
  color: var(--text-muted);
}

.pricing-card.popular .pricing-duration {
  color: rgba(255,255,255,0.8);
}

.pricing-features {
  text-align: left;
  margin-bottom: 24px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pricing-card:not(.popular) .pricing-features svg {
  color: var(--accent);
}

.pricing-card.popular .pricing-features svg {
  color: var(--secondary-light);
}

.pricing-card .btn {
  width: 100%;
}

/* ============ PROCESS SECTION ============ */
.process-section {
  background: var(--off-white);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

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

.process-step {
  text-align: center;
  position: relative;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 1024px) {
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -18px;
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transform: translateY(-50%);
    z-index: 1;
  }
}

.process-number {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  position: relative;
  box-shadow: 0 6px 20px rgba(224, 122, 95, 0.3);
  transition: var(--transition);
}

.process-step:hover .process-number {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(224, 122, 95, 0.4);
}

.process-step h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ============ FAQ SECTION ============ */
.faq-section {
  background: var(--cream);
}

.faq-container {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(224, 122, 95, 0.2);
}

.faq-item.active {
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--off-white);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

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

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

.faq-answer-content {
  padding: 0 24px 18px;
}

.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-light);
}

/* ============ ABOUT HERO SECTION ============ */
.about-hero-section {
  padding: 80px 0;
  background: var(--off-white);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

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

.about-founder-image {
  position: relative;
}

.about-founder-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.founder-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--secondary);
  color: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
}

.founder-badge h4 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.founder-badge p {
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
}

.about-founder-content h2 {
  margin-bottom: 8px;
}

.about-founder-content .role {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 18px;
}

.about-founder-content p {
  margin-bottom: 16px;
}

/* Timeline */
.timeline-section {
  background: var(--off-white);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 18px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--secondary), var(--primary));
}

@media (min-width: 768px) {
  .timeline::before { left: 50%; }
}

.timeline-item {
  position: relative;
  padding-left: 55px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .timeline-item {
    padding-left: 0;
    padding-right: calc(50% + 35px);
  }
  .timeline-item:nth-child(even) {
    padding-right: 0;
    padding-left: calc(50% + 35px);
  }
}

.timeline-dot {
  position: absolute;
  left: 8px;
  top: 0;
  width: 24px;
  height: 24px;
  background: var(--secondary);
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .timeline-dot { left: 50%; transform: translateX(-50%); }
}

.timeline-content {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.timeline-year {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.timeline-content h4 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.timeline-content p {
  font-size: 0.9rem;
}

/* Gallery */
.gallery-section {
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

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

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 95, 108, 0.88), rgba(224, 122, 95, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay svg {
  width: 40px;
  height: 40px;
  color: var(--white);
  transform: scale(0.5);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay svg {
  transform: scale(1);
}

/* ============ VIDEO PAGE ============ */
.videos-page-section {
  background: var(--off-white);
}

.video-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.video-filter {
  padding: 10px 22px;
  background: var(--white);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-sm);
}

.video-filter:hover {
  border-color: var(--secondary);
  transform: translateY(-2px);
}

.video-filter.active {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

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

.video-card-large {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}

.video-card-large:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.video-card-large .video-thumbnail {
  position: relative;
}

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--dark);
  color: var(--white);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 1;
}

.video-card-large .video-info {
  padding: 20px;
}

.video-card-large .video-info h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--dark);
  transition: var(--transition);
}

.video-card-large:hover .video-info h4 {
  color: var(--secondary);
}

.video-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.video-meta svg {
  width: 14px;
  height: 14px;
}

.video-category-badge {
  display: inline-block;
  background: var(--cream);
  color: var(--text);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* ============ TESTIMONIALS PAGE ============ */
.testimonials-page-section {
  background: var(--off-white);
}

.testimonial-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.testimonial-filter {
  padding: 10px 22px;
  background: var(--white);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-sm);
}

.testimonial-filter:hover {
  border-color: var(--secondary);
  transform: translateY(-2px);
}

.testimonial-filter.active {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@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-large {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
}

.testimonial-card-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: var(--transition);
}

.testimonial-card-large:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.testimonial-card-large:hover::before {
  transform: scaleX(1);
}

.testimonial-video-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--secondary);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 16px;
  transition: var(--transition);
}

.testimonial-card-large:hover .testimonial-video-badge {
  background: var(--secondary-light);
}

.testimonial-video-badge svg {
  width: 14px;
  height: 14px;
}

/* Before/After Section */
.before-after-section {
  background: var(--cream);
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

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

.before-after-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.before-after-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.before-after-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.before-after-header > div {
  padding: 20px;
  text-align: center;
  transition: var(--transition);
}

.before-after-header > div:first-child {
  background: #FEE2E2;
}

.before-after-header > div:last-child {
  background: #D1FAE5;
}

.before-after-card:hover .before-after-header > div:first-child {
  background: #FECACA;
}

.before-after-card:hover .before-after-header > div:last-child {
  background: #A7F3D0;
}

.before-after-header h5 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.before-after-header p {
  font-size: 0.8rem;
}

.before-after-content {
  padding: 24px;
}

.before-after-content p {
  font-style: italic;
  line-height: 1.8;
  font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 60px 0;
}

.stats-section .stat-number {
  color: var(--white);
}

.stats-section .stat-label {
  color: rgba(255,255,255,0.8);
}

/* ============ BOOKING PAGE ============ */
.booking-section {
  background: var(--off-white);
  padding-top: 120px;
  padding-bottom: var(--section-padding);
}

.booking-wrapper {
  max-width: 880px;
  margin: 0 auto;
}

.booking-progress {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}

.booking-step-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
}

.booking-step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--cream);
  color: var(--text-muted);
  transition: var(--transition);
}

.booking-step-indicator.active .booking-step-number,
.booking-step-indicator.completed .booking-step-number {
  background: var(--secondary);
  color: var(--white);
}

.booking-step-indicator.completed .booking-step-number {
  background: var(--accent);
}

.booking-step-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  display: none;
}

@media (min-width: 640px) {
  .booking-step-label { display: block; }
}

.booking-step-indicator.active .booking-step-label {
  color: var(--text);
}

.booking-connector {
  width: 40px;
  height: 2px;
  background: var(--cream);
}

.booking-step-indicator.completed + .booking-connector {
  background: var(--accent);
}

.booking-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.04);
}

@media (max-width: 640px) {
  .booking-form-card { padding: 24px; }
}

.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
  animation: stepFadeIn 0.3s ease;
}

@keyframes stepFadeIn {
  from { opacity: 0; transform: translateX(15px); }
  to { opacity: 1; transform: translateX(0); }
}

.booking-step h3 {
  margin-bottom: 24px;
  text-align: center;
  font-size: 1.4rem;
}

.service-options {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 2px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}

.service-option:hover {
  border-color: var(--secondary);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.service-option.selected {
  border-color: var(--secondary);
  background: rgba(224, 122, 95, 0.04);
  box-shadow: var(--shadow-md);
}

.service-option-radio {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(0,0,0,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.service-option.selected .service-option-radio {
  border-color: var(--secondary);
  background: var(--secondary);
}

.service-option-radio svg {
  width: 12px;
  height: 12px;
  color: var(--white);
  opacity: 0;
}

.service-option.selected .service-option-radio svg {
  opacity: 1;
}

.service-option-info {
  flex: 1;
}

.service-option-info h5 {
  font-size: 1rem;
  margin-bottom: 3px;
  color: var(--dark);
}

.service-option-info p {
  font-size: 0.85rem;
}

.service-option-price {
  margin-left: auto;
  font-weight: 700;
  color: var(--secondary);
  font-size: 0.95rem;
}

.date-time-grid {
  display: grid;
  gap: 30px;
  margin-bottom: 28px;
}

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

.date-grid, .time-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

@media (max-width: 480px) {
  .date-grid { grid-template-columns: repeat(4, 1fr); }
}

.date-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  background: var(--cream);
}

.date-cell:hover:not(.disabled) {
  background: var(--secondary-light);
  color: var(--white);
}

.date-cell.selected {
  background: var(--secondary);
  color: var(--white);
}

.date-cell.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.date-cell.header {
  background: transparent;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
}

@media (max-width: 480px) {
  .date-cell.header:nth-child(n+5) { display: none; }
}

.time-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.time-slot {
  padding: 12px;
  text-align: center;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  background: var(--cream);
}

.time-slot:hover:not(.disabled) {
  background: var(--secondary-light);
  color: var(--white);
}

.time-slot.selected {
  background: var(--secondary);
  color: var(--white);
}

.time-slot.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.booking-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  gap: 14px;
}

.booking-navigation button {
  flex: 1;
}

.booking-navigation button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.booking-summary {
  background: var(--cream);
  padding: 24px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.booking-summary h4 {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.booking-summary-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 0.9rem;
}

.booking-summary-item:last-child {
  border-bottom: none;
  font-weight: 700;
  font-size: 1rem;
  padding-top: 14px;
}

.booking-confirmation {
  text-align: center;
  padding: 40px 0;
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.confirmation-icon svg {
  width: 40px;
  height: 40px;
  color: var(--white);
}

.booking-confirmation h3 {
  color: var(--accent);
  margin-bottom: 14px;
}

/* ============ MOBILE ADJUSTMENTS ============ */
@media (max-width: 640px) {
  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .about-float-card {
    bottom: -15px;
    right: 15px;
    padding: 18px;
  }
}

/* ============ PRINT ============ */
@media print {
  .navbar, .floating-buttons, .chatbot-toggle, .chatbot-overlay, .mobile-menu {
    display: none !important;
  }
  .hero, .page-header {
    padding-top: 50px;
  }
}
