/* ==========================================================================
   PAINTER KAMAL - SIGNAGE & ADVERTISING SHOP
   Main Stylesheet (css/style.css)
   Ultra-Vibrant, Colorful & Modern Design System
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. COLOR PALETTE & DESIGN VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Vibrant Theme Gradients */
  --grad-hero-circle: linear-gradient(135deg, #3b0764 0%, #6d28d9 40%, #9333ea 70%, #c026d3 100%);
  --grad-primary-pill: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #f43f5e 100%);
  --grad-sunset: linear-gradient(135deg, #ff416c 0%, #ff4b2b 50%, #ff8e53 100%);
  --grad-cyan-mint: linear-gradient(135deg, #00f2fe 0%, #4facfe 50%, #00e676 100%);
  --grad-violet-pink: linear-gradient(135deg, #7928ca 0%, #b800e6 50%, #ff0080 100%);
  --grad-blue-purple: linear-gradient(135deg, #0052d4 0%, #4364f7 50%, #6fb1fc 100%);
  --grad-gold-amber: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #d97706 100%);
  --grad-emerald: linear-gradient(135deg, #10b981 0%, #059669 100%);

  /* Base & Neutral Palette */
  --bg-page: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-card: #ffffff;
  --bg-dark-section: #0f0c29;
  
  --text-main: #111827;
  --text-headings: #1e1b4b;
  --text-body: #475569;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --text-white: #ffffff;

  /* Button Brand Colors */
  --whatsapp-green: #25d366;
  --whatsapp-green-dark: #128c7e;
  --call-blue: #0284c7;
  --call-blue-dark: #0369a1;
  --star-gold: #ffb703;

  /* Borders & Shadows */
  --border-light: #e2e8f0;
  --border-card: #e8ecf4;
  --shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 6px 18px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.1);
  --shadow-xl: 0 20px 40px -8px rgba(15, 23, 42, 0.16);
  --shadow-pill-pink: 0 10px 28px rgba(236, 72, 153, 0.45);
  --shadow-pill-cyan: 0 10px 28px rgba(79, 172, 254, 0.45);
  --shadow-pill-orange: 0 10px 28px rgba(255, 75, 43, 0.4);

  /* Typography */
  --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', 'Poppins', sans-serif;

  /* Layout & Animations */
  --container-max: 1240px;
  --header-height: 80px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --------------------------------------------------------------------------
   2. MODERN CSS RESET
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background-color: var(--bg-page);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

ul, ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   3. REUSABLE UTILITIES & LAYOUT
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 95px 0;
  position: relative;
}

.section-subtle {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.section-dark {
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  color: var(--text-light);
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.badge-colorful {
  background: rgba(147, 51, 234, 0.1);
  color: #9333ea;
  border: 1px solid rgba(147, 51, 234, 0.25);
}

.badge-dark {
  background: rgba(255, 255, 255, 0.12);
  color: #fbc531;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-green {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-headings);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

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

.section-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.section-dark .section-subtitle {
  color: #cbd5e1;
}

/* --------------------------------------------------------------------------
   4. BUTTON SYSTEM
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition-bounce);
  text-align: center;
  white-space: nowrap;
}

/* Gradient Pill (matches "learn more" button from reference) */
.btn-colorful-pill {
  background: var(--grad-primary-pill);
  color: var(--text-white);
  box-shadow: var(--shadow-pill-pink);
}

.btn-colorful-pill:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 32px rgba(236, 72, 153, 0.6);
  color: var(--text-white);
}

.btn-outline-pill {
  background: var(--bg-white);
  color: var(--text-headings);
  border: 2px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
}

.btn-outline-pill:hover {
  border-color: #9333ea;
  color: #9333ea;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-green-dark));
  color: var(--text-white);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55);
  color: var(--text-white);
}

/* --------------------------------------------------------------------------
   5. HEADER & NAVIGATION BAR (Clean White with Colorful Pill Badges)
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  z-index: 1000;
  transition: all var(--transition-smooth);
}

.header.scrolled {
  height: 70px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.55rem;
  color: var(--text-headings);
  letter-spacing: -0.5px;
}

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  border: 2px solid rgba(236, 72, 153, 0.35);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
  background: #ffffff;
  flex-shrink: 0;
}

.logo:hover .logo-img {
  transform: scale(1.08) rotate(3deg);
  border-color: #9333ea;
}

.logo-text span {
  background: var(--grad-primary-pill);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-tagline {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: -3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: #475569;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--grad-primary-pill);
  transition: width var(--transition-smooth);
  border-radius: 4px;
}

.nav-link:hover,
.nav-link.active {
  color: #9333ea;
  font-weight: 600;
}

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

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

/* Colorful pill buttons in navbar (like "sign in" & "registration" from reference) */
.nav-pill-cyan {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--grad-cyan-mint);
  color: #064e3b;
  font-weight: 700;
  font-size: 0.84rem;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-pill-cyan);
  transition: all var(--transition-smooth);
}

.nav-pill-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(79, 172, 254, 0.6);
  color: #064e3b;
}

.nav-pill-pink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--grad-primary-pill);
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.84rem;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-pill-pink);
  transition: all var(--transition-smooth);
}

