/* ==========================================================================
   KAMPALA COLLEGE (LUMINA) — PREMIUM STYLESHEET
   ========================================================================== */

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

:root {
  /* Colors */
  --primary:           #15803d; /* Forest Green */
  --primary-hover:     #166534; /* Darker Forest Green */
  --primary-deep:      #14532d; /* Deepest Forest Green */
  --accent:            #22c55e; /* Bright Accent Green */
  --bg-cream:          #fbf9f6; /* Warm Cream/Beige Background */
  --bg-white:          #ffffff;
  --text-dark:         #111827; /* Charcoal/Almost Black */
  --text-muted:        #4b5563; /* Gray body text */
  --border-light:      #f0ede9; /* Subtle warm border */
  
  /* Fonts */
  --font:              'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  /* Borders & Shadows */
  --radius-sm:         6px;
  --radius-md:         12px;
  --radius-lg:         16px;
  --radius-xl:         24px;
  --shadow-sm:         0 2px 8px rgba(0, 0, 0, 0.03);
  --shadow-md:         0 8px 24px rgba(20, 83, 45, 0.06);
  --shadow-lg:         0 16px 40px rgba(20, 83, 45, 0.08);
  
  --transition:        all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   SHARED UTILITIES & COMMON STYLES
   ========================================================================== */
.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.9px;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.section-title-left {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.8px;
  margin-bottom: 10px;
  line-height: 1.25;
}

.section-sub-left {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.65;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-deep);
  color: var(--bg-white);
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(20, 83, 45, 0.25);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--primary-hover);
  border: 1.5px solid var(--primary);
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-ghost:hover {
  background: rgba(21, 128, 61, 0.05);
  border-color: var(--primary-hover);
  color: var(--primary-hover);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--bg-white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--bg-white);
}

.btn-enroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--primary);
  border: 1.5px solid rgba(21, 128, 61, 0.3);
  border-radius: 6px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  min-width: 80px;
}

.btn-enroll:hover {
  background: rgba(21, 128, 61, 0.06);
  border-color: var(--primary);
  color: var(--primary-hover);
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.01);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 750;
  color: var(--primary-deep);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.4px;
}

.nav-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-logo-img[src=""] {
  display: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  flex: 1;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  transition: var(--transition);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.nav-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-icon-btn:hover {
  color: var(--primary);
  background: rgba(21, 128, 61, 0.05);
}

.nav-actions .btn-primary {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 6px;
}

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  z-index: 110;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}

.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  background: var(--bg-cream);
  padding: 80px 0 72px;
  overflow: hidden;
}

.hero-dotted-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(21, 128, 61, 0.04) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 2;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: #dcfce7; /* Light Green */
  color: var(--primary-hover);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: -0.1px;
}

.hero-title {
  font-size: 52px;
  font-weight: 850;
  line-height: 1.1;
  color: var(--text-dark);
  letter-spacing: -1.8px;
  margin-bottom: 20px;
}

.hero-title-accent {
  color: var(--primary);
}

.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

/* Overlapping Avatars Rating */
.hero-rating-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar-group {
  display: flex;
  align-items: center;
}

.avatar-group img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-cream);
  object-fit: cover;
  margin-right: -10px;
}

.avatar-group img:last-child {
  margin-right: 0;
}

.hero-rating-wrapper .badge-card-text {
  display: flex;
  flex-direction: column;
}

.hero-rating-wrapper strong {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
}

.hero-rating-wrapper span {
  font-size: 12px;
  color: var(--text-muted);
}

/* Hero Visual & Floating Progress Card */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-img-wrap {
  width: 100%;
  max-width: 460px;
  height: 380px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #eae8e4;
}

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

.hero-video {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-xl);
}

.hero-video-wrap {
  aspect-ratio: 16 / 9;
  height: auto !important;
}

/* Floating progress card */
.hero-progress-card {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 230px;
  border: 1px solid var(--border-light);
  animation: float 4s ease-in-out infinite;
}

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

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

.progress-card-content {
  flex: 1;
}

.progress-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.progress-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}

.progress-card-pct {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
}

.progress-card-bar {
  height: 6px;
  background: #f1f3f0;
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 6px;
}

.progress-card-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 100px;
}

