/* ==========================================================================
   AutoPflege AFK - Luxury Auto Detailing & Paint Protection Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Orbitron:wght@700;800;900&display=swap');

:root {
  --bg-dark: #070A10;
  --bg-surface: #0B0F17;
  --bg-card: rgba(15, 23, 42, 0.75);
  --bg-card-hover: rgba(22, 33, 56, 0.85);
  
  --accent-cyan: #FF1A1A;
  --accent-cyan-glow: rgba(255, 26, 26, 0.35);
  --accent-blue: #FF1A1A;
  --accent-gold: #F59E0B;
  --accent-whatsapp: #25D366;
  
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-dark: #05080E;
  
  --border-light: rgba(255, 255, 255, 0.08);
  --border-cyan: rgba(255, 26, 26, 0.25);
  --border-cyan-bright: rgba(255, 26, 26, 0.6);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
}

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

button, input, select, textarea {
  font-family: inherit;
}

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

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Typography Utilities */
.heading-font {
  font-family: 'Orbitron', 'Inter', sans-serif;
}

.text-gradient-cyan {
  background: linear-gradient(135deg, #FF1A1A 0%, #FF6666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #F59E0B 0%, #FCD34D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sub-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  background: rgba(255, 26, 26, 0.08);
  border: 1px solid var(--border-cyan);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.15;
  color: #FFFFFF;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 12px;
  font-weight: 300;
}

/* Glassmorphism Cards */
.glass-card {
  background: linear-gradient(135deg, rgba(20, 30, 48, 0.65) 0%, rgba(10, 15, 26, 0.85) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.glass-card:hover {
  border-color: var(--border-cyan-bright);
  box-shadow: 0 10px 30px -10px rgba(255, 26, 26, 0.25);
  transform: translateY(-4px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-cyan {
  background: linear-gradient(135deg, #FF1A1A 0%, #CC0000 100%);
  color: #FFFFFF;
  box-shadow: 0 0 25px rgba(255, 26, 26, 0.45);
}

.btn-cyan:hover {
  box-shadow: 0 0 40px rgba(255, 26, 26, 0.75);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
}

.btn-outline:hover {
  background: rgba(255, 26, 26, 0.12);
  box-shadow: 0 0 20px rgba(255, 26, 26, 0.3);
  transform: translateY(-2px);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background-color: var(--accent-whatsapp);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
  z-index: 9999;
  transition: var(--transition);
  animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 0 35px rgba(37, 211, 102, 0.9);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Tooltip Badge for WhatsApp */
.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: rgba(7, 10, 16, 0.95);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  border: 1px solid var(--accent-whatsapp);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   Header & Topbar
   ========================================================================== */
.top-bar {
  background-color: #04060A;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 8px 0;
  font-size: 12px;
  color: var(--text-muted);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  gap: 24px;
  align-items: center;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-item svg {
  color: var(--accent-cyan);
  width: 14px;
  height: 14px;
}

.header-insta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
  text-decoration: none;
  flex-shrink: 0;
}

.header-insta-btn:hover {
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.6);
}

.header-insta-btn svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 1001;
  background: rgba(7, 10, 16, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-cyan);
  padding: 2px 0;
  transition: var(--transition);
}

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

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

.logo-img {
  height: 72px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
}

.logo:hover .logo-img {
  transform: scale(1.03);
  filter: drop-shadow(0 0 16px rgba(255, 26, 26, 0.6));
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #FF1A1A 0%, #CC0000 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(255, 26, 26, 0.4);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 1px;
}

.logo-badge {
  font-size: 10px;
  font-weight: 900;
  background: rgba(255, 26, 26, 0.15);
  color: var(--accent-cyan);
  border: 1px solid var(--border-cyan);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: #D1D5DB;
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
}

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

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  padding: 90px 0 70px 0;
  overflow: hidden;
  background: radial-gradient(circle at 50% 20%, rgba(255, 26, 26, 0.12) 0%, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-weight: 300;
}

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

.pill-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--border-light);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  color: #E2E8F0;
}

.pill-item svg {
  color: var(--accent-cyan);
  width: 16px;
  height: 16px;
}

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

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-cyan);
  box-shadow: 0 0 50px rgba(255, 26, 26, 0.2);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  display: block;
}

.hero-badge-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(7, 10, 16, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-cyan);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Stats Bar */
.stats-bar {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 24px;
  background: rgba(13, 19, 32, 0.8);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-lg);
  text-align: center;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--accent-cyan);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
  padding: 100px 0;
  background: var(--bg-surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-card {
  padding: 24px;
}

.about-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 26, 26, 0.1);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  margin-bottom: 16px;
}

