/* 
========================================================================
   MGK Enterprises - Pune's Premium Hanger & Cricket Net Installation
   Design & Stylesheet (Custom Vanilla CSS)
========================================================================
*/

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

/* --- CSS Variables & Design System --- */
:root {
  /* Color Palette (Logo-matched) */
  --color-primary-start: #00d2ff;
  --color-primary-end: #0066ff;
  --color-accent-start: #ff9900;
  --color-accent-end: #ff3300;
  --color-green-start: #25D366;
  --color-green-end: #128C7E;
  
  /* Dark Mode & High Contrast Neutrals */
  --color-dark-bg: #0b0f19;
  --color-dark-surface: #141b2d;
  --color-dark-card: rgba(20, 27, 45, 0.7);
  --color-light-bg: #ffffff;
  --color-light-surface: #f8f9fa;
  --color-light-card: rgba(255, 255, 255, 0.9);
  
  /* Text Colors */
  --text-dark: #0f172a;
  --text-dark-muted: #475569;
  --text-light: #f8fafc;
  --text-light-muted: #cbd5e1;
  
  /* Styling Helpers */
  --grad-primary: linear-gradient(135deg, var(--color-primary-start), var(--color-primary-end));
  --grad-accent: linear-gradient(135deg, var(--color-accent-start), var(--color-accent-end));
  --grad-green: linear-gradient(135deg, var(--color-green-start), var(--color-green-end));
  --grad-dark-overlay: linear-gradient(to top, rgba(11, 15, 25, 0.95) 15%, rgba(11, 15, 25, 0.4) 60%, rgba(11, 15, 25, 0.25) 100%);
  --grad-card-border: linear-gradient(135deg, rgba(0, 210, 255, 0.3), rgba(255, 153, 0, 0.15));
  
  /* Typography */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout */
  --container-width: 1240px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 25px rgba(0, 210, 255, 0.35);
  --shadow-accent-glow: 0 0 25px rgba(255, 153, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-light-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

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

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

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

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 15px;
}

/* --- Typography Helper Classes --- */
.text-center { text-align: center; }
.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.accent-gradient {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-tag {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary-end);
  margin-bottom: 10px;
  display: inline-block;
  background: rgba(0, 102, 255, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
}
.section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 800;
}
.section-desc {
  font-size: 1.1rem;
  color: var(--text-dark-muted);
  max-width: 700px;
  margin: 0 auto 50px auto;
}

/* --- Section Layout --- */
section {
  padding: 80px 0;
  position: relative;
}
.bg-dark-section {
  background-color: var(--color-dark-bg);
  color: var(--text-light);
}
.bg-dark-section .section-title,
.bg-dark-section h2, .bg-dark-section h3 {
  color: var(--text-light);
}
.bg-dark-section .section-desc {
  color: var(--text-light-muted);
}
.bg-light-section {
  background-color: var(--color-light-surface);
}

/* --- Buttons & UI Elements --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-headings);
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
}
.btn-primary {
  background: var(--grad-primary);
  color: var(--text-light);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}
.btn-accent {
  background: var(--grad-accent);
  color: var(--text-light);
  box-shadow: var(--shadow-sm);
}
.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent-glow);
}
.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
  background: var(--text-light);
  color: var(--color-dark-bg);
  border-color: var(--text-light);
  transform: translateY(-3px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--color-primary-end);
}
.btn-outline-dark:hover {
  background: var(--grad-primary);
  color: var(--text-light);
  border-color: transparent;
  transform: translateY(-3px);
}

/* --- Glassmorphism Card Style --- */
.glass-card {
  background: var(--color-dark-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-md);
  padding: 30px;
  box-shadow: var(--shadow-lg);
}

.light-glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 210, 255, 0.1);
  border-radius: var(--border-radius-md);
  padding: 35px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}
.light-glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 210, 255, 0.3);
  box-shadow: var(--shadow-lg);
}

/* --- Top Bar & Navigation --- */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: var(--color-dark-bg);
  color: #ffffff;
  z-index: 1001;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease;
}
.top-bar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.top-bar-left {
  flex: 1;
  overflow: hidden;
  max-width: 70%;
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}
.top-bar-link:hover {
  color: #ffffff;
}
.top-bar-link.whatsapp-link:hover {
  color: #25d366;
}
.top-bar-link svg {
  stroke-width: 2.5px;
}

