/* =================================================================
   KNOCK KNOCK CONTRACTOR - PREMIUM GLASSMORPHISM DESIGN
   Modern 2024-2025 Web Design with Insane Visual Effects
   ================================================================= */

/* ROOT VARIABLES */
:root {
  --gold: #D4AF37;
  --gold-light: #E6C862;
  --gold-dark: #B8941F;
  --gold-glow: rgba(212, 175, 55, 0.5);

  --dark: #0A0A0A;
  --dark-light: #1A1A1A;
  --dark-lighter: #2A2A2A;

  --white: #FFFFFF;
  --white-80: rgba(255, 255, 255, 0.8);
  --white-60: rgba(255, 255, 255, 0.6);
  --white-40: rgba(255, 255, 255, 0.4);
  --white-20: rgba(255, 255, 255, 0.2);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-05: rgba(255, 255, 255, 0.05);

  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-hover: rgba(255, 255, 255, 0.08);

  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 24px 96px rgba(0, 0, 0, 0.6);

  --glow-gold: 0 0 40px var(--gold-glow);
  --glow-white: 0 0 40px rgba(255, 255, 255, 0.3);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  --border-radius: 24px;
  --border-radius-sm: 12px;
  --border-radius-lg: 32px;
}

/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(to bottom,
      rgba(10, 10, 10, 0) 0%,
      rgba(10, 10, 10, 0.5) 60%,
      rgba(10, 10, 10, 1) 95%,
      rgba(10, 10, 10, 1) 100%
    ),
    url('../images/modern_house_wall.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0.3;
  z-index: -1;
  filter: brightness(0.7) contrast(1.1);
}

/* BACKGROUND CANVAS */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

/* PARTICLE CONTAINER */
.particle-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* CONTAINER */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* GLASSMORPHISM CARD */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--white-10) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

.glass-card:hover::before {
  opacity: 1;
}

.glass-card:hover {
  background: var(--glass-hover);
  border-color: var(--white-20);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

/* CARD GLOW EFFECT */
.card-glow {
  position: absolute;
  inset: -100%;
  background: radial-gradient(circle at center, var(--gold-glow) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
  z-index: -1;
}

.glass-card:hover .card-glow {
  opacity: 0.3;
}

/* =================================================================
   NAVIGATION
   ================================================================= */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all var(--transition-normal);
}

nav.scrolled {
  padding: 1rem 0;
  background: rgba(10, 10, 10, 0.95);
  box-shadow: var(--shadow-lg);
}

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

/* LOGO - PREMIUM UI PRO */
.logo {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: logoFloat 3s ease-in-out infinite;
}

.logo-icon svg {
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
  transition: all var(--transition-normal);
}

.logo:hover .logo-icon svg {
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.8));
  transform: scale(1.05);
}

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

.logo-text-group {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.1em;
  line-height: 1;
}

.logo-subtitle {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding-left: 2px;
}

/* NAV LINKS - PREMIUM UI PRO */
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  opacity: 0;
  transition: all var(--transition-normal);
}

.nav-link:hover::before {
  opacity: 1;
}

.nav-link .nav-icon {
  font-size: 1.1rem;
  transition: all var(--transition-normal);
}

.nav-link:hover {
  color: var(--gold);
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
}

.nav-link:hover .nav-icon {
  transform: scale(1.2) rotate(5deg);
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-normal);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a:not(.cta-btn)::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width var(--transition-normal);
}

.nav-links a:not(.cta-btn):hover::before {
  width: 100%;
}

.nav-links a:not(.cta-btn):hover {
  color: var(--gold);
  text-shadow: 0 0 10px var(--gold-glow);
}

/* NAV CTA BUTTON - PREMIUM UI PRO */
.nav-cta-btn {
  position: relative;
  padding: 0.75rem 1.75rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all var(--transition-normal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--gold-glow);
}

.nav-cta-btn .cta-icon {
  font-size: 1.1rem;
  transition: all var(--transition-normal);
}

.nav-cta-btn .cta-text {
  position: relative;
  z-index: 2;
  font-weight: 700;
}

.nav-cta-btn .btn-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.nav-cta-btn:hover .btn-glow {
  opacity: 1;
}

.nav-cta-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px var(--gold-glow);
}