.progress-card-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  display: block;
}

/* ==========================================================================
   FEATURES (THE LUMINA ADVANTAGE)
   ========================================================================== */
.features {
  padding: 96px 0;
  background: var(--bg-white);
}

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

.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(21, 128, 61, 0.15);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: #e8f5e9; /* Light green tint */
  color: var(--primary);
}

/* Alias old color modifier classes → unified green theme */
.feature-icon-blue,
.feature-icon-purple,
.feature-icon-amber {
  background: #e8f5e9;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 750;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   CURATED COLLECTIONS (FEATURED PROGRAMS)
   ========================================================================== */
.collections {
  padding: 88px 0;
  background: var(--bg-cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.collections-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.view-all-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.view-all-link:hover {
  color: var(--primary-hover);
  text-decoration: none;
  transform: translateX(3px);
}

/* Category label dividers */
.collections-category-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  margin-top: 36px;
}

.collections-category-label:first-of-type {
  margin-top: 0;
}

.collections-category-label span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.collections-category-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(20, 83, 45, 0.08);
}

/* Featured (2-column) grid */
.collections-grid-featured {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.collection-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.collection-card-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  background: #eeece8;
}

.collection-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.collection-card:hover .collection-card-img-wrap img {
  transform: scale(1.04);
}

.collection-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.collection-card-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  text-transform: capitalize;
  background: #e8f5e9;
  color: var(--primary-hover);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.collection-card-content h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -0.4px;
}

.collection-card-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

/* Card footer wrapper showing price/meta and button */
.collection-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}

.collection-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
}