/* Marquee Scroller */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  display: flex;
}
.marquee-content {
  display: inline-flex;
  gap: 50px;
  animation: marquee-scroll 25s linear infinite;
}
.marquee-item {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

header {
  position: fixed;
  top: 40px; /* Offset by topbar height */
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  background: #ffffff;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
}
header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Scrolled page navigation adjustments */
.page-scrolled .top-bar {
  transform: translateY(-100%);
}
.page-scrolled header {
  top: 0;
}

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

.logo-link img {
  height: 60px;
  width: auto;
  transition: var(--transition-smooth);
}
header.scrolled .logo-link img {
  height: 50px;
}

/* Desktop Navigation Menu */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-item {
  position: relative;
}
.nav-link {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  padding: 8px 0;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-primary);
  transition: var(--transition-smooth);
}
.nav-link:hover::after,
.nav-item.active .nav-link::after {
  width: 100%;
}
.nav-link:hover {
  color: var(--color-primary-end);
}

/* Services Dropdown menu */
.dropdown {
  position: relative;
}
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--border-radius-sm);
  width: 250px;
  padding: 10px 0;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  list-style: none;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-item a {
  display: block;
  padding: 10px 20px;
  font-size: 0.95rem;
  color: var(--text-dark-muted);
  font-family: var(--font-body);
}
.dropdown-item a:hover {
  color: var(--text-dark);
  background: rgba(0, 210, 255, 0.08);
  border-left: 3px solid var(--color-primary-start);
  padding-left: 22px;
}

/* Mobile Nav Styles */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.mobile-nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--text-dark);
  margin-bottom: 5px;
  transition: var(--transition-smooth);
  border-radius: 3px;
}
.mobile-nav-toggle span:last-child {
  margin-bottom: 0;
}
.mobile-nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.mobile-nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  z-index: 999;
  padding: 100px 30px 40px 30px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-smooth);
  overflow-y: auto;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}
.mobile-drawer.open {
  right: 0;
}
.mobile-drawer .nav-menu {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}
.mobile-drawer .nav-link {
  font-size: 1.15rem;
  display: block;
  width: 100%;
}
.mobile-drawer .dropdown-menu {
  position: static;
  transform: none !important;
  opacity: 1;
  visibility: visible;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 5px 0 0 15px;
  width: 100%;
}
.mobile-drawer .dropdown:hover .dropdown-menu {
  transform: none !important;
}
.mobile-drawer .dropdown-item a {
  padding: 8px 10px;
  font-size: 0.95rem;
}

/* --- Hero Slider Section --- */
.hero-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--color-dark-bg);
  margin-top: 130px; /* Push below header + topbar */
}
/* Force 16:9 on desktop */
@media (min-width: 769px) {
  .hero-slider-container {
    aspect-ratio: 16 / 9;
  }
}
/* Force 1:1 on mobile */
@media (max-width: 768px) {
  .hero-slider-container {
    aspect-ratio: 1 / 1;
    min-height: 480px; /* Fallback for very small screens */
    margin-top: 120px; /* Push below mobile header + topbar */
  }
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
  z-index: 1;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.1);
  transition: transform 6s ease-out;
}
.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--grad-dark-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
}

.hero-slide-content {
  text-align: center;
  color: var(--text-light);
  max-width: 850px;
  width: 90%;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out 0.4s, transform 0.8s ease-out 0.4s;
}
.hero-slide.active .hero-slide-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.15;
}
.hero-slide-content h1 span {
  display: inline-block;
}
.hero-slide-content p {
  font-size: 1.25rem;
  color: var(--text-light-muted);
  margin-bottom: 30px;
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}
.slider-btn:hover {
  background: var(--grad-primary);
  border-color: transparent;
  color: var(--text-light);
  box-shadow: var(--shadow-glow);
}
.slider-btn-prev { left: 30px; }
.slider-btn-next { right: 30px; }

.slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition-smooth);
}
.slider-dot.active {
  background: var(--color-primary-start);
  width: 30px;
  border-radius: 10px;
}