.about-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
}

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

/* ==========================================================================
   Services Section
   ========================================================================== */
.services {
  padding: 100px 0;
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--accent-cyan);
  color: var(--text-dark);
  box-shadow: 0 0 15px rgba(255, 26, 26, 0.4);
}

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

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.service-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

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

.service-price-tag {
  position: absolute;
  bottom: 12px;
  left: 16px;
  background: rgba(7, 10, 16, 0.85);
  border: 1px solid var(--border-cyan);
  color: var(--accent-cyan);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
}

.service-body {
  padding: 24px;
}

.service-body h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.service-body p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.service-features {
  list-style: none;
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #E2E8F0;
  margin-bottom: 6px;
}

.service-features li svg {
  color: var(--accent-cyan);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.service-footer {
  padding: 0 24px 24px 24px;
}

.service-footer .btn {
  width: 100%;
}

/* ==========================================================================
   Our Work Gallery Section
   ========================================================================== */
.our-work-sec {
  padding: 100px 0;
  background: var(--bg-dark);
}

.our-work-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  text-align: center;
}

.our-work-title {
  text-align: center;
  margin: 0;
}

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

.work-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  aspect-ratio: 4/3;
  cursor: zoom-in;
  transition: var(--transition);
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.work-item:hover img {
  transform: scale(1.06);
}

.work-item:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(255, 26, 26, 0.3);
}

/* Lightbox */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  animation: fadeIn 0.25s ease;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-modal img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
  cursor: default;
  animation: zoomIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 10000;
}

.lightbox-close:hover {
  background: rgba(255, 26, 26, 0.5);
  border-color: var(--accent-cyan);
}

@keyframes zoomIn {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}



/* ==========================================================================
   Before & After Section
   ========================================================================== */
.before-after-sec {
  padding: 100px 0;
  background: var(--bg-surface);
}

.ba-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ba-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.ba-card:hover {
  border-color: var(--border-cyan);
  box-shadow: 0 10px 30px rgba(255, 26, 26, 0.25);
  transform: translateY(-4px);
}

.ba-slider-box {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
}

.ba-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-before-wrap {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
}

