/* ==========================================================================
   Glam Room by Asantewaa — Base & component styles
   (Editorial overrides: home.css | Mobile: mobile.css)
   ========================================================================== */

:root {
  --terracotta: #C75B39;
  --gold: #D4A853;
  --warm-cream: #FFF8F0;
  --deep-brown: #2C1810;
  --kente-red: #CE1126;
  --kente-green: #006B3F;
  --kente-gold: #FCD116;

  --bg-primary: var(--warm-cream);
  --bg-secondary: #FFF0E0;
  --text-primary: var(--deep-brown);
  --text-secondary: #5C4033;
  --text-muted: #8B7355;
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-border: rgba(212, 168, 83, 0.35);
  --glass-shadow: 0 8px 32px rgba(44, 24, 16, 0.08);
  --card-hover-shadow: 0 16px 48px rgba(199, 91, 57, 0.18);
  --nav-bg: rgba(255, 248, 240, 0.85);
  --accent: var(--terracotta);
  --accent-light: var(--gold);
  --cursor-color: var(--gold);
  --skeleton-bg: rgba(212, 168, 83, 0.15);
  --skeleton-shine: rgba(255, 255, 255, 0.4);
}

html.dark {
  --bg-primary: #1A0F0A;
  --bg-secondary: #2C1810;
  --text-primary: #FFF8F0;
  --text-secondary: #E8D5C0;
  --text-muted: #A89080;
  --glass-bg: rgba(44, 24, 16, 0.6);
  --glass-border: rgba(212, 168, 83, 0.25);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --card-hover-shadow: 0 16px 48px rgba(212, 168, 83, 0.15);
  --nav-bg: rgba(26, 15, 10, 0.9);
  --accent: var(--gold);
  --accent-light: var(--terracotta);
  --cursor-color: var(--gold);
  --skeleton-bg: rgba(212, 168, 83, 0.1);
  --skeleton-shine: rgba(255, 255, 255, 0.08);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

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

/* Custom Cursor (desktop only) */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--cursor-color);
}

.cursor-ring {
  width: 32px;
  height: 32px;
  border: 2px solid var(--cursor-color);
  opacity: 0.5;
}

body.no-custom-cursor .cursor-dot,
body.no-custom-cursor .cursor-ring {
  display: none;
}

/* Kente Pattern Background */
.kente-bg {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23D4A853' stroke-width='0.5' opacity='0.15'%3E%3Cpath d='M0 0h30v30H0zM30 30h30v30H30z'/%3E%3Cpath d='M15 0v30M0 15h30M45 30v30M30 45h30'/%3E%3Cpath d='M0 0l30 30M30 0L0 30M30 30l30 30M60 30L30 60'/%3E%3C/g%3E%3Cg fill='%23CE1126' opacity='0.06'%3E%3Crect x='0' y='0' width='10' height='10'/%3E%3Crect x='50' y='50' width='10' height='10'/%3E%3C/g%3E%3Cg fill='%23006B3F' opacity='0.06'%3E%3Crect x='50' y='0' width='10' height='10'/%3E%3Crect x='0' y='50' width='10' height='10'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
}

.kente-border-top {
  border-top: 4px solid transparent;
  border-image: repeating-linear-gradient(
    90deg,
    var(--kente-red) 0px,
    var(--kente-red) 20px,
    var(--kente-gold) 20px,
    var(--kente-gold) 40px,
    var(--kente-green) 40px,
    var(--kente-green) 60px
  ) 4;
}

.ghana-stripe {
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--kente-red) 33.33%,
    var(--kente-gold) 33.33%,
    var(--kente-gold) 66.66%,
    var(--kente-green) 66.66%
  );
}