/* --- Quick Contact Form --- */
.quick-contact-section {
  padding: 0;
  position: relative;
  z-index: 20;
  margin-top: -50px; /* pull up form into hero slider */
}
.quick-contact-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 40px;
  background: rgba(20, 27, 45, 0.85);
  border: 1px solid rgba(0, 210, 255, 0.25);
  box-shadow: var(--shadow-glow);
}
.quick-contact-card .form-title {
  font-size: 1.25rem;
  font-family: var(--font-headings);
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 0.5px;
}
.quick-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 20px;
  align-items: center;
}
.form-group {
  position: relative;
}
.form-input {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-sm);
  color: var(--text-light);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}
.form-input::placeholder {
  color: #94a3b8;
}
.form-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-primary-start);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}
.quick-form .btn-submit {
  padding: 14px 35px;
  height: 51px;
}

/* Form Response Messages */
.form-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 10px;
  border-radius: var(--border-radius-sm);
  font-size: 0.95rem;
  display: none;
}
.form-message.success {
  display: block;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid var(--color-green-start);
  color: var(--color-green-start);
}
.form-message.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid #ef4444;
  color: #f87171;
}

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.about-content p {
  color: var(--text-dark-muted);
  margin-bottom: 20px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.about-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
}
.about-feat-item svg {
  color: var(--color-primary-end);
  flex-shrink: 0;
}
.about-image-wrapper {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 4px solid var(--color-accent-start);
  border-radius: var(--border-radius-md);
  transform: translate(15px, 15px);
  z-index: -1;
}

/* --- Success Story Section --- */
.success-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.timeline-item {
  display: flex;
  gap: 20px;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 17px;
  width: 2px;
  height: calc(100% + 10px);
  background: rgba(255, 255, 255, 0.1);
}
.timeline-item:last-child::before {
  display: none;
}
.timeline-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-light);
  flex-shrink: 0;
  font-size: 0.9rem;
}
.timeline-body h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-light);
}
.timeline-body p {
  color: var(--text-light-muted);
  font-size: 0.95rem;
}
.stat-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.stat-card {
  padding: 30px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
}
.stat-card:hover {
  border-color: rgba(0, 210, 255, 0.3);
  background: rgba(0, 210, 255, 0.03);
}
.stat-number {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary-start);
  line-height: 1;
  margin-bottom: 5px;
}
.stat-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light-muted);
}

/* --- Why Special & Specialisation --- */
.why-special-grid, .specialisation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.special-card {
  text-align: left;
}
.special-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 210, 255, 0.1);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-end);
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}
.special-card:hover .special-icon {
  background: var(--grad-primary);
  color: var(--text-light);
  box-shadow: var(--shadow-glow);
  transform: rotate(5deg) scale(1.05);
}
.special-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.special-card p {
  color: var(--text-dark-muted);
  font-size: 0.95rem;
}

/* Spec Card variant (Dark section) */
.spec-card {
  padding: 30px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  transition: var(--transition-smooth);
}
.spec-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 153, 0, 0.3);
  transform: translateY(-5px);
}
.spec-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 153, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-start);
  margin-bottom: 20px;
}
.spec-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--text-light);
}
.spec-card p {
  color: var(--text-light-muted);
  font-size: 0.95rem;
}

/* --- Services Grid / Cards Section --- */
.services-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
.service-card {
  background: var(--color-light-bg);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 210, 255, 0.25);
}
.service-card-img-wrapper {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.service-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img-wrapper img {
  transform: scale(1.08);
}
.service-category {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: var(--grad-primary);
  color: var(--text-light);
  padding: 4px 14px;
  font-family: var(--font-headings);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}
.service-card-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.service-card-body h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.service-card-body p {
  color: var(--text-dark-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}
.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 20px;
}
.service-link {
  font-family: var(--font-headings);
  font-weight: 600;
  color: var(--color-primary-end);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.95rem;
}
.service-link svg {
  transition: transform 0.3s ease;
}
.service-link:hover svg {
  transform: translateX(4px);
}
.service-price-tag {
  font-size: 0.9rem;
  color: var(--text-dark-muted);
}
.service-price-tag strong {
  color: var(--color-accent-end);
  font-size: 1.1rem;
}

/* --- Highlights/Milestones Section --- */
.highlights-section {
  background: var(--grad-primary);
  color: var(--text-light);
  padding: 50px 0;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
}
.highlight-item h3 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 5px;
}
.highlight-item p {
  font-family: var(--font-headings);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.85);
}