.nav-cta-btn:hover .cta-icon {
  transform: scale(1.2) rotate(15deg);
}

.nav-cta-btn:active {
  transform: translateY(-1px) scale(1.02);
}

/* CTA BUTTON */
.cta-btn {
  position: relative;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all var(--transition-normal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--gold-glow);
}

.cta-btn span {
  position: relative;
  z-index: 2;
}

.cta-btn .btn-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.cta-btn:hover .btn-glow {
  opacity: 1;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

.cta-btn:active {
  transform: translateY(-1px);
}

.cta-btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 8px 40px var(--gold-glow);
}

.cta-btn.secondary {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.cta-btn.secondary:hover {
  background: var(--gold);
  color: var(--dark);
}

/* MOBILE MENU TOGGLE */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  transition: all var(--transition-normal);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* =================================================================
   HERO SECTION
   ================================================================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--white-05) 1px, transparent 1px),
    linear-gradient(90deg, var(--white-05) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero-tag {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-tag span {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  background: linear-gradient(135deg, var(--white), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tag-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--white-20), transparent);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.hero-title {
  font-size: clamp(3rem, 12vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 2rem;
  position: relative;
}

.hero-title .word {
  display: inline-block;
  background: linear-gradient(135deg, var(--white), var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: fadeInUp 1s ease 0.4s both, gradientShift 8s ease infinite;
  position: relative;
}

.hero-title .word:nth-child(1) { animation-delay: 0.3s; }
.hero-title .word:nth-child(2) { animation-delay: 0.5s; }
.hero-title .word:nth-child(3) { animation-delay: 0.7s; }

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--white-80);
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease 0.6s both;
}

/* HERO CTA */
.hero-cta {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 5rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.8s both;
}

.hero-cta .cta-btn {
  font-size: 1.125rem;
  padding: 1.25rem 3rem;
}

/* HERO STATS */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  animation: fadeInUp 1s ease 1s both;
}

.stat-item {
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: all var(--transition-normal);
}

.stat-item:hover {
  transform: translateY(-10px) scale(1.05);
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 20px currentColor);
  animation: float 3s ease-in-out infinite;
}

.stat-item:nth-child(1) .stat-icon { animation-delay: 0s; }
.stat-item:nth-child(2) .stat-icon { animation-delay: 0.5s; }
.stat-item:nth-child(3) .stat-icon { animation-delay: 1s; }
.stat-item:nth-child(4) .stat-icon { animation-delay: 1.5s; }

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

.stat-value {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--white-60);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.stat-glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-slow);
  z-index: -1;
}

.stat-item:hover .stat-glow {
  opacity: 0.5;
}

.hero-shape {
  display: none;
}

@keyframes pulse {
  0%, 100% { opacity: 0.2; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.4; transform: translateX(-50%) scale(1.1); }
}

/* =================================================================
   SECTION COMMON STYLES
   ================================================================= */

section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

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

.section-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
  padding: 0.5rem 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--white), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--white-60);
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
}

/* =================================================================
   SERVICES SECTION
   ================================================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 3rem;
  position: relative;
  transition: all var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.service-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 30px currentColor);
  display: block;
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(10deg);
  animation: bounce 0.6s ease;
}

@keyframes bounce {
  0%, 100% { transform: scale(1.2) rotate(10deg) translateY(0); }
  50% { transform: scale(1.2) rotate(10deg) translateY(-20px); }
}

.service-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--white-10), transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  line-height: 1;
}

.service-card h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--white), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-card p {
  color: var(--white-80);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  padding: 0.75rem 0;
  color: var(--white-60);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--white-10);
  transition: all var(--transition-fast);
}

.service-features li:hover {
  color: var(--white);
  padding-left: 0.5rem;
}

.service-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 900;
  font-size: 1.2rem;
  filter: drop-shadow(0 0 10px var(--gold-glow));
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.service-btn:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

/* =================================================================
   INSTAGRAM SECTION
   ================================================================= */

.instagram-section {
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.03), transparent);
}

.instagram-profile {
  padding: 2.5rem;
  margin-bottom: 4rem;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--dark);
  box-shadow: 0 10px 40px var(--gold-glow);
  position: relative;
}

.profile-avatar::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  opacity: 0.3;
  animation: pulse 2s ease-in-out infinite;
}