/* Glass Card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  box-shadow: var(--glass-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-hover-shadow);
  border-color: var(--gold);
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  transition: background 0.4s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 4px 24px rgba(44, 24, 16, 0.1);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.875rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--accent);
}

.nav-brand span {
  color: var(--text-primary);
}

.nav-links {
  display: none;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s;
}

.theme-toggle:hover {
  background: var(--gold);
  color: var(--deep-brown);
  transform: rotate(15deg);
}

.hamburger {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 2px;
}

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

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  padding: 5rem 2rem 2rem;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid var(--glass-border);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 44px;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, var(--terracotta), #E07A5F);
  color: white;
  box-shadow: 0 4px 16px rgba(199, 91, 57, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(199, 91, 57, 0.45);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--glass-bg);
  color: var(--text-primary);
  border: 2px solid var(--gold);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--deep-brown);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
}

.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: ripple 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem 4rem;
}

.hero-parallax {
  position: absolute;
  inset: -20%;
  z-index: 0;
  will-change: transform;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212, 168, 83, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(199, 91, 57, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-badge .flag {
  font-size: 1.1rem;
}

.hero-title {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.hero-typewriter {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: var(--accent);
  min-height: 1.3em;
  margin-bottom: 1.5rem;
}

.hero-typewriter::after {
  content: '|';
  animation: blink 0.8s step-end infinite;
  color: var(--gold);
}

@keyframes blink {
  50% { opacity: 0; }
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}

.hero-image-frame {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 3px solid var(--gold);
  box-shadow: 0 20px 60px rgba(44, 24, 16, 0.2);
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--gold) 50%, var(--kente-green) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: white;
  text-align: center;
  padding: 2rem;
}

.hero-image-placeholder i {
  font-size: 4rem;
  opacity: 0.7;
}

.hero-image-placeholder p {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0.85;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-accent {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 3px solid var(--kente-red);
  border-radius: 1rem;
  top: -12px;
  right: -12px;
  z-index: -1;
}

.hero-image-accent-2 {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--kente-gold);
  border-radius: 50%;
  bottom: -10px;
  left: -10px;
  z-index: -1;
  opacity: 0.6;
}

/* Section Shared */
.section {
  padding: 5rem 1.5rem;
  position: relative;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

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

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Hero entrance */
.hero-animate {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 0.8s ease forwards;
}

.hero-animate-delay-1 { animation-delay: 0.15s; }
.hero-animate-delay-2 { animation-delay: 0.3s; }
.hero-animate-delay-3 { animation-delay: 0.45s; }
.hero-animate-delay-4 { animation-delay: 0.6s; }

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

/* Services — 2 columns default (pairs); 3 on large screens */
#services-grid.services-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
}

.services-grid > .service-card,
.services-grid > .skeleton,
.services-grid > article,
.services-grid > .service-card-link {
  min-width: 0;
}

.service-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.service-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--terracotta), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.35rem;
}

.service-badge {
  padding: 0.25rem 0.75rem;
  background: var(--kente-red);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
}

.service-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--glass-border);
}

.service-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
}

.service-duration {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Skeleton Loader */
.skeleton {
  background: var(--skeleton-bg);
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    var(--skeleton-shine),
    transparent
  );
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.25rem 0.75rem;
}

.stat-value {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

.quote-card {
  padding: 2.5rem;
  position: relative;
}

.quote-card::before {
  content: '\201C';
  font-family: 'Poppins', sans-serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}

.quote-text {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}

.quote-author {
  font-weight: 600;
  color: var(--accent);
  font-size: 1rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item-inner {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 24, 16, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-overlay span {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  padding: 0.5rem;
}

.gallery-placeholder-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Testimonials */
.testimonials-wrapper {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.testimonial-carousel {
  overflow: hidden;
  position: relative;
}

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

.testimonial-slide {
  min-width: 100%;
  padding: 0 0.5rem;
}

.testimonial-card {
  padding: 2.5rem;
  text-align: center;
}

.testimonial-stars {
  color: var(--kente-gold);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.15em;
}

.testimonial-text {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.carousel-btn:hover {
  background: var(--gold);
  color: var(--deep-brown);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--glass-border);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-card {
  padding: 2rem;
}

.contact-card h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-card h3 i {
  color: var(--accent);
}

.contact-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.contact-card a {
  color: var(--accent);
  font-weight: 500;
  transition: opacity 0.2s;
}

.contact-card a:hover {
  opacity: 0.8;
}

.map-placeholder {
  width: 100%;
  height: 200px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--kente-green), var(--deep-brown));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: white;
  margin-top: 1rem;
}

.map-placeholder i {
  font-size: 2rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-primary);
  transition: background 0.2s, transform 0.2s, color 0.2s;
}

.social-link:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-3px);
}

.contact-cta {
  text-align: center;
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

/* Footer */
.footer {
  padding: 3rem 1.5rem 2rem;
  background: var(--bg-secondary);
}

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

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

.footer-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.footer-brand span {
  color: var(--text-primary);
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
}

.whatsapp-float.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Business Page Hero */
.business-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 1.5rem 4rem;
  text-align: center;
}

.business-hero-inner {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.business-hero .hero-buttons {
  justify-content: center;
  width: 100%;
}

.business-hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  color: var(--accent);
  margin-bottom: 1rem;
}

.business-hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.business-hours {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--glass-border);
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.business-hours i {
  color: var(--accent);
}

/* Responsive */
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-icon {
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
  }

  .service-name {
    font-size: 1.2rem;
  }

  .service-desc {
    font-size: 0.88rem;
    -webkit-line-clamp: unset;
    display: block;
    overflow: visible;
  }

  .service-meta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero-inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content {
    text-align: left;
  }

  .hero-subtitle {
    margin: 0 0 2rem;
  }

  .hero .hero-content .hero-buttons {
    justify-content: flex-start;
  }

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

  .footer-top {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

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

  .hamburger {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

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

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

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

  .section {
    padding: 6rem 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.deposit-return-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1rem 1.25rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #fff;
  background: #1a6b3c;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.deposit-return-banner[data-type='pending'] {
  background: #8a5a00;
}