/* --- Reviews Section --- */
.reviews-carousel-wrapper {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  overflow: hidden;
}
.reviews-carousel {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.review-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0 15px;
}
.review-card {
  padding: 40px;
  text-align: center;
}
.review-quote {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 30px;
  position: relative;
}
.review-quote::before, .review-quote::after {
  font-family: Georgia, serif;
  font-size: 4rem;
  position: absolute;
  color: rgba(0, 210, 255, 0.15);
  line-height: 1;
}
.review-quote::before {
  content: '“';
  top: -25px;
  left: -20px;
}
.review-quote::after {
  content: '”';
  bottom: -45px;
  right: -20px;
}
.review-stars {
  color: #ffb703;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 5px;
}
.review-author {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.1rem;
}
.review-location {
  font-size: 0.85rem;
  color: var(--text-dark-muted);
}
.reviews-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}
.review-ctrl-btn {
  background: var(--color-light-surface);
  border: 1px solid rgba(0, 0, 0, 0.08);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.review-ctrl-btn:hover {
  background: var(--grad-primary);
  color: var(--text-light);
  border-color: transparent;
}

/* --- FAQs Section --- */
.faqs-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq-item {
  border-radius: var(--border-radius-sm);
  background: var(--color-light-surface);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: var(--transition-smooth);
}
.faq-header {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--color-light-surface);
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1.05rem;
  transition: var(--transition-smooth);
}
.faq-header:hover {
  background: rgba(0, 210, 255, 0.03);
}
.faq-icon {
  transition: transform 0.3s ease;
  color: var(--color-primary-end);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  padding: 0 25px;
  color: var(--text-dark-muted);
  font-size: 0.95rem;
}
.faq-item.active {
  border-color: rgba(0, 210, 255, 0.2);
  box-shadow: var(--shadow-sm);
}
.faq-item.active .faq-header {
  color: var(--color-primary-end);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-item.active .faq-body {
  max-height: 250px; /* Adjust according to body content */
  padding: 20px 25px;
}

/* --- Call To Action Section --- */
.cta-wrapper {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.cta-wrapper h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.cta-wrapper p {
  font-size: 1.15rem;
  color: var(--text-light-muted);
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* --- Gallery & Media Section --- */
.gallery-filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--color-light-surface);
  cursor: pointer;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--grad-primary);
  color: var(--text-light);
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}
.gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 15, 25, 0.75);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-smooth);
  color: var(--text-light);
  padding: 20px;
  text-align: center;
}
.gallery-overlay h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-light);
}
.gallery-overlay p {
  font-size: 0.85rem;
  color: var(--text-light-muted);
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Simple Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 15, 25, 0.95);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox-modal.show {
  display: flex;
  opacity: 1;
}
.lightbox-content-wrapper {
  position: relative;
  max-width: 90%;
  max-height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.lightbox-caption {
  color: var(--text-light);
  margin-top: 15px;
  font-family: var(--font-headings);
  font-size: 1.1rem;
}
.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: var(--text-light);
  font-size: 2rem;
  cursor: pointer;
  background: transparent;
  border: none;
}