.ba-badge {
  position: absolute;
  top: 14px;
  padding: 4px 10px;
  background: rgba(7, 10, 16, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  z-index: 5;
}

.ba-badge.before {
  left: 14px;
  color: #94A3B8;
}

.ba-badge.after {
  right: 14px;
  color: var(--accent-cyan);
  border-color: var(--border-cyan);
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.ba-circle {
  width: 32px;
  height: 32px;
  background: var(--accent-cyan);
  border-radius: 50%;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px var(--accent-cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: -1px;
}

.ba-card-info {
  padding: 20px;
  background: rgba(11, 15, 23, 0.95);
  border-top: 1px solid var(--border-light);
}

.ba-card-info h4 {
  font-size: 14px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.ba-card-category {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-cyan);
}

/* ==========================================================================
   Packages / Pricing Section
   ========================================================================== */
.packages-sec {
  padding: 100px 0;
}

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

.pricing-card {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--accent-cyan);
  box-shadow: 0 0 35px rgba(255, 26, 26, 0.3);
  transform: translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-cyan);
  color: var(--text-dark);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

.pricing-header h3 {
  font-size: 1.3rem;
  font-weight: 900;
  color: #FFFFFF;
  text-transform: uppercase;
}

.pricing-price {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--accent-cyan);
  margin: 16px 0 24px 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.pricing-price span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #E2E8F0;
  margin-bottom: 10px;
}

.pricing-features li svg {
  color: var(--accent-cyan);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* WhatsApp Pricing Custom Styles */
.pricing-price-whatsapp {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin: 16px 0 20px 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.pricing-wa-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-normal);
}

.pricing-wa-btn:hover {
  background: #25D366;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 18px;
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border: 1px solid #25D366;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition-normal);
  cursor: pointer;
}

.btn-whatsapp-card:hover {
  background: #25D366;
  color: #000000;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

.btn-whatsapp-card.active-wa {
  background: #25D366;
  color: #000000;
  border-color: #25D366;
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-card.active-wa:hover {
  background: #1eb954;
  border-color: #1eb954;
  transform: translateY(-2px);
}

/* Pricing WhatsApp Banner */
.pricing-whatsapp-banner {
  margin-top: 50px;
  padding: 30px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.08) 0%, rgba(15, 23, 42, 0.6) 100%);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pricing-banner-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.pricing-banner-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.pricing-banner-info h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.pricing-banner-info p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.btn-whatsapp-banner-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #25D366;
  color: #000000;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition-normal);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-banner-action:hover {
  background: #20ba5a;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

@media (max-width: 992px) {
  .pricing-whatsapp-banner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .pricing-banner-info {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   Booking & Contact Form
   ========================================================================== */
.booking-sec {
  padding: 100px 0;
  background: var(--bg-surface);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.booking-info-left {
  display: flex;
  flex-direction: column;
}

.booking-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
  font-weight: 300;
}

.booking-features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.b-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.b-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255, 26, 26, 0.1);
  border: 1px solid rgba(255, 26, 26, 0.3);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.b-feature-icon svg {
  width: 20px;
  height: 20px;
}

.b-feature-text h4 {
  font-size: 15px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.b-feature-text p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Business Hours Card */
.business-hours-card {
  padding: 24px 28px;
  border-radius: var(--radius-md);
  margin-top: 10px;
}

.biz-hours-title {
  font-size: 15px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.biz-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  color: var(--text-muted);
}

.biz-hours-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.biz-time {
  color: var(--accent-cyan);
  font-weight: 800;
}


.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

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

.form-group label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: #CBD5E1;
}

.form-group input, .form-group select, .form-group textarea {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: #FFFFFF;
  font-size: 13px;
  transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent-cyan);
  outline: none;
  box-shadow: 0 0 10px rgba(255, 26, 26, 0.25);
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  max-width: 600px;
  width: 100%;
  padding: 36px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
}

.modal-close:hover { color: #FFFFFF; }

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-sec {
  padding: 100px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: rgba(15, 23, 42, 0.8);
  border: none;
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 24px 20px 24px;
  font-size: 13px;
  color: var(--text-muted);
  display: none;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Footer */
footer {
  background: #030508;
  border-top: 1px solid var(--border-cyan);
  padding: 60px 0 30px 0;
  font-size: 12px;
  color: var(--text-muted);
}

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

.footer-col h4 {
  font-size: 12px;
  font-weight: 900;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a:hover {
  color: var(--accent-cyan);
}

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

/* ==========================================================================
   The Difference Section
   ========================================================================== */
.difference-sec {
  padding: 100px 0;
  background: var(--bg-surface);
}

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

.diff-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  padding: 0;
}

.diff-img-wrap > img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.diff-quote-card {
  position: relative;
  margin-top: 20px;
  padding: 24px;
  border-radius: var(--radius-md);
}

.diff-quote-text {
  font-size: 14px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.diff-quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.diff-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-cyan);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}

.diff-quote-author strong {
  display: block;
  font-size: 13px;
  color: #fff;
  font-weight: 800;
}

.diff-quote-author span {
  font-size: 11px;
  color: var(--text-muted);
}

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

.diff-card {
  padding: 22px 20px;
  transition: var(--transition);
}

.diff-card:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 8px 24px rgba(255, 26, 26, 0.15);
  transform: translateY(-3px);
}

.diff-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 26, 26, 0.1);
  border: 1px solid rgba(255, 26, 26, 0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  margin-bottom: 12px;
}

.diff-icon svg {
  width: 18px;
  height: 18px;
}

.diff-card h4 {
  font-size: 13px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 6px;
}

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

/* ==========================================================================
   Client Testimonials Section
   ========================================================================== */
.testimonials-sec {
  padding: 100px 0;
  background: var(--bg-dark);
}

.testi-rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.testi-stars {
  color: #F59E0B;
  font-size: 18px;
  letter-spacing: 2px;
}

.testi-score {
  font-size: 1.5rem;
  font-weight: 900;
  color: #FFFFFF;
}

.testi-count {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Featured Slider */
.testi-slider-wrap {
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.testi-slider {
  position: relative;
  min-height: 260px;
}

.testi-slide {
  display: none;
  animation: fadeInUp 0.4s ease both;
}

.testi-slide.active {
  display: block;
}

.testi-featured {
  padding: 40px 44px;
}

.testi-quote-stars {
  color: #F59E0B;
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testi-quote-text {
  font-size: 1.1rem;
  font-style: italic;
  color: #E2E8F0;
  line-height: 1.75;
  margin-bottom: 28px;
  font-weight: 300;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

.testi-author-info strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #FFFFFF;
}

.testi-author-info span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.testi-author-info em {
  display: block;
  font-size: 11px;
  color: var(--accent-cyan);
  font-style: normal;
  margin-top: 4px;
  font-weight: 600;
}

/* Slider Controls */
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.testi-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 26, 26, 0.1);
  border: 1px solid rgba(255, 26, 26, 0.3);
  color: var(--accent-cyan);
  font-size: 22px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.testi-arrow:hover {
  background: var(--accent-cyan);
  color: #fff;
  box-shadow: 0 0 16px rgba(255, 26, 26, 0.5);
}

.testi-dots {
  display: flex;
  gap: 8px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.testi-dot.active {
  background: var(--accent-cyan);
  box-shadow: 0 0 8px var(--accent-cyan);
  width: 24px;
  border-radius: 4px;
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  padding: 24px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

.review-header strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #FFFFFF;
}

.review-car {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.review-stars {
  color: #F59E0B;
  font-size: 12px;
  letter-spacing: 1px;
  margin-top: 3px;
}

.review-text {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 12px;
}

.review-service {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-cyan);
  letter-spacing: 0.5px;
}

/* ==========================================================================
   Find Us & CTA Sections
   ========================================================================== */
.find-us-sec {
  padding: 100px 0;
  background: var(--bg-surface);
}

.find-us-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 32px;
  align-items: stretch;
}

.contact-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-info-card {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.c-info-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 26, 26, 0.1);
  border: 1px solid rgba(255, 26, 26, 0.25);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-info-icon.whatsapp-icon-bg {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.3);
  color: var(--accent-whatsapp);
}

.c-info-icon svg {
  width: 18px;
  height: 18px;
}

.c-info-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

.c-info-val {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.3;
}

.c-social-links {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.c-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.c-social-btn:hover {
  background: var(--accent-cyan);
  color: #fff;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 12px rgba(255, 26, 26, 0.4);
}

.c-social-btn svg {
  width: 16px;
  height: 16px;
}

/* Studio Map Box */
.studio-map-box {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-cyan);
  box-shadow: 0 0 30px rgba(255, 26, 26, 0.2);
}

.gmap-iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  border-radius: var(--radius-lg);
  display: block;
  filter: invert(90%) hue-rotate(180deg) contrast(1.1);
}

/* CTA Banner */
.cta-banner-sec {
  padding: 80px 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

/* Mobile Hamburger Menu Toggle Button */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 26px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
  position: relative;
}

.mobile-nav-toggle span {
  width: 100%;
  height: 3px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
  background-color: var(--accent-cyan);
}

.mobile-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
  background-color: var(--accent-cyan);
}

