/* ==========================================================================
   ZOOMIES PET CARE - PREMIUM DESIGN SYSTEM & STYLESHEET
   Brand: Zoomies Pet Care (GRACE JYOTI PET CARE Pvt Ltd)
   Location: Khajaguda, Gachibowli, Hyderabad
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Brand Colors */
  --primary: #F26522;
  --primary-hover: #D84F0E;
  --primary-light: #FFF0EB;
  --primary-glow: rgba(242, 101, 34, 0.25);
  
  --dark: #121214;
  --dark-surface: #1E1E24;
  --dark-card: #282830;
  
  --yellow: #FFE57F;
  --yellow-light: #FFF8E1;
  
  --blue: #B5E7F8;
  --blue-light: #E0F7FA;

  --white: #FFFFFF;
  --bg-body: #FAFAFC;
  --bg-surface: #FFFFFF;
  --bg-alt: #F4F4F7;
  
  --text-main: #18181B;
  --text-muted: #52525B;
  --text-light: #A1A1AA;
  --text-white: #FFFFFF;

  --border: #E4E4E7;
  --border-focus: #F26522;

  /* Typography */
  --font-heading: 'Fredoka', cursive, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows & Elevation */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
  --shadow-primary: 0 10px 30px rgba(242, 101, 34, 0.3);

  /* Layout & Spacing */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1240px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.25;
  font-weight: 600;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.text-highlight {
  color: var(--primary);
  display: inline-block;
  position: relative;
}

/* --- Container & Section Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: var(--bg-alt);
}

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

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--text-white);
}

.section-dark p {
  color: var(--text-light);
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.section-header {
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.badge-primary {
  background-color: var(--primary-light);
  color: var(--primary);
}

.badge-yellow {
  background-color: var(--yellow);
  color: var(--dark);
}

.badge-blue {
  background-color: var(--blue-light);
  color: #0284C7;
}

.badge-dark {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

/* --- Buttons & Action Elements --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(242, 101, 34, 0.4);
}

.btn-secondary {
  background-color: var(--dark);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: #27272A;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

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

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

.btn-whatsapp:hover {
  background-color: #1EBE5D;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.4);
}

.btn-sm {
  padding: 0.6rem 1.3rem;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
}

/* --- Top Announcement & Credit Bar --- */
.top-bar {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.825rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-info span, .top-bar-info a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.85);
}

.top-bar-info a:hover {
  color: var(--primary);
}

.top-bar-credit {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.top-bar-credit a {
  color: var(--yellow);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition);
}

.top-bar-credit a:hover {
  color: var(--primary);
}

/* --- Header Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.brand-title-wrap {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--primary);
  line-height: 1;
  letter-spacing: 0.02em;
}

.brand-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  display: none;
}

.nav-link:hover {
  color: var(--primary);
  background-color: var(--primary-light);
}

.nav-link.active {
  color: var(--primary);
  background-color: var(--primary-light);
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.header-contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  background-color: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  transition: var(--transition);
  white-space: nowrap;
}

.header-contact-badge:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: var(--white);
}

.header-contact-badge i {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
  padding: 0.5rem;
}

/* --- Mobile Drawer Navigation --- */
.mobile-nav {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: var(--white);
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transform: translateY(-150%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav .nav-link {
  font-size: 1.15rem;
  padding: 0.5rem 0;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  padding: 4rem 0 5rem 0;
  background: linear-gradient(135deg, #FFF6F0 0%, #FFFFFF 60%, #FFFDF9 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  width: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--primary);
  font-weight: 700;
  line-height: 1;
}

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

.hero-media-wrapper {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.hero-floating-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
  border: 1px solid var(--border);
}

.badge-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.hero-floating-badge-2 {
  position: absolute;
  top: 30px;
  right: -20px;
  background: var(--dark);
  color: var(--white);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
}

.hero-floating-badge-2 i {
  color: var(--yellow);
}

/* --- Features Grid (Why Zoomies) --- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.feature-card {
  background: var(--white);
  padding: 2.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(242, 101, 34, 0.3);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.feature-title {
  font-size: 1.35rem;
}

/* --- Service Cards --- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(18, 18, 20, 0.85);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
}

.service-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-body h3 {
  margin-bottom: 0.75rem;
}

.service-list {
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.service-list li i {
  color: var(--primary);
  font-size: 0.85rem;
}

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

/* --- Estimator & Calculator Widget --- */
.estimator-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary-light);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  width: 100%;
  box-sizing: border-box;
}

.form-group label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
}

.form-control, .form-select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
  background-color: var(--bg-body);
  transition: var(--transition);
  text-overflow: ellipsis;
  overflow: hidden;
}

.form-control:focus, .form-select:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

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

.calc-display {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  width: 100%;
  box-sizing: border-box;
}

.calc-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--yellow);
  line-height: 1;
}

/* --- Gallery & Filter System --- */
.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 18, 20, 0.85), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

/* --- Testimonials --- */
.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.stars-row {
  color: #FFC107;
  display: flex;
  gap: 0.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

/* --- Reviews Slider Container & Controls --- */
.reviews-slider-container {
  position: relative;
  overflow: hidden;
  padding: 0.5rem 0;
}

.reviews-slider-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.reviews-slider-track .testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  box-sizing: border-box;
  min-height: 270px;
}