.nav-pill-pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(236, 72, 153, 0.6);
  color: var(--text-white);
}

.nav-pill-insta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
  font-size: 1.15rem;
  box-shadow: 0 4px 14px rgba(225, 48, 108, 0.35);
  transition: all var(--transition-smooth);
}

.nav-pill-insta:hover {
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 6px 18px rgba(225, 48, 108, 0.6);
  color: #ffffff;
}

/* Mobile Hamburger Toggle */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: var(--text-headings);
  border-radius: 3px;
  transition: all var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
  background-color: #ec4899;
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
  background-color: #ec4899;
}

/* --------------------------------------------------------------------------
   6. COLORFUL HERO SECTION (Exact Reference Aesthetics)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 92vh;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  background: #ffffff;
  overflow: hidden;
}

/* Hero Background Ambient Glows */
.hero-ambient-glow {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.15) 0%, rgba(236, 72, 153, 0.08) 50%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr;
  gap: 30px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 580px;
}

.hero-category {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #3b82f6;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.12;
  color: var(--text-headings);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-heading .gradient-text {
  background: var(--grad-primary-pill);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.hero-subtitle {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 35px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 25px;
  border-top: 2px dashed #f1f5f9;
}

.stat-item h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--grad-primary-pill);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2px;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Hero Right Side Art Illustration */
.hero-art-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art-svg {
  width: 100%;
  max-width: 650px;
  height: auto;
  filter: drop-shadow(0 15px 35px rgba(93, 24, 182, 0.15));
  animation: floatArt 7s ease-in-out infinite alternate;
}

@keyframes floatArt {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-10px) rotate(0.8deg); }
}

/* Floating Interactive Quality Tag */
.hero-floating-badge {
  position: absolute;
  bottom: 15px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  animation: badgeBounce 4s ease-in-out infinite alternate;
}

@keyframes badgeBounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.hero-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--grad-cyan-mint);
  color: #064e3b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.hero-badge-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-headings);
}

.hero-badge-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   7. SERVICES SECTION (Modern Vibrant Cards)
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

@media (min-width: 1024px) {
  .services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
  }
  .services-grid .service-card:nth-child(1) { grid-column: 1 / 3; }
  .services-grid .service-card:nth-child(2) { grid-column: 3 / 5; }
  .services-grid .service-card:nth-child(3) { grid-column: 5 / 7; }
  .services-grid .service-card:nth-child(4) { grid-column: 2 / 4; }
  .services-grid .service-card:nth-child(5) { grid-column: 4 / 6; }
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  position: relative;
}