/* ==========================================================================
   Media Queries - Fully Professional Responsive Design
   Mobile First Approach: 1200px → 1024px → 768px → 640px → 480px → 380px
   ========================================================================== */

/* ---- Large Tablet / Small Desktop (max 1200px) ---- */
@media (max-width: 1200px) {
  .container { max-width: 100%; padding: 0 28px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
  .hero-title { font-size: 3rem; }
  .stats-bar { gap: 14px; }
  .stat-number { font-size: 2rem; }
}

/* ---- Tablet / Landscape Phone (max 1024px) ---- */
@media (max-width: 1024px) {
  /* Navigation & Sticky Header Fix */
  .main-header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100% !important;
    z-index: 1001 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  }

  .mobile-nav-toggle { display: flex; }
  .header-cta-btn { display: none; }

  .nav-links {
    position: absolute !important;
    top: 100% !important; /* aligns perfectly below header */
    left: 0 !important;
    width: 100% !important;
    height: auto !important; /* not fullscreen anymore */
    max-height: 80vh !important; /* scrollable if too long */
    background: #070A10 !important; /* solid background */
    flex-direction: column !important;
    padding: 20px 24px !important;
    gap: 8px !important;
    align-items: center !important;
    justify-content: flex-start !important;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000 !important;
    overflow-y: auto !important;
    border-bottom: 2px solid var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: none;
  }

  .nav-links.active {
    display: flex !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    list-style: none !important;
    display: block !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6px 0;
  }

  .nav-links li:last-child { border-bottom: none; }

  .nav-links a {
    font-size: 1.15rem;
    padding: 12px 0;
    display: block;
    width: 100%;
    color: #E2E8F0;
  }

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

  /* Top Bar */
  .top-bar-info .top-bar-item:nth-child(3) { display: none; }
  .top-bar-info .top-bar-item:nth-child(4) { display: none; }
  .top-bar-content { justify-content: space-between; }

  /* Logo */
  .logo-img { height: 60px; max-width: 220px; }

  /* Layout Grids */
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .booking-grid { grid-template-columns: 1fr; gap: 36px; }
  .difference-grid { grid-template-columns: 1fr; }
  .find-us-grid { grid-template-columns: 1fr; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Pricing */
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .pricing-card.featured { transform: none; }

  /* Stats */
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 40px; }

  /* Gallery */
  .work-gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .work-item--large { grid-row: span 1; aspect-ratio: 16/10; }
  .our-work-header { flex-direction: column; align-items: center; text-align: center; }

  /* Before/After */
  .ba-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }

  /* Sections padding */
  .hero { padding: 70px 0 50px; }
  .about, .services, .our-work-sec, .before-after-sec,
  .packages-sec, .booking-sec, .faq-sec, .difference-sec,
  .testimonials-sec, .find-us-sec { padding: 70px 0; }

  /* Hero image order on mobile */
  .hero-image-wrapper { order: -1; }

  /* About image */
  .about-grid > .hero-image-wrapper img { max-height: 380px; object-fit: cover; width: 100%; }

  /* Booking */
  .booking-grid > div:first-child { order: 1; }
  .booking-grid > div:last-child { order: 0; }
}