@media (max-width: 992px) {
  .reviews-slider-track .testimonial-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (max-width: 640px) {
  .reviews-slider-track .testimonial-card {
    flex: 0 0 100%;
  }
}

.slider-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.25rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: scale(1.08);
}

.slider-dots {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  width: 26px;
  border-radius: 12px;
  background: var(--primary);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* --- Timeline ("A Day at Zoomies") --- */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--primary-light);
  transform: translateX(-50%);
}

.timeline-step {
  position: relative;
  margin-bottom: 2.5rem;
  width: 50%;
  padding: 0 2rem;
}

.timeline-step:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-step:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-node {
  position: absolute;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.timeline-step:nth-child(odd) .timeline-node { right: -12px; }
.timeline-step:nth-child(even) .timeline-node { left: -12px; }

.timeline-content {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.timeline-time {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 700;
}

/* --- Floating WhatsApp CTA --- */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: var(--white);
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.06);
  background: #1EBE5D;
}

.floating-whatsapp i {
  font-size: 1.4rem;
}

/* --- Footer --- */
.site-footer {
  background: var(--dark);
  color: var(--text-light);
  padding: 4.5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-light);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
}

.footer-contact-item i {
  color: var(--primary);
  margin-top: 0.25rem;
}

/* --- Social Media Icons --- */
.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-social-icon.icon-insta { color: #E1306C; }
.footer-social-icon.icon-linkedin { color: #0A66C2; }
.footer-social-icon.icon-whatsapp { color: #25D366; }

.footer-social-icon:hover {
  background: var(--primary) !important;
  color: var(--white) !important;
  border-color: var(--primary) !important;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.3);
}

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

/* --- Mobile Bottom Sticky Action Bar (App Style) --- */
.mobile-bottom-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: rgba(18, 18, 20, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.65rem 1rem;
    gap: 0.6rem;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.2);
  }

  .mobile-bottom-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.55rem 0.5rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    transition: transform 0.2s ease;
  }

  .mobile-bottom-btn:active {
    transform: scale(0.95);
  }

  .mobile-bottom-btn i {
    font-size: 1.15rem;
  }

  .mobile-btn-call {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
  }

  .mobile-btn-wa {
    background: #25D366;
    color: var(--white);
  }

  .mobile-btn-book {
    background: var(--primary);
    color: var(--white);
  }

  body {
    padding-bottom: 70px;
  }

  .floating-whatsapp {
    display: none !important;
  }

  /* Mobile Footer Alignment: Main Content Left-Aligned, Copyright & Yash Host Credit Centered */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    text-align: left;
  }

  .footer-contact-item {
    justify-content: flex-start;
  }

  .footer-social-links {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }

  .top-bar-inner {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }

  .top-bar-info {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  .site-header {
    height: 70px;
  }

  .header-inner {
    height: 70px;
  }

  .brand-logo img {
    height: 44px;
  }

  .brand-name {
    font-size: 1.35rem;
  }

  .brand-sub {
    font-size: 0.6rem;
  }

  /* Mobile Drawer Menu Upgrade */
  .mobile-nav {
    top: 70px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 1.75rem 1.25rem;
    gap: 0.65rem;
  }

  .mobile-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-md);
    background: var(--bg-body);
    border: 1px solid var(--border);
    transition: var(--transition);
  }

  .mobile-nav .nav-link i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  .mobile-nav .nav-link.active {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
  }

  /* Mobile Hero Section */
  .hero-section {
    padding: 2.25rem 0 3.25rem 0;
    text-align: center;
  }

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

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

  .hero-cta-group {
    justify-content: center;
    width: 100%;
    gap: 0.75rem;
  }

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

  .hero-image-card img {
    height: 300px;
  }

  .hero-floating-badge {
    bottom: -15px;
    left: 10px;
    right: 10px;
    padding: 0.85rem 1rem;
  }

  .hero-floating-badge-2 {
    top: 15px;
    right: 10px;
    font-size: 0.8rem;
    padding: 0.6rem 0.9rem;
  }

  /* Mobile Stats Grid */
  .hero-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    padding-top: 1.25rem;
    width: 100%;
  }

  .stat-item {
    background: var(--white);
    padding: 0.9rem 0.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    text-align: center;
    box-shadow: var(--shadow-sm);
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  /* Mobile Estimator Fix */
  .estimator-box {
    padding: 1.25rem 1rem;
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .form-select, .form-control {
    font-size: 0.875rem;
    padding: 0.75rem 0.75rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-overflow: ellipsis;
  }

  .calc-display {
    padding: 1.25rem 0.75rem;
    width: 100%;
    box-sizing: border-box;
  }

  .calc-price {
    font-size: 1.85rem;
  }
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu, .header-contact-badge {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .grid-3, .grid-2, .grid-4, .gallery-grid {
    grid-template-columns: 1fr;
  }
  .timeline::before {
    left: 20px;
  }
  .timeline-step {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
  }
  .timeline-step:nth-child(odd), .timeline-step:nth-child(even) {
    left: 0;
    text-align: left;
  }
  .timeline-step:nth-child(odd) .timeline-node,
  .timeline-step:nth-child(even) .timeline-node {
    left: 9px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
