/* =============================================
   PuppyPrice – style.css
   Color palette inspired by warm brown/beige tones
   matching the reference design
============================================= */

/* ─── CSS Custom Properties ─── */
:root {
  --brown-900: #3b1f10;
  --brown-800: #5c2e10;
  --brown-700: #7a3b16;
  --brown-600: #9c4f20;
  --brown-500: #b5641e;
  --brown-400: #c97d3a;
  --brown-300: #d9a06a;
  --brown-200: #e8c9a0;
  --brown-100: #f5e8d4;
  --cream-bg: #fdf8f2;
  --cream-dark: #f0e8da;
  --white: #ffffff;
  --text-dark: #2c1a0e;
  --text-mid: #5a3a25;
  --text-light: #8a6a55;
  --text-muted: #b09080;
  --shadow-sm: 0 2px 8px rgba(90, 50, 20, 0.08);
  --shadow-md: 0 6px 24px rgba(90, 50, 20, 0.12);
  --shadow-lg: 0 16px 48px rgba(90, 50, 20, 0.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --max-width: 1200px;
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--cream-bg);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition), opacity var(--transition);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* ─── Container ─── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--brown-800);
  border-color: var(--brown-800);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(90, 50, 20, 0.3);
}

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

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

.btn-outline-brown {
  background: transparent;
  color: var(--brown-700);
  border-color: var(--brown-400);
}

.btn-outline-brown:hover {
  background: var(--brown-100);
  border-color: var(--brown-700);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--brown-800);
  border-color: var(--white);
}

.btn-light:hover {
  background: var(--cream-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn.full-width {
  width: 100%;
}

/* ─── Section Tags ─── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brown-100);
  color: var(--brown-700);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-tag.center {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}

/* ─── Section Titles ─── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

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

.section-subtitle {
  text-align: center;
  color: var(--text-mid);
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* ─── Paw Icon ─── */
.paw-icon {
  font-size: 1em;
}

/* =============================================
   NAVBAR
============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 242, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(185, 130, 80, 0.12);
  transition: box-shadow var(--transition), background var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.nav-logo-img {
  height: 38px;
  width: auto;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brown-800);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
  color: var(--brown-700);
  background: var(--brown-100);
}

.nav-link.nav-cta {
  background: var(--brown-700);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius-md);
}

.nav-link.nav-cta:hover {
  background: var(--brown-800);
}

.close-menu {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.hamburger:hover {
  background: var(--brown-100);
}

.bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown-800);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(59, 31, 16, 0.4);
  z-index: 998;
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity var(--transition);
}

.mobile-overlay.visible {
  opacity: 1;
}

/* =============================================
   HERO SECTION
============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(59, 31, 16, 0.82) 0%,
      rgba(90, 50, 20, 0.65) 50%,
      rgba(180, 120, 60, 0.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 24px 80px;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: var(--cream-bg);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Leaf decorations */
.hero-leaf {
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 220px;
  height: 220px;
  opacity: 0.12;
  background: radial-gradient(circle, var(--brown-300), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-leaf-left {
  left: -60px;
}

.hero-leaf-right {
  right: -60px;
  transform: scaleX(-1);
}

/* =============================================
   STATS STRIP
============================================= */
.stats-strip {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--brown-100);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 48px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--brown-700);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--brown-200);
}

/* =============================================
   ABOUT SECTION
============================================= */
.about {
  padding: 100px 0;
  background: var(--cream-bg);
}

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

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

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--brown-100);
}

.about-badge-float .paw-icon {
  font-size: 2rem;
}

.about-badge-float div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.about-badge-float strong {
  font-size: 1rem;
  color: var(--brown-700);
}

.about-badge-float span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.7;
}

.about-body {
  color: var(--text-mid);
  font-size: 0.97rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 8px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-mid);
}

.feature-icon {
  color: var(--brown-600);
  font-weight: 700;
  margin-top: 2px;
  flex-shrink: 0;
}

