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

:root {
  --primary: #3968B6;
  /* Refined Flying Fur Blue */
  --accent: #FFCC00;
  /* Refined Flying Fur Yellow */
  --highlight: #b31d1d;
  --soft-pink: #fdf2f8;
  --dark: #1f2937;
  --light: #f9fafb;
  --white: #ffffff;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition: all 0.2s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background-color: var(--light);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  color: var(--primary);
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Stats Section */
#stats {
  padding: 60px 0;
  background: var(--primary);
  color: var(--white);
  text-align: center;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-item h2 {
  font-size: 3.5rem;
  color: var(--accent);
  margin-bottom: 5px;
}

.stat-item p {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

/* Top Bar */
.top-bar {
  background: var(--primary);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
}

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

.top-bar-left {
  display: flex;
  gap: 20px;
}

.top-bar-right {
  display: flex;
  gap: 15px;
}

.top-bar-right a:hover {
  color: var(--accent);
}

/* Header & Nav */
header {
  background: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}

.logo img {
  height: 60px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
}

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

.btn-contact {
  background: var(--primary);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-contact:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Hero Section */
#hero {
  padding: 80px 0;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://img.freepik.com/free-photo/groomed-dog-salon-pet-grooming-equipment_23-2148766774.jpg') center/cover;
  min-height: 600px;
}

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

.hero-content h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-content .subtitle {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: block;
}

/* Hero Form */
.hero-form {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.hero-form h3 {
  margin-bottom: 20px;
  text-align: center;
}

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

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: inherit;
}

.btn-submit {
  width: 100%;
  background: var(--accent);
  color: var(--primary);
  border: none;
  padding: 15px;
  border-radius: var(--radius-md);
  font-weight: 800;
  cursor: pointer;
  font-size: 1.1rem;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-submit:hover {
  background: var(--primary);
  color: var(--white);
}

.hero-btns {
  display: flex;
  gap: 1rem;
}

.btn-primary {
  background: var(--highlight);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-block;
  box-shadow: 0 4px 14px rgba(153, 27, 27, 0.4);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Service Areas */
#areas {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  position: relative;
  overflow: hidden;
}

#areas::before {
  content: "🐾";
  position: absolute;
  top: -20px;
  right: 10%;
  font-size: 10rem;
  opacity: 0.05;
  transform: rotate(15deg);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.area-item {
  padding: 25px;
  border-radius: var(--radius-lg);
  font-weight: 800;
  font-size: 1.2rem;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  color: var(--white);
  border: 2px solid transparent;
}

.area-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

/* Unique Colors for each city */
.area-delhi {
  background: linear-gradient(to bottom right, #f87171, #ef4444);
}

.area-gurgaon {
  background: linear-gradient(to bottom right, #60a5fa, #3b82f6);
}

.area-noida {
  background: linear-gradient(to bottom right, #fbbf24, #f59e0b);
}

.area-faridabad {
  background: linear-gradient(to bottom right, #34d399, #10b981);
}

.area-ghaziabad {
  background: linear-gradient(to bottom right, #a78bfa, #8b5cf6);
}

/* How It Works */
#how-it-works {
  padding: 80px 0;
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.step-card .icon-box {
  width: 100px;
  height: 100px;
  background: var(--soft-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.5rem;
}

.step-card h4 {
  margin-bottom: 10px;
  color: var(--primary);
}

/* Services */
#services {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

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

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.service-card h3 {
  margin-bottom: 10px;
}

.size-selector {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin: 15px 0;
}

.size-btn {
  background: var(--accent);
  color: var(--primary);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.size-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.price-tag {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  margin-top: 10px;
}

/* Gallery */
#gallery {
  padding: 5rem 0;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
}

.gallery-item img:hover {
  transform: scale(1.03);
}

/* Reviews */
#reviews {
  padding: 5rem 0;
  background: var(--primary);
  color: var(--white);
}

#reviews h2 {
  color: var(--accent);
}

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

.review-card {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.review-card .name {
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
  display: block;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.review-card .stars {
  color: #fbbf24;
  margin-bottom: 1rem;
}

/* Contact */
#contact {
  padding: 5rem 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-info .item {
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  transition: var(--transition);
}

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

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

.menu-toggle:hover {
  color: var(--accent);
}

/* Responsive Overhaul */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .hero-btns {
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 900px) {
  nav {
    height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    gap: 1.5rem;
    border-bottom: 2px solid var(--primary);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
  }

  .btn-contact {
    display: inline-flex;
    justify-content: center;
    width: auto;
  }
}

@media (max-width: 768px) {
  .top-bar .container {
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
  }

  .top-bar-left,
  .top-bar-right {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .stats-grid {
    flex-direction: column;
    gap: 50px;
  }

  .stat-item h2 {
    font-size: 3rem;
  }

  .area-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 40px auto 0;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .contact-info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

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

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content .subtitle {
    font-size: 1.1rem;
  }

  .hero-form {
    padding: 1.5rem;
  }

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

  .btn-primary,
  .btn-outline {
    width: 100%;
  }

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

  .review-card {
    padding: 1.5rem;
  }
}