/* ---- Portrait Tablet (max 768px) ---- */
@media (max-width: 768px) {
  /* Container */
  .container { padding: 0 18px; }

  /* Top Bar - minimal but phone number always visible */
  .top-bar { padding: 6px 0; }
  .top-bar-info { gap: 12px; font-size: 10px; }
  .top-bar-info .top-bar-item:nth-child(3) { display: none; }
  .top-bar-info .top-bar-item:nth-child(4) { display: none; }
  .top-bar > .container > .top-bar-item { display: none; }

  /* Header */
  .logo-img { height: 52px; max-width: 180px; }
  .main-header { padding: 0; }

  /* Hero */
  .hero { padding: 60px 0 40px; }
  .hero-title { font-size: clamp(1.9rem, 7vw, 2.8rem); line-height: 1.1; }
  .hero-subtitle { font-size: 0.9rem; }
  .hero-pills { gap: 10px; }
  .pill-item { font-size: 11px; padding: 6px 12px; }
  .hero-btns { gap: 12px; }
  .hero-image-wrapper { order: -1; }
  .hero-badge-overlay { flex-direction: column; gap: 6px; align-items: flex-start; padding: 10px 14px; }

  /* Stats Bar */
  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 16px; gap: 12px; margin-top: 32px; }
  .stat-number { font-size: 1.7rem; }
  .stat-label { font-size: 10px; }

  /* Section Headers */
  .section-title { font-size: clamp(1.6rem, 5.5vw, 2.2rem); }
  .section-header { margin-bottom: 36px; padding: 0 8px; }

  /* About */
  .about-highlights { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .about-card { padding: 18px; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .filter-tabs { gap: 8px; margin-bottom: 32px; }
  .tab-btn { padding: 8px 14px; font-size: 11px; }

  /* Gallery */
  .work-gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .work-item { aspect-ratio: 4/3; }

  /* Before/After */
  .ba-cards-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .ba-slider-box { aspect-ratio: 3/4; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; gap: 16px; }
  .pricing-card { padding: 24px 20px; }
  .pricing-whatsapp-banner { flex-direction: column; text-align: center; padding: 22px 18px; gap: 18px; }
  .pricing-banner-info { flex-direction: column; text-align: center; gap: 12px; }
  .btn-whatsapp-banner-action { white-space: normal; text-align: center; }

  /* Booking */
  .form-row { grid-template-columns: 1fr; gap: 12px; }
  .booking-features-list { gap: 16px; }
  .business-hours-card { padding: 18px 20px; }

  /* Difference */
  .diff-features-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .diff-img-wrap > img { aspect-ratio: 16/9; }

  /* Testimonials */
  .testi-featured { padding: 28px 22px; }
  .testi-quote-text { font-size: 0.95rem; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Find Us */
  .find-us-grid { grid-template-columns: 1fr; gap: 24px; }
  .studio-map-box { min-height: 300px; }
  .gmap-iframe { min-height: 300px; }

  /* Footer */
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  footer { padding: 48px 0 24px; }

  /* Modal */
  .modal-box { padding: 28px 20px; max-height: 92vh; overflow-y: auto; margin: 12px; }

  /* Diff section */
  .diff-quote-card { padding: 18px; }
}

/* ---- Mobile Phone (max 640px) ---- */
@media (max-width: 640px) {
  /* Container */
  .container { padding: 0 14px; }

  /* Top Bar - show phone number always */
  .top-bar-info { gap: 10px; }
  .top-bar-info .top-bar-item:nth-child(2) { display: none; }
  .top-bar-info .top-bar-item:nth-child(3) { display: none; }
  .top-bar-info .top-bar-item:nth-child(4) { display: none; }
  .top-bar > .container > .top-bar-item { display: none; }

  /* Logo */
  .logo-img { height: 46px; max-width: 160px; }

  /* Hero */
  .hero { padding: 50px 0 36px; }
  .hero-title { font-size: clamp(1.7rem, 6.5vw, 2.4rem); letter-spacing: -0.3px; margin-bottom: 14px; }
  .hero-subtitle { font-size: 0.875rem; margin-bottom: 20px; }
  .hero-pills { gap: 8px; margin-bottom: 22px; }
  .pill-item { font-size: 10px; padding: 5px 10px; gap: 6px; }
  .pill-item svg { width: 14px; height: 14px; }
  .hero-btns { gap: 10px; flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-badge-overlay { flex-direction: column; gap: 8px; align-items: flex-start; }

  /* Stats Bar */
  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 14px 12px; gap: 10px; margin-top: 28px; }
  .stat-number { font-size: 1.6rem; }
  .stat-label { font-size: 9px; }

  /* Section headings */
  .section-title { font-size: clamp(1.45rem, 5.5vw, 2rem); }
  .section-header { margin-bottom: 30px; }
  .sub-badge { font-size: 10px; padding: 5px 12px; }

  /* About */
  .about, .services, .our-work-sec, .before-after-sec,
  .packages-sec, .booking-sec, .faq-sec, .difference-sec,
  .testimonials-sec, .find-us-sec { padding: 56px 0; }
  .about-highlights { grid-template-columns: 1fr; gap: 12px; }
  .about-card { padding: 16px; }
  .about-icon { width: 40px; height: 40px; margin-bottom: 12px; }
  .about-card h3 { font-size: 1rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .filter-tabs { gap: 6px; margin-bottom: 24px; }
  .tab-btn { padding: 7px 12px; font-size: 10px; letter-spacing: 0.5px; }
  .service-body { padding: 18px; }
  .service-body h3 { font-size: 1.05rem; }
  .service-footer { padding: 0 18px 18px; }

  /* Gallery */
  .work-gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .work-item { aspect-ratio: 1/1; border-radius: var(--radius-sm); }

  /* Before/After */
  .ba-cards-grid { grid-template-columns: 1fr; gap: 16px; max-width: 100%; }
  .ba-slider-box { aspect-ratio: 4/5; }
  .ba-card-info { padding: 14px 16px; }
  .ba-card-info h4 { font-size: 13px; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; gap: 14px; }
  .pricing-card { padding: 22px 18px; }
  .pricing-header h3 { font-size: 1.1rem; }
  .pricing-whatsapp-banner { flex-direction: column; text-align: center; padding: 20px 16px; gap: 16px; }
  .pricing-banner-info { flex-direction: column; align-items: center; gap: 12px; text-align: center; }
  .pricing-banner-info h4 { font-size: 1rem; }
  .pricing-banner-info p { font-size: 13px; }
  .btn-whatsapp-banner-action { padding: 12px 20px; font-size: 13px; width: 100%; justify-content: center; }

  /* Booking form */
  .form-row { grid-template-columns: 1fr; gap: 10px; }
  .b-feature-item { gap: 12px; }
  .b-feature-icon { width: 38px; height: 38px; flex-shrink: 0; }
  .b-feature-text h4 { font-size: 14px; }
  .business-hours-card { padding: 16px; }
  .biz-hours-row { font-size: 12px; padding: 10px 0; }

  /* Difference */
  .diff-features-grid { grid-template-columns: 1fr; gap: 10px; }
  .diff-card { padding: 16px; }
  .diff-img-wrap > img { aspect-ratio: 16/9; }

  /* Testimonials */
  .testi-featured { padding: 22px 16px; }
  .testi-quote-text { font-size: 0.9rem; line-height: 1.65; }
  .reviews-grid { grid-template-columns: 1fr; gap: 12px; }
  .review-card { padding: 18px; }
  .testi-slider-wrap { margin-bottom: 40px; }

  /* FAQ */
  .faq-question { font-size: 0.875rem; padding: 16px 18px; }
  .faq-answer { padding: 0 18px 16px; }

  /* Find Us */
  .contact-cards-stack { gap: 10px; }
  .c-info-card { padding: 14px 16px; gap: 12px; }
  .studio-map-box { min-height: 260px; }
  .gmap-iframe { min-height: 260px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  footer { padding: 40px 0 20px; }

  /* WhatsApp Float */
  .whatsapp-float { bottom: 16px; right: 16px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .whatsapp-tooltip { display: none; }

  /* Modal */
  .modal-box { padding: 22px 16px; max-height: 92vh; overflow-y: auto; margin: 8px; }

  /* Buttons */
  .btn { padding: 12px 22px; font-size: 0.8rem; }
}

/* ---- Small Mobile Phone (max 480px) ---- */
@media (max-width: 480px) {
  /* Container */
  .container { padding: 0 12px; }

  /* Top Bar - keep phone number, hide rest */
  .top-bar { padding: 4px 0; }
  .top-bar-info .top-bar-item:nth-child(2) { display: none; }
  .top-bar-info .top-bar-item:nth-child(3) { display: none; }
  .top-bar-info .top-bar-item:nth-child(4) { display: none; }
  .top-bar > .container > .top-bar-item { display: none; }

  /* Logo */
  .logo-img { height: 42px; max-width: 145px; }

  /* Hero */
  .hero { padding: 44px 0 30px; }
  .hero-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .hero-subtitle { font-size: 0.83rem; }
  .pill-item { font-size: 9px; padding: 4px 9px; }

  /* Stats */
  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 12px; gap: 8px; }
  .stat-number { font-size: 1.4rem; }

  /* Section */
  .section-title { font-size: clamp(1.3rem, 5.5vw, 1.8rem); }

  /* Gallery - single col on very small */
  .work-gallery { grid-template-columns: 1fr; gap: 8px; }
  .work-item { aspect-ratio: 4/3; }

  /* Before After */
  .ba-slider-box { aspect-ratio: 3/4; }

  /* Booking */
  .booking-subtitle { font-size: 13px; }

  /* Pricing */
  .pricing-card { padding: 18px 14px; }
  .pricing-header h3 { font-size: 1rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }

  /* Services */
  .about, .services, .our-work-sec, .before-after-sec,
  .packages-sec, .booking-sec, .faq-sec, .difference-sec,
  .testimonials-sec, .find-us-sec { padding: 48px 0; }
}

/* ---- Extra Small (max 380px) ---- */
@media (max-width: 380px) {
  /* Logo */
  .logo-img { height: 38px; max-width: 130px; }

  /* Hero */
  .hero-title { font-size: clamp(1.35rem, 5.8vw, 1.8rem); }
  .hero-pills { gap: 6px; }
  .pill-item { font-size: 9px; padding: 4px 8px; }
  .hero-btns { flex-direction: column; width: 100%; gap: 8px; }
  .hero-btns .btn { width: 100%; justify-content: center; padding: 11px 16px; }

  /* Stats */
  .stats-bar { grid-template-columns: 1fr 1fr; padding: 10px; gap: 6px; }
  .stat-number { font-size: 1.25rem; }
  .stat-label { font-size: 8px; }

  /* Section */
  .section-title { font-size: clamp(1.2rem, 5.5vw, 1.6rem); }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .tab-btn { padding: 6px 10px; font-size: 9px; }

  /* Button sizes */
  .btn { padding: 10px 18px; font-size: 0.78rem; gap: 7px; }

  /* Pricing */
  .pricing-card { padding: 16px 12px; }

  /* FAQ */
  .faq-question { padding: 14px 16px; font-size: 0.83rem; }

  /* WhatsApp */
  .whatsapp-float { width: 46px; height: 46px; bottom: 14px; right: 14px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
}

/* ---- Landscape mode on phones ---- */
@media (max-width: 768px) and (orientation: landscape) {
  .hero { padding: 40px 0 30px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero-title { font-size: clamp(1.4rem, 4vw, 2rem); }
  .hero-image-wrapper { order: 1; }
  .hero-image-wrapper img { max-height: 260px; object-fit: cover; }
  .nav-links { padding: 80px 24px 24px; }
}

/* ---- Print / Accessibility ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .whatsapp-float { animation: none; }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