.collection-price small {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

.collection-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.collection-meta span {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.collection-meta span:last-child {
  color: var(--text-muted);
  font-weight: 500;
}

/* Category 2 Grid (Quick Skills) - Styled as 3 features cards */
.collections-grid-small {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.collection-card-small {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.collection-card-small:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(21, 128, 61, 0.15);
}

.collection-card-small .collection-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8f5e9;
  color: var(--primary);
  margin-bottom: 16px;
}

.collection-card-small h4 {
  font-size: 15px;
  font-weight: 750;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.collection-card-small p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   LIFE AT LUMINA SECTION (CAROUSEL LAYOUT)
   ========================================================================== */
.life-section {
  padding: 96px 0;
  background: var(--bg-white);
}

.life-header {
  margin-bottom: 40px;
}

.life-carousel-container {
  overflow: hidden;
  width: 100%;
  margin-bottom: 32px;
}

.life-grid {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  gap: 28px;
  margin-bottom: 0;
}

.life-image-card {
  flex: 0 0 calc(50% - 14px);
  width: auto;
  height: 380px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #eeece8;
}

.life-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-controls,
.carousel-controls-left {
  display: flex;
  gap: 12px;
}

.carousel-controls {
  justify-content: center;
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.carousel-arrow:hover {
  background: var(--bg-cream);
  color: var(--primary);
  border-color: var(--primary);
  transform: scale(1.02);
}

/* ==========================================================================
   STUDENT SUCCESS SECTION (TESTIMONIALS)
   ========================================================================== */
.testimonials-section {
  padding: 96px 0;
  background: var(--bg-cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.testimonials-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.testimonials-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.testimonials-left .section-sub-left {
  margin-bottom: 32px;
}

/* Testimonial Card Styling */
.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  border-left: 6px solid var(--primary); /* Left Green Accent Border */
  position: relative;
}

.quote-icon {
  font-size: 72px;
  line-height: 1;
  color: rgba(21, 128, 61, 0.08);
  font-family: Georgia, serif;
  position: absolute;
  top: 16px;
  right: 32px;
  user-select: none;
}

.testimonial-quote {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-light);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 14.5px;
  font-weight: 750;
  color: var(--text-dark);
}

.author-role {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* ==========================================================================
   CTA BANNER SECTION
   ========================================================================== */
.cta-banner {
  background: var(--primary-deep);
  padding: 88px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  pointer-events: none;
}

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

.cta-banner h2 {
  font-size: 40px;
  font-weight: 850;
  color: var(--bg-white);
  letter-spacing: -1.2px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  line-height: 1.75;
}

.cta-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  max-width: 480px;
  margin: 0 auto;
}

.cta-form input {
  flex: 1;
  padding: 13px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: var(--bg-white);
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: var(--transition);
}

.cta-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.cta-form input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.cta-form .btn-primary {
  background: var(--bg-white);
  color: var(--primary-deep);
  font-weight: 700;
  padding: 13px 24px;
}

.cta-form .btn-primary:hover {
  background: #f4fcf7;
  color: var(--primary-hover);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
  background: var(--bg-cream);
  border-top: 1px solid var(--border-light);
  padding: 64px 0 0;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  font-size: 16px;
  font-weight: 750;
  color: var(--primary-deep);
  letter-spacing: -0.4px;
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.footer-social a:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: var(--bg-white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 13.5px;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-contact-item {
  white-space: nowrap;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 24px 32px;
  text-align: left;
  max-width: 1120px;
  margin: 0 auto;
}

.footer-bottom span {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ==========================================================================
   RESPONSIVE LAYOUTS — BREAKPOINTS
   ========================================================================== */

/* -- TABLET PORTRAIT & LANDSCAPE (≤ 1024px) -- */
@media (max-width: 1024px) {
  .hero-title { font-size: 42px; }
  .features-grid { gap: 20px; }
  .collections-grid-small { gap: 18px; }
}

/* -- MOBILE TRANSITION (≤ 768px) -- */
@media (max-width: 768px) {
  /* Common spacing */
  .section-title { font-size: 28px; }
  .section-title-left { font-size: 26px; }
  
  /* Navbar */
  .nav-hamburger {
    display: flex !important; /* Force hamburger toggle to display */
  }
  .nav-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 12px 24px;
    gap: 0;
  }
  .nav-logo { flex: 1; }
  .nav-links,
  .nav-actions {
    display: none;
    width: 100%;
  }
  
  .nav-inner.nav-open .nav-links,
  .nav-inner.nav-open .nav-actions {
    display: flex;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 0;
    padding: 16px 0 8px;
    border-top: 1px solid var(--border-light);
    margin-top: 12px;
  }
  .nav-links li a {
    display: block;
    padding: 10px 0;
    font-size: 14.5px;
  }
  .nav-actions {
    padding: 12px 0 8px;
    gap: 12px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  /* Hero */
  .hero { padding: 48px 0; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-content { align-items: center; text-align: center; }
  .hero-sub { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-rating-wrapper { justify-content: center; }
  .hero-visual { justify-content: center; }
  .hero-img-wrap { max-width: 100%; height: 320px; }
  .hero-progress-card { left: 50%; transform: translateX(-50%); bottom: -16px; }
  @keyframes float {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -6px); }
  }

  /* Features */
  .features { padding: 64px 0; }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-card { padding: 28px 24px; }

  /* Collections */
  .collections { padding: 64px 0; }
  .collections-grid-featured {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .collections-grid-small {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Life */
  .life-section { padding: 64px 0; }
  .life-grid {
    gap: 20px;
  }
  .life-image-card {
    flex: 0 0 100%;
    height: 280px;
  }

  /* Testimonials */
  .testimonials-section { padding: 64px 0; }
  .testimonials-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .testimonials-left { align-items: center; text-align: center; }
  .carousel-controls-left { justify-content: center; }
  .testimonial-card { padding: 28px; }

  /* CTA */
  .cta-banner { padding: 64px 24px; }
  .cta-banner h2 { font-size: 30px; }
  .cta-form { flex-direction: column; width: 100%; }
  .cta-form input { width: 100%; max-width: 100%; }
  .cta-form .btn-primary { width: 100%; }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

/* -- SMALL MOBILE (≤ 480px) -- */
@media (max-width: 480px) {
  body { font-size: 14px; }
  .section-inner { padding: 0 20px; }
  
  .hero-title { font-size: 32px; letter-spacing: -1px; }
  .hero-img-wrap { height: 240px; }
  .hero-progress-card { width: 200px; padding: 12px; }
  .progress-card-title { font-size: 12px; }
  
  .collection-card-img-wrap { height: 160px; }
  .collection-card-content { padding: 20px; }
  .collection-card-content h3 { font-size: 18px; }
  
  .life-image-card { height: 200px; }
  
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { text-align: center; }
}