.profile-info {
  flex: 1;
  min-width: 250px;
}

.profile-info h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--white), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.profile-stats {
  display: flex;
  gap: 2rem;
  font-size: 0.95rem;
  color: var(--white-60);
}

.profile-stats strong {
  color: var(--white);
  font-weight: 700;
}

.follow-btn {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #E1306C, #F56040, #FCAF45);
  color: var(--white);
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 20px rgba(225, 48, 108, 0.4);
  position: relative;
  overflow: hidden;
}

.follow-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(225, 48, 108, 0.6);
}

/* INSTAGRAM GRID */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.instagram-post {
  aspect-ratio: 1;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.instagram-post:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.post-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  filter: drop-shadow(0 0 40px currentColor);
  transition: all var(--transition-normal);
}

.instagram-post:hover .post-image {
  transform: scale(1.1);
}

.post-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.instagram-post:hover .post-overlay {
  opacity: 1;
}

.post-info {
  display: flex;
  gap: 2rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
}

.post-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-sm);
  color: var(--white);
  font-weight: 600;
  text-align: center;
  transform: translateY(100px);
  transition: transform var(--transition-normal);
}

.instagram-post:hover .post-label {
  transform: translateY(0);
}

.instagram-cta {
  text-align: center;
}

/* =================================================================
   REVIEWS SECTION
   ================================================================= */

.reviews-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-bottom: 5rem;
  flex-wrap: wrap;
}

.stat-badge {
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all var(--transition-normal);
}

.stat-badge:hover {
  transform: translateY(-5px) scale(1.05);
}

.badge-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark);
  box-shadow: 0 10px 30px var(--gold-glow);
}

.badge-icon.yelp {
  background: linear-gradient(135deg, #D32323, #FF1A1A);
  box-shadow: 0 10px 30px rgba(211, 35, 35, 0.5);
}

.badge-icon.thumbtack {
  background: linear-gradient(135deg, #009FD4, #0082B3);
  box-shadow: 0 10px 30px rgba(0, 159, 212, 0.5);
}

.badge-icon.hcp {
  background: linear-gradient(135deg, #00A3E0, #0088CC);
  box-shadow: 0 10px 30px rgba(0, 163, 224, 0.5);
}

.badge-rating {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge-label {
  font-size: 0.875rem;
  color: var(--white-60);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* REVIEWS GRID */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.review-card {
  padding: 2.5rem;
  transition: all var(--transition-normal);
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--dark);
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 5px 20px var(--gold-glow);
}

.reviewer-info {
  flex: 1;
}

.reviewer-info h4 {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.review-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.platform-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.platform-badge.google {
  background: linear-gradient(135deg, #4285F4, #34A853);
  color: var(--white);
}

.platform-badge.yelp {
  background: linear-gradient(135deg, #D32323, #FF1A1A);
  color: var(--white);
}

.platform-badge.thumbtack {
  background: linear-gradient(135deg, #009FD4, #0082B3);
  color: var(--white);
}

.platform-badge.hcp {
  background: linear-gradient(135deg, #00A3E0, #0088CC);
  color: var(--white);
}

.review-date {
  font-size: 0.875rem;
  color: var(--white-40);
}

.review-rating {
  color: var(--gold);
  font-size: 1.25rem;
  filter: drop-shadow(0 0 10px var(--gold-glow));
}

.review-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--white-80);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.tag {
  padding: 0.5rem 1rem;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: 20px;
  font-size: 0.875rem;
  color: var(--white-60);
  transition: all var(--transition-fast);
}

.tag:hover {
  background: var(--white-10);
  color: var(--white);
}

.tag.verified {
  background: linear-gradient(135deg, rgba(52, 168, 83, 0.2), rgba(66, 133, 244, 0.2));
  border-color: rgba(52, 168, 83, 0.3);
  color: #34A853;
}

/* =================================================================
   WHY CHOOSE US SECTION
   ================================================================= */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.why-card {
  padding: 2.5rem;
  text-align: center;
  transition: all var(--transition-normal);
}

.why-card:hover {
  transform: translateY(-10px) scale(1.05);
}

.why-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 30px currentColor);
  animation: float 3s ease-in-out infinite;
}

.why-card:nth-child(1) .why-icon { animation-delay: 0s; }
.why-card:nth-child(2) .why-icon { animation-delay: 0.4s; }
.why-card:nth-child(3) .why-icon { animation-delay: 0.8s; }
.why-card:nth-child(4) .why-icon { animation-delay: 1.2s; }
.why-card:nth-child(5) .why-icon { animation-delay: 1.6s; }
.why-card:nth-child(6) .why-icon { animation-delay: 2s; }
.why-card:nth-child(7) .why-icon { animation-delay: 2.4s; }
.why-card:nth-child(8) .why-icon { animation-delay: 2.8s; }

.why-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--white), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-card p {
  color: var(--white-60);
  line-height: 1.7;
}

/* =================================================================
   PROCESS SECTION
   ================================================================= */

.process {
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.03), transparent);
}

.process-timeline {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.process-step {
  padding: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
  transition: all var(--transition-normal);
}

.process-step:hover {
  transform: translateX(20px);
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-size: 2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 40px var(--gold-glow);
  position: relative;
  z-index: 2;
}

.step-line {
  position: absolute;
  left: 40px;
  top: 80px;
  bottom: -80px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), transparent);
  z-index: 1;
}

.process-step:last-child .step-line {
  display: none;
}

.step-content h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--white), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-content p {
  color: var(--white-60);
  line-height: 1.7;
  font-size: 1.05rem;
}

/* =================================================================
   CTA SECTION
   ================================================================= */

.cta-section {
  padding: 10rem 0;
}

.cta-box {
  padding: 6rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--white), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 1.25rem;
  color: var(--white-80);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .cta-btn {
  font-size: 1.25rem;
  padding: 1.25rem 3rem;
}

.cta-glow {
  position: absolute;
  inset: -100%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  opacity: 0.3;
  animation: pulse 4s ease-in-out infinite;
}

/* =================================================================
   GET FREE QUOTE SECTION - PREMIUM UI PRO
   ================================================================= */

.quote-section {
  padding: 8rem 0;
  position: relative;
}

.quote-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
  margin-top: 4rem;
}