/* Vibrant Colorful Top Accents per card */
.service-card:nth-child(1) { border-top: 4px solid #00f2fe; }
.service-card:nth-child(2) { border-top: 4px solid #ec4899; }
.service-card:nth-child(3) { border-top: 4px solid #9333ea; }
.service-card:nth-child(4) { border-top: 4px solid #ff4b2b; }
.service-card:nth-child(5) { border-top: 4px solid #3b82f6; }

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(147, 51, 234, 0.3);
}

.service-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #1e1b4b;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.service-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: #1e1b4b;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-icon-floating {
  position: absolute;
  bottom: -24px;
  left: 24px;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--text-white);
  box-shadow: var(--shadow-md);
  z-index: 2;
  transition: all var(--transition-smooth);
}

.service-card:nth-child(1) .service-icon-floating { background: var(--grad-cyan-mint); color: #064e3b; }
.service-card:nth-child(2) .service-icon-floating { background: var(--grad-primary-pill); }
.service-card:nth-child(3) .service-icon-floating { background: var(--grad-violet-pink); }
.service-card:nth-child(4) .service-icon-floating { background: var(--grad-sunset); }
.service-card:nth-child(5) .service-icon-floating { background: var(--grad-blue-purple); }

.service-card:hover .service-icon-floating {
  transform: rotate(-8deg) scale(1.1);
}

.service-body {
  padding: 36px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-headings);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-bullets {
  margin-bottom: 22px;
  padding-top: 14px;
  border-top: 1px dashed var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 500;
  color: #334155;
}

.service-bullets li i {
  color: #10b981;
  font-size: 0.85rem;
}

.service-action {
  margin-top: auto;
}

.btn-card-inquire {
  width: 100%;
  background: var(--bg-subtle);
  color: var(--text-headings);
  border: 1.5px solid var(--border-light);
  padding: 11px 18px;
  font-size: 0.92rem;
}

.btn-card-inquire:hover {
  background: var(--grad-primary-pill);
  border-color: transparent;
  color: var(--text-white);
  box-shadow: var(--shadow-pill-pink);
}

/* --------------------------------------------------------------------------
   8. WHY CHOOSE US SECTION (Vibrant Dark Gradient Theme)
   -------------------------------------------------------------------------- */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition-smooth);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(236, 72, 153, 0.5);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--text-white);
  transition: all var(--transition-smooth);
}

.why-card:nth-child(1) .why-icon { background: var(--grad-sunset); }
.why-card:nth-child(2) .why-icon { background: var(--grad-cyan-mint); color: #064e3b; }
.why-card:nth-child(3) .why-icon { background: var(--grad-violet-pink); }
.why-card:nth-child(4) .why-icon { background: var(--grad-gold-amber); }

.why-card:hover .why-icon {
  transform: scale(1.12);
}

.why-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}

.why-desc {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   9. CUSTOMER REVIEWS SECTION
   -------------------------------------------------------------------------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.review-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all var(--transition-smooth);
}

.review-card::before {
  content: '“';
  position: absolute;
  top: 15px;
  right: 24px;
  font-family: Georgia, serif;
  font-size: 5.5rem;
  line-height: 1;
  color: rgba(147, 51, 234, 0.1);
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(147, 51, 234, 0.3);
}

.review-stars {
  display: flex;
  gap: 4px;
  color: var(--star-gold);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.review-text {
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-primary-pill);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-headings);
  margin-bottom: 2px;
}

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

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #10b981;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 6px;
}

/* --------------------------------------------------------------------------
   10. CONTACT & LOCATION SECTION
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: flex-start;
}

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

.contact-card-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-white);
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.contact-card-item:hover {
  transform: translateX(5px);
  border-color: #9333ea;
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-card-icon.phone-icon {
  background: rgba(2, 132, 199, 0.12);
  color: var(--call-blue);
}

.contact-card-icon.wa-icon {
  background: rgba(37, 211, 102, 0.12);
  color: var(--whatsapp-green);
}

.contact-card-icon.insta-icon {
  background: rgba(225, 48, 108, 0.12);
  color: #e1306c;
}

.contact-card-icon.loc-icon {
  background: rgba(236, 72, 153, 0.12);
  color: #ec4899;
}

.contact-card-icon.time-icon {
  background: rgba(147, 51, 234, 0.12);
  color: #9333ea;
}

.contact-card-details h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-headings);
  margin-bottom: 4px;
}

.contact-card-details p, 
.contact-card-details a {
  font-size: 0.92rem;
  color: var(--text-body);
}

.contact-card-details a:hover {
  color: #9333ea;
}

.quick-quote-box {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-card);
}

.quick-quote-box h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-headings);
  margin-bottom: 8px;
}

.quick-quote-box p {
  font-size: 0.94rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

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

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-headings);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-light);
  background: var(--bg-subtle);
  color: var(--text-main);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: #9333ea;
  background: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(147, 51, 234, 0.15);
}

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

/* --------------------------------------------------------------------------
   11. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background-color: #0b0826;
  color: #94a3b8;
  padding: 75px 0 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-brand .logo {
  color: var(--text-white);
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 20px;
  color: #94a3b8;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2.5px;
  background: var(--grad-primary-pill);
  border-radius: 4px;
}

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

.footer-links li a {
  font-size: 0.92rem;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.footer-links li a:hover {
  color: #ec4899;
  transform: translateX(4px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-contact-list li i {
  color: #ec4899;
  font-size: 1.05rem;
  margin-top: 4px;
}

.footer-bottom {
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.88rem;
}

.footer-bottom a {
  color: #ec4899;
}

/* --------------------------------------------------------------------------
   12. STICKY FLOATING ACTION BUTTONS (CRUCIAL)
   -------------------------------------------------------------------------- */