/* =============================================
   SERVICES SECTION
============================================= */
.services {
  padding: 100px 0;
  background: var(--cream-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.service-icon-wrap {
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img {
  transform: scale(1.06);
}

.service-card-body {
  padding: 24px;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brown-700);
  transition: gap var(--transition), color var(--transition);
}

.service-link:hover {
  color: var(--brown-900);
  gap: 8px;
}

/* =============================================
   COURSE BANNER
============================================= */
.course-banner {
  padding: 100px 0;
  background: var(--cream-bg);
}

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

.course-image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.course-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.course-image-wrap:hover .course-img {
  transform: scale(1.04);
}

.course-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.course-desc {
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.75;
}

/* =============================================
   PRICING SECTION
============================================= */
.pricing {
  padding: 100px 0;
  background: var(--brown-900);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(180, 100, 30, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.pricing .section-tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--brown-200);
}

.pricing .section-title {
  color: var(--white);
}

.pricing .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.featured {
  background: var(--white);
  border-color: var(--brown-300);
  transform: scale(1.04);
}

.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.pricing-badge-pill {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brown-500);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-plan {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.pricing-card.featured .pricing-plan {
  color: var(--text-dark);
}

.pricing-period {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-300);
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 14px;
  border-radius: 100px;
  margin-top: 4px;
}

.pricing-card.featured .pricing-period {
  color: var(--brown-700);
  background: var(--brown-100);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
}

.pricing-card.featured .pricing-features li {
  color: var(--text-mid);
}

.pricing-features li.inactive {
  opacity: 0.35;
  text-decoration: line-through;
}

.check-icon {
  color: var(--brown-300);
  font-weight: 900;
  flex-shrink: 0;
}

.pricing-card.featured .check-icon {
  color: var(--brown-600);
}

.pricing-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
  margin-top: 40px;
  font-style: italic;
}

/* =============================================
   WHY US SECTION
============================================= */
.why-us {
  padding: 100px 0;
  background: var(--cream-bg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--brown-100);
  transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.why-icon-circle {
  font-size: 2rem;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--brown-100);
  border-radius: 50%;
}

.why-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.why-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* =============================================
   TESTIMONIALS
============================================= */
.testimonials {
  padding: 100px 0;
  background: var(--cream-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--brown-100);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.stars {
  color: var(--brown-500);
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-style: normal;
  border-top: 1px solid var(--brown-100);
  padding-top: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--brown-200);
}

.testimonial-author div {
  display: flex;
  flex-direction: column;
}

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

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* =============================================
   CTA SECTION
============================================= */
.cta-section {
  padding: 100px 24px;
  background: linear-gradient(135deg, var(--brown-700) 0%, var(--brown-900) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.04);
}

.cta-section::before {
  width: 500px;
  height: 500px;
  top: -200px;
  left: -100px;
}

.cta-section::after {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -50px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* =============================================
   CONTACT SECTION
============================================= */
.contact {
  padding: 100px 0;
  background: var(--cream-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

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

.contact-desc {
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.7;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-item strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-item a,
.contact-item span {
  font-size: 0.95rem;
  color: var(--text-mid);
}

.contact-item a:hover {
  color: var(--brown-700);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--brown-100);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}

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

label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

input,
textarea,
select {
  padding: 12px 16px;
  border: 1.5px solid var(--brown-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--cream-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--brown-500);
  box-shadow: 0 0 0 3px rgba(181, 100, 30, 0.12);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

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

.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
}

/* =============================================
   FOOTER
============================================= */
.footer {
  background: linear-gradient(180deg, #1a0f08 0%, #2c1a0e 100%);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(181, 100, 30, 0.3), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 80px;
}

.footer-logo .logo-text {
  color: var(--white);
  font-size: 1.6rem;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  flex-shrink: 0;
}

.footer-tagline {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 360px;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

.social-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--brown-600);
  color: var(--white);
  border-color: var(--brown-500);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 28px;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--brown-500);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
}

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

/* Specific styling for cities to make it more compact if needed */
.footer-cities {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.footer-newsletter-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-input-wrapper {
  width: 100%;
}

.footer-newsletter-form input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 16px 20px;
  font-size: 1rem;
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.footer-newsletter-form input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--brown-500);
  box-shadow: 0 0 0 4px rgba(181, 100, 30, 0.15);
}

.footer-newsletter-form .btn-primary {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  margin-top: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 48px 0;
  background: rgba(0, 0, 0, 0.1);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--brown-300);
}

/* =============================================
   ANIMATIONS
============================================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.hero-badge {
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-title {
  animation: fadeInUp 0.6s ease 0.35s both;
}

.hero-desc {
  animation: fadeInUp 0.6s ease 0.5s both;
}

.hero-actions {
  animation: fadeInUp 0.6s ease 0.65s both;
}

/* Scroll-reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* =============================================
   RESPONSIVE – TABLET (≤ 900px)
============================================= */
@media (max-width: 900px) {

  .about-grid,
  .course-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img {
    height: 340px;
  }

  .about-badge-float {
    right: 0;
    bottom: -16px;
  }

  .course-img {
    height: 300px;
  }

  .services-grid,
  .pricing-grid,
  .why-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-tagline {
    max-width: 480px;
  }

  .footer-heading::after {
    left: 0;
  }

  .stat-item {
    padding: 12px 24px;
  }
}

/* =============================================
   RESPONSIVE – MOBILE (≤ 600px)
============================================= */
@media (max-width: 600px) {

  /* Nav */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 280px;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 48px;
    gap: 8px;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(59, 31, 16, 0.15);
  }

  .close-menu {
    display: block;
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 2.25rem;
    color: var(--brown-600);
    cursor: pointer;
    line-height: 1;
    z-index: 1001;
    padding: 10px;
    transition: color var(--transition);
  }

  .close-menu:hover {
    color: var(--brown-500);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .mobile-overlay {
    display: block;
  }

  .nav-link {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .nav-link.nav-cta {
    margin-top: 12px;
    text-align: center;
    justify-content: center;
  }

  /* Hero */
  .hero-content {
    margin-left: 0;
    padding: 100px 24px 60px;
    max-width: 100%;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Stats */
  .stats-grid {
    gap: 0;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    width: 50%;
    padding: 16px;
  }

  /* Grids → single column */
  .services-grid,
  .pricing-grid,
  .why-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .pricing-card.featured {
    transform: none;
    order: -1;
  }

  /* Contact Form */
  .contact-form {
    padding: 28px 20px;
  }

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

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links a {
    justify-content: center;
  }

  .footer-links a:hover {
    transform: translateY(-2px);
  }

  .footer-newsletter-form .btn-primary {
    width: 100%;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 16px;
  }

  .footer-socials {
    justify-content: center;
  }

  /* General spacing */
  .about,
  .services,
  .course-banner,
  .pricing,
  .why-us,
  .testimonials,
  .contact {
    padding: 72px 0;
  }

  .contact-form {
    padding: 24px;
  }
}

/* =============================================
   SCROLLBAR STYLING
============================================= */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--cream-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--brown-300);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brown-500);
}

/* =============================================
   FAQ SECTION
============================================= */
.faq {
  padding: 100px 0;
  background: var(--white);
}

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

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
}

.faq-item {
  background: var(--cream-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--brown-100);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: var(--brown-300);
  box-shadow: var(--shadow-sm);
}

.faq-item.active {
  background: var(--white);
  border-color: var(--brown-400);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-right: 20px;
  line-height: 1.4;
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--brown-100);
  color: var(--brown-700);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: var(--brown-700);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 32px 32px;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-contact-cta {
  margin-top: 64px;
  text-align: center;
  padding: 40px;
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--brown-300);
}

.faq-contact-cta h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.faq-contact-cta p {
  color: var(--text-mid);
  margin-bottom: 24px;
}

.faq-cta-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.faq-cta-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--brown-700);
}

.faq-cta-link:hover {
  color: var(--brown-900);
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq-question {
    padding: 20px 24px;
  }

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

  .faq-cta-links {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
}