/* Quote Info Cards */
.quote-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.info-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
}

.info-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 20px currentColor);
  animation: float 3s ease-in-out infinite;
}

.info-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.info-card p {
  color: var(--white-80);
  font-size: 0.95rem;
  line-height: 1.6;
}

.phone-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all var(--transition-normal);
  display: inline-block;
}

.phone-link:hover {
  color: var(--gold-light);
  transform: scale(1.05);
  text-shadow: 0 0 20px var(--gold-glow);
}

/* Quote Form Wrapper - Custom Design */
.quote-form-wrapper {
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-title {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.form-subtitle {
  color: var(--white-80);
  font-size: 1rem;
}

/* Custom HCP Form */
.custom-hcp-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.form-field.full-width {
  grid-column: 1 / -1;
}

.form-field label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.label-icon {
  font-size: 1.1rem;
  filter: drop-shadow(0 0 8px currentColor);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  box-shadow:
    0 0 0 3px rgba(212, 175, 55, 0.1),
    0 4px 20px rgba(212, 175, 55, 0.15);
  transform: translateY(-1px);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23D4AF37' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 3.5rem;
}

.form-field select option {
  background: var(--dark);
  color: var(--white);
  padding: 0.75rem;
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

/* Custom Checkbox */
.checkbox-field {
  margin-top: 0.5rem;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  position: relative;
  padding-left: 0;
}

.checkbox-container input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: relative;
  height: 24px;
  width: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  flex-shrink: 0;
  transition: all var(--transition-normal);
}

.checkbox-container:hover .checkmark {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.checkbox-container input:checked ~ .checkmark {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.checkmark::after {
  content: '';
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid var(--dark);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark::after {
  display: block;
}

.checkbox-text {
  color: var(--white-80);
  font-size: 0.875rem;
  line-height: 1.5;
  padding-top: 2px;
}

/* Submit Button */
.form-submit-button {
  position: relative;
  width: 100%;
  padding: 1.375rem 2.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-weight: 700;
  font-size: 1.125rem;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35);
  letter-spacing: 0.02em;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.form-submit-button:hover .btn-shine {
  left: 100%;
}

.form-submit-button .btn-icon {
  font-size: 1.35rem;
  transition: all var(--transition-normal);
  position: relative;
  z-index: 2;
}

.form-submit-button .btn-text {
  position: relative;
  z-index: 2;
  font-weight: 800;
}

.form-submit-button:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.form-submit-button:hover .btn-icon {
  transform: translateX(5px) rotate(15deg) scale(1.1);
}

.form-submit-button:active {
  transform: translateY(-1px) scale(0.99);
}

.form-submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Form Status Message */
.form-status {
  margin-top: 1.5rem;
  padding: 1.125rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  opacity: 0;
  transform: translateY(-10px);
  transition: all var(--transition-normal);
}

.form-status.show {
  opacity: 1;
  transform: translateY(0);
}

.form-status.success {
  background: rgba(16, 185, 129, 0.15);
  border: 1.5px solid rgba(16, 185, 129, 0.4);
  color: #10b981;
}

.form-status.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1.5px solid rgba(239, 68, 68, 0.4);
  color: #ef4444;
}

.form-status.loading {
  background: rgba(212, 175, 55, 0.15);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  color: var(--gold);
}

/* HouseCall Pro Form Integration */
.hcp-form-container {
  position: relative;
  width: 100%;
  min-height: 800px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

#hcp-lead-iframe {
  width: 100%;
  min-height: 800px;
  border: none;
  display: block;
  background: #ffffff;
  border-radius: 12px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Form Responsive */
@media (max-width: 968px) {
  .quote-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .hcp-form-container {
    min-height: 900px;
  }

  #hcp-lead-iframe {
    min-height: 900px;
  }
}

@media (max-width: 640px) {
  .quote-info {
    grid-template-columns: 1fr;
  }

  .quote-form-wrapper {
    padding: 2rem 1.5rem;
  }

  .form-title {
    font-size: 1.65rem;
  }

  .form-subtitle {
    font-size: 0.95rem;
  }

  .hcp-form-container {
    min-height: 1000px;
  }

  #hcp-lead-iframe {
    min-height: 1000px;
  }
}

/* =================================================================
   FOOTER
   ================================================================= */

footer {
  padding: 6rem 0 3rem;
  background: var(--dark-light);
  border-top: 1px solid var(--glass-border);
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  position: relative;
  margin-bottom: 1.5rem;
}

.footer-section h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--white), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-section p,
.footer-section a {
  color: var(--white-60);
  line-height: 1.8;
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
  transition: all var(--transition-fast);
}

.footer-section a:hover {
  color: var(--gold);
  padding-left: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all var(--transition-normal);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.social-link:hover {
  background: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--gold-glow);
}

.link-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.social-link:hover .link-glow {
  opacity: 0.5;
}

.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid var(--glass-border);
  color: var(--white-40);
  font-size: 0.875rem;
}

/* =================================================================
   ANIMATIONS
   ================================================================= */

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

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

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* =================================================================
   RESPONSIVE
   ================================================================= */

@media (max-width: 1024px) {
  .services-grid,
  .instagram-grid,
  .reviews-grid,
  .why-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  /* Navigation */
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 3rem;
    gap: 2rem;
    transition: left var(--transition-normal);
  }

  .nav-links.active {
    left: 0;
  }

  .menu-toggle {
    display: flex;
  }

  /* Hero */
  .hero {
    padding: 8rem 0 4rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }

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

  /* Sections */
  section {
    padding: 5rem 0;
  }

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

  /* Grids */
  .services-grid,
  .instagram-grid,
  .reviews-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Instagram */
  .profile-header {
    flex-direction: column;
    text-align: center;
  }

  .follow-btn {
    width: 100%;
  }

  /* Process */
  .process-step {
    flex-direction: column;
    padding: 2rem;
  }

  .step-line {
    left: 40px;
  }

  /* CTA */
  .cta-box {
    padding: 4rem 2rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .cta-btn {
    width: 100%;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

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

  .stat-value {
    font-size: 2rem;
  }

  .service-card,
  .review-card,
  .why-card {
    padding: 2rem;
  }
}

/* =================================================================
   CUSTOM SCROLLBAR
   ================================================================= */

::-webkit-scrollbar {
  width: 12px;
}

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
}

/* SELECTION */
::selection {
  background: var(--gold);
  color: var(--dark);
}

::-moz-selection {
  background: var(--gold);
  color: var(--dark);
}