.floating-actions-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--text-white);
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  position: relative;
  transition: all var(--transition-bounce);
}

.floating-btn i {
  font-size: 1.65rem;
  transition: transform var(--transition-bounce);
}

.floating-btn:hover {
  transform: scale(1.12) translateY(-3px);
  color: var(--text-white);
}

.floating-btn:hover i {
  transform: scale(1.1);
}

/* WhatsApp Floating Button */
.floating-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  animation: pulseWhatsApp 3s infinite;
}

.floating-whatsapp:hover {
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.65);
}

/* Call Now Floating Button */
.floating-call {
  background: linear-gradient(135deg, #0284c7, #6366f1);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.45);
  animation: pulseCall 3s infinite 1.5s;
}

.floating-call:hover {
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.65);
}

/* Instagram Floating Button */
.floating-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.45);
  animation: pulseInstagram 3s infinite 0.75s;
}

.floating-instagram:hover {
  box-shadow: 0 12px 30px rgba(225, 48, 108, 0.7);
}

/* Pulsing Animations */
@keyframes pulseWhatsApp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6), 0 8px 25px rgba(0, 0, 0, 0.2);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 8px 25px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 8px 25px rgba(0, 0, 0, 0.2);
  }
}

@keyframes pulseCall {
  0% {
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.6), 0 8px 25px rgba(0, 0, 0, 0.2);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(99, 102, 241, 0), 0 8px 25px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0), 0 8px 25px rgba(0, 0, 0, 0.2);
  }
}

@keyframes pulseInstagram {
  0% {
    box-shadow: 0 0 0 0 rgba(225, 48, 108, 0.6), 0 8px 25px rgba(0, 0, 0, 0.2);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(225, 48, 108, 0), 0 8px 25px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(225, 48, 108, 0), 0 8px 25px rgba(0, 0, 0, 0.2);
  }
}

/* Floating Label Tooltip (Desktop) */
.floating-btn .btn-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: #0f172a;
  color: var(--text-white);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.floating-btn:hover .btn-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* --------------------------------------------------------------------------
   13. RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-heading {
    font-size: 2.85rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
}

@media (max-width: 868px) {
  .section {
    padding: 70px 0;
  }

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

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

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-stats-strip {
    text-align: center;
  }

  .hero-floating-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
  }

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

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

  /* Mobile Drawer Menu */
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 45px 20px;
    gap: 24px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    overflow-y: auto;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    font-size: 1.25rem;
    font-weight: 600;
  }

  .nav-actions {
    display: none;
  }
}

@media (max-width: 576px) {
  :root {
    --header-height: 70px;
  }

  .section {
    padding: 55px 0;
  }

  .hero {
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 50px;
  }

  .hero-heading {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .hero-stats-strip {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .stat-item:nth-child(3) {
    grid-column: span 2;
    text-align: center;
  }

  .services-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .floating-actions-container {
    bottom: 20px;
    right: 18px;
    gap: 12px;
  }

  .floating-btn {
    width: 52px;
    height: 52px;
  }

  .floating-btn i {
    font-size: 1.45rem;
  }

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