/* --- Contact & Location Elements --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-info-item {
  display: flex;
  gap: 20px;
}
.contact-info-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 210, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-end);
  flex-shrink: 0;
}
.contact-info-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.contact-info-text p, .contact-info-text a {
  color: var(--text-dark-muted);
  font-size: 0.95rem;
}
.contact-info-text a:hover {
  color: var(--color-primary-end);
}

.map-wrapper {
  margin-top: 40px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 300px;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-card {
  padding: 40px;
}
.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form label {
  display: block;
  font-family: var(--font-headings);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.contact-form .form-input, .contact-form textarea {
  background: var(--color-light-surface);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
}
.contact-form .form-input:focus, .contact-form textarea:focus {
  background: #ffffff;
  border-color: var(--color-primary-end);
}
.contact-form textarea {
  resize: vertical;
}

/* --- Service Detail Page Templates --- */
.service-hero {
  padding: 160px 0 80px 0;
  background: var(--color-dark-bg);
  color: var(--text-light);
  text-align: center;
}
.service-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--text-light);
}
.service-hero-breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light-muted);
}
.service-hero-breadcrumbs a:hover {
  color: var(--color-primary-start);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.20fr 0.80fr;
  gap: 50px;
  padding: 80px 0;
}
.service-detail-main h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.service-detail-img {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
  aspect-ratio: 16 / 10;
}
.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-detail-body p {
  color: var(--text-dark-muted);
  margin-bottom: 25px;
  font-size: 1.05rem;
}
.service-specifications {
  margin: 40px 0;
  background: var(--color-light-surface);
  padding: 30px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(0,0,0,0.05);
}
.service-specifications h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  list-style: none;
}
.spec-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-dark-muted);
}
.spec-list-item svg {
  color: var(--color-green-start);
  flex-shrink: 0;
}

.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.sidebar-box {
  background: var(--color-light-surface);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--border-radius-md);
  padding: 30px;
}
.sidebar-box h3 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(0, 210, 255, 0.1);
  padding-bottom: 10px;
}
.sidebar-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebar-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.03);
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}
.sidebar-links li.active a, .sidebar-links a:hover {
  background: var(--grad-primary);
  color: var(--text-light);
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

.sidebar-box-accent {
  background: var(--color-dark-bg);
  border-color: rgba(255, 153, 0, 0.2);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}
.sidebar-box-accent::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 153, 0, 0.15) 0%, transparent 70%);
}
.sidebar-box-accent h3 {
  color: var(--text-light);
  border-bottom-color: rgba(255,153,0,0.1);
}
.sidebar-box-accent p {
  color: var(--text-light-muted);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

/* --- Floating Contact Icons --- */
.floating-contact-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}
.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
}
.floating-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.floating-whatsapp {
  background: var(--grad-green);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}
.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}
.floating-phone {
  background: var(--grad-accent);
  box-shadow: 0 8px 24px rgba(255, 153, 0, 0.4);
}
.floating-phone:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 12px 30px rgba(255, 153, 0, 0.6);
}

/* Pulse Animation Ring */
.floating-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  animation: pulse-ring 2s infinite;
}
.floating-phone::after {
  box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.5);
}
@keyframes pulse-ring {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    transform: scale(1.4);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1.4);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* --- Footer --- */
footer {
  background-color: var(--color-dark-bg);
  color: var(--text-light-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 20px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-col h4 {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 25px;
  position: relative;
  font-family: var(--font-headings);
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--color-primary-start);
}
.footer-about img {
  height: 55px;
  margin-bottom: 20px;
}
.footer-about p {
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}
.footer-links a:hover {
  color: var(--color-primary-start);
  padding-left: 5px;
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
}
.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
}
.footer-contact-item svg {
  color: var(--color-primary-start);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact-item a:hover {
  color: var(--text-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-bottom a {
  color: var(--text-light);
  border-bottom: 1px dotted rgba(255,255,255,0.4);
}
.footer-bottom a:hover {
  color: var(--color-primary-start);
  border-bottom-color: var(--color-primary-start);
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991px) {
  h1 { font-size: 2.8rem; }
  .section-title { font-size: 2.2rem; }
  
  .about-grid, .success-grid, .contact-grid, .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image-wrapper {
    order: -1;
  }
  .service-sidebar {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  header {
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .desktop-nav {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  
  .hero-slide-overlay {
    padding-top: 0 !important;
  }
  .hero-slide-content h1 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
  .hero-slide-content p {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
  .hero-slide-content .btn {
    padding: 10px 20px;
    font-size: 0.88rem;
  }
  
  .quick-contact-section {
    margin-top: 0;
    padding: 40px 0;
  }
  .quick-contact-card {
    padding: 25px 20px;
  }
  .quick-form {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .quick-form .btn-submit {
    width: 100%;
  }
  
  .timeline-item::before {
    left: 17px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .floating-contact-container {
    bottom: 20px;
    right: 20px;
  }
  .floating-btn {
    width: 50px;
    height: 50px;
  }
  .floating-btn svg {
    width: 22px;
    height: 22px;
  }
}
