/* MILAN TV REPAIR SERVICE - PREMIUM LIGHT DESIGN SYSTEM */
/* Spacing: Minimal & Compact | Style: Apple Glassmorphic & Colorful */

:root {
  /* Fonts */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Color Palette (Apple Light Aesthetic + Color Pop) */
  --color-bg-base: #ffffff;         /* Pure White background */
  --color-bg-secondary: #f0f4f8;    /* Calculated dynamically below */
  --color-bg-surface: #ffffff;      /* Card surface */
  
  --color-primary: #0066ff;        /* Apple Royal Blue */
  --color-primary-hover: #0052cc;
  --color-primary-light: rgba(0, 102, 255, 0.05);
  --color-primary-border: rgba(0, 102, 255, 0.12);
  
  --color-accent-green: #22c55e;   /* Success Green */
  --color-accent-green-light: rgba(34, 197, 94, 0.08);
  
  --color-text-dark: #0f172a;      /* Slate 900 for Headings */
  --color-text-main: #1e293b;      /* Slate 800 for Body */
  --color-text-muted: #64748b;     /* Slate 500 for secondary text */
  --color-text-light: #94a3b8;     /* Slate 400 for borders/placeholders */
  
  /* Borders and Dividers */
  --border-color: #e2e8f0;         /* Slate 200 thin border */
  --border-color-hover: #cbd5e1;   /* Slate 300 border */
  
  /* Shadows */
  --shadow-premium: 0px 8px 24px rgba(15, 23, 42, 0.04);
  --shadow-hover: 0px 12px 30px rgba(0, 102, 255, 0.06);
  --shadow-modal: 0px 20px 40px rgba(15, 23, 42, 0.08);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.4s ease;
  
  --scroll-progress: 0%;
}

/* Reset and Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

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

/* Soft Blurred Background Blobs */
.bg-blur-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.45;
  mix-blend-mode: multiply;
  animation: float-blob 20s infinite ease-in-out;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background-color: #e0f2fe; /* Light Blue */
  top: 2%;
  left: -150px;
}

.blob-2 {
  width: 600px;
  height: 600px;
  background-color: #f3e8ff; /* Light Lavender */
  top: 40%;
  right: -200px;
  animation-delay: -5s;
}

.blob-3 {
  width: 450px;
  height: 450px;
  background-color: #eff6ff; /* Soft Royal Blue */
  bottom: 5%;
  left: 10%;
  animation-delay: -10s;
}

@keyframes float-blob {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.08);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background-color: var(--color-primary);
  width: var(--scroll-progress);
  z-index: 1001;
  transition: width 0.1s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-light);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--color-text-dark);
}

.gradient-text {
  color: var(--color-primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.15);
}
.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 102, 255, 0.25);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background-color: var(--color-bg-base);
  border-color: var(--border-color);
  color: var(--color-text-main);
}
.btn-outline:hover {
  background-color: var(--color-bg-secondary);
  border-color: var(--border-color-hover);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  border-radius: 8px;
}

/* Header & Glass Navigation with Light Blue Tint */
.header {
  position: fixed;
  top: 1.25rem;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 30px;
  background: rgba(240, 246, 255, 0.75); /* Frosted light blue tint */
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(0, 102, 255, 0.12); /* Subtle blue border */
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.04);
  transition: all var(--transition-normal);
}

.header.scrolled {
  top: 0;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border-color);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-text-dark);
  text-decoration: none;
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.logo span {
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--color-primary);
  background-color: var(--color-primary-light);
  border: 1px solid var(--color-primary-border);
  padding: 0.1rem 0.4rem;
  border-radius: 6px;
}

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

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
  padding: 0.25rem 0;
}
.nav-link:hover {
  color: var(--color-text-dark);
}
.nav-link.active {
  color: var(--color-primary);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 14px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text-dark);
  border-radius: 1px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.mobile-menu-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}
.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}
.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--color-primary);
}
.mobile-nav-cta {
  width: 100%;
  margin-top: 2rem;
}

/* Spacing Configuration: Minimal & Compact Section Padding */
section {
  padding: 3.5rem 0; /* Reduced from 6rem for minimal section spacing */
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 2.5rem auto; /* Compact spacing */
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
  color: var(--color-text-dark);
}

.section-title.text-left {
  text-align: left;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
}

.section-subtitle.text-left {
  text-align: left;
}

/* Alternate Section Background Colors */
.hero-section {
  background-color: var(--color-bg-base); /* White */
  min-height: calc(100vh - 1.5rem);
  display: flex;
  align-items: center;
  padding-top: 6.5rem;
  padding-bottom: 2.5rem;
}

.services-section {
  background-color: #f1f5f9; /* Cool Slate Light Blue */
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.about-section {
  background-color: var(--color-bg-base); /* White */
}

.reviews-section {
  background-color: #edf4fa; /* Soft Royal Blue Tint */
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.brand-marquee-section {
  background-color: var(--color-bg-base); /* White */
  border-bottom: 1px solid var(--border-color);
  padding: 2rem 0;
}

.blogs-section {
  background-color: #f8fafc; /* Ultra Light Slate */
  border-bottom: 1px solid var(--border-color);
}

.location-section {
  background-color: var(--color-bg-base); /* White */
}

/* Hero Content Styling */
.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3rem;
}

.badge-new-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-primary-light);
  border: 1px solid var(--color-primary-border);
  padding: 0.35rem 0.8rem;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-accent-green);
  box-shadow: 0 0 0 0 var(--color-accent-green-light);
  animation: pulse-green 2s infinite;
}

.hero-title {
  font-size: 3.25rem;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.035em;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-main);
  max-width: 520px;
  margin-bottom: 2rem;
}

/* Trust Badges Grid */
.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 2.25rem;
  max-width: 520px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-bg-base);
  border: 1px solid var(--border-color);
  padding: 0.65rem 0.9rem;
  border-radius: 14px;
  box-shadow: var(--shadow-premium);
}

.trust-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
}

.trust-icon {
  width: 18px;
  height: 18px;
}

.trust-badge-item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

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

/* Hero Carousel Slider Layout */
.hero-visual {
  position: relative;
  width: 100%;
}

.hero-carousel-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1.15;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0px 10px 30px rgba(15, 23, 42, 0.06);
  background-color: #f1f5f9;
  z-index: 2;
}

.hero-carousel-container {
  display: flex;
  width: 300%; /* 3 slides */
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
  flex: 0 0 33.333%;
  width: 33.333%;
  height: 100%;
  position: relative;
}

.hero-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.9rem 1rem;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-color);
  color: var(--color-text-dark);
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-premium);
}
.hero-carousel-control:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
}

.hero-carousel-control.prev {
  left: 1rem;
}
.hero-carousel-control.next {
  right: 1rem;
}

.hero-carousel-indicators {
  position: absolute;
  bottom: 3.5rem; /* Above the caption bar */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.hero-indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.hero-indicator-dot.active {
  background-color: #ffffff;
  width: 18px;
  border-radius: 4px;
}

.glow-sphere {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.06) 0%, rgba(255,255,255,0) 70%);
  z-index: 0;
  pointer-events: none;
}

/* Services Grid & Custom Color Coding for Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--color-bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transition: all var(--transition-normal);
  border-top: 3px solid transparent; /* Accent Color Line */
  display: flex;
  flex-direction: column;
  padding: 0;
}

/* Accent Color Maps */
.service-card.color-blue {
  border-top-color: #3b82f6;
}
.service-card.color-purple {
  border-top-color: #8b5cf6;
}
.service-card.color-orange {
  border-top-color: #f97316;
}
.service-card.color-green {
  border-top-color: #10b981;
}

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

.service-card-image-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.service-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card-image {
  transform: scale(1.05);
}

.service-card-content {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text-dark);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* About Section Two Column Layout (Technician Showcase) */
.about-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: flex-start;
  gap: 4rem;
}

.about-features-list {
  list-style: none;
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-features-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--color-text-main);
}

.about-features-list strong {
  color: var(--color-text-dark);
  font-weight: 600;
}

.feature-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--color-accent-green-light);
  color: var(--color-accent-green);
}
.feature-icon-wrapper svg {
  width: 12px;
  height: 12px;
}

.about-visual-column {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  width: 100%;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1.35;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-premium);
}

.about-technician-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.about-image-wrapper:hover .about-technician-image {
  transform: scale(1.03);
}

.about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 102, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

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

.stat-card {
  background: var(--color-bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-premium);
  transition: all var(--transition-fast);
}

.stat-card:hover {
  border-color: var(--color-primary-border);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
  display: inline-block;
  color: var(--color-primary);
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

/* Google Reviews Section */
.reviews-summary-card {
  background: var(--color-bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-premium);
}

.rating-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-light);
  border: 1px solid var(--color-primary-border);
  border-radius: 16px;
  padding: 1.25rem 2rem;
  min-width: 170px;
  text-align: center;
}

.rating-number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-text-dark);
}
.rating-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  margin: 0.4rem 0;
  letter-spacing: 0.1em;
}
.rating-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.reviews-carousel-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviews-carousel-container {
  width: 100%;
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding: 0.5rem 0;
}
.reviews-carousel-container::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 calc(33.333% - 1.333rem);
  scroll-snap-align: start;
  background: var(--color-bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  transition: all var(--transition-fast);
}

.review-card:hover {
  border-color: var(--color-primary-border);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

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

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-primary);
  background-color: var(--color-primary-light);
  border: 1px solid var(--color-primary-border);
}

.review-meta h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-dark);
}
.review-meta span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.review-stars {
  color: #fbbf24;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.review-text {
  font-size: 0.9rem;
  color: var(--color-text-main);
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
  line-height: 1.55;
}

.carousel-control {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-bg-surface);
  border: 1px solid var(--border-color);
  color: var(--color-text-dark);
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-premium);
}
.carousel-control:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.indicator-dot.active {
  background-color: var(--color-primary);
  width: 18px;
  border-radius: 4px;
}

/* Brand Scrolling Marquee */
.brand-marquee-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.75rem;
}

.marquee-wrapper {
  display: flex;
  width: 100%;
  position: relative;
}
.marquee-wrapper::before, .marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 15%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}
.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: scroll-marquee 45s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition: color var(--transition-fast);
  cursor: default;
}
.marquee-item:hover {
  color: var(--color-primary);
}

/* Blogs Section Header-Flex */
.section-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.section-header-text {
  max-width: 650px;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.25rem;
}

.blog-card {
  background: var(--color-bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary-border);
  box-shadow: var(--shadow-hover);
}

.blog-image-wrapper {
  width: 100%;
  height: 190px;
  overflow: hidden;
  position: relative;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.blog-card:hover .blog-image {
  transform: scale(1.06);
}

.blog-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
}

.blog-body {
  padding: 1.5rem 1.75rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.blog-meta-info {
  display: flex;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 0.65rem;
}

.blog-card h3 {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 0.65rem;
  font-weight: 700;
  color: var(--color-text-dark);
  transition: color var(--transition-fast);
}
.blog-card:hover h3 {
  color: var(--color-primary);
}

.blog-card p {
  font-size: 0.9rem;
  color: var(--color-text-main);
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.55;
}

.blog-read-more {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-dark);
  background: none;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  padding: 0;
  transition: color var(--transition-fast);
}
.blog-read-more svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}
.blog-card:hover .blog-read-more {
  color: var(--color-primary);
}
.blog-card:hover .blog-read-more svg {
  transform: translateX(4px);
}

/* Location Section */
.location-container {
  display: grid;
  grid-template-columns: 0.9fr 1.11fr;
  gap: 4rem;
  align-items: center;
}

.contact-card-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.contact-info-item {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background-color: var(--color-primary-light);
  border: 1px solid var(--color-primary-border);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.2rem;
}
.contact-info-item p {
  font-size: 0.9rem;
  color: var(--color-text-main);
}
.contact-link-hover {
  color: var(--color-text-main);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.contact-link-hover:hover {
  color: var(--color-primary);
}

.location-actions {
  display: flex;
  gap: 1.25rem;
}

.location-map-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-premium);
}

#location-map {
  filter: none;
}

.map-overlay-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow: inset 0 0 10px rgba(15, 23, 42, 0.05);
  pointer-events: none;
  z-index: 1;
}

/* Footer */
.footer {
  background-color: #f8fafc;
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.footer-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-bg-surface);
  border: 1px solid var(--border-color);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  text-decoration: none;
  box-shadow: var(--shadow-premium);
}
.social-icon:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
}
.social-icon svg {
  width: 16px;
  height: 16px;
}

.footer-links-group h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-dark);
}

.footer-links-group h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 25px;
  height: 2px;
  background-color: var(--color-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-links a:hover {
  color: var(--color-primary);
  padding-left: 2px;
}

.footer-links-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.footer-links-contact li span {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}
.footer-links-contact li p {
  font-size: 0.9rem;
  color: var(--color-text-main);
}
.footer-links-contact a {
  color: var(--color-text-main);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-links-contact a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Booking & Blog Creator Modals */
.booking-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
  padding: 1.5rem;
}
.booking-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.booking-modal-card {
  position: relative;
  background: var(--color-bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  width: 100%;
  max-width: 600px;
  padding: 2.25rem;
  box-shadow: var(--shadow-modal);
  transform: translateY(20px);
  transition: transform var(--transition-normal);
  max-height: 90vh;
  overflow-y: auto;
}
.booking-modal-backdrop.open .booking-modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background-color: #f1f5f9;
  border: 1px solid var(--border-color);
  color: var(--color-text-muted);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.modal-close:hover {
  background-color: var(--border-color);
  color: var(--color-text-dark);
}

.modal-header {
  margin-bottom: 1.75rem;
}
.modal-header h3 {
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}
.modal-header p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

.booking-form input, .booking-form select, .booking-form textarea {
  background-color: #f8fafc;
  border: 1px solid var(--border-color);
  color: var(--color-text-dark);
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  outline: none;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
  background-color: #ffffff;
}

.booking-form option {
  background-color: #ffffff;
  color: var(--color-text-dark);
}

/* Success Container */
.form-success-container {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 0;
}

.success-icon-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-accent-green-light);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: var(--color-accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.success-icon-badge svg {
  width: 28px;
  height: 28px;
}

.form-success-container h3 {
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
}
.form-success-container p {
  font-size: 0.925rem;
  color: var(--color-text-main);
  max-width: 440px;
  line-height: 1.6;
}

/* Loader */
.btn-loader {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin-loader 0.8s linear infinite;
  display: inline-block;
}

/* Floating Action Buttons */
.floating-actions-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 998;
}

.floating-fab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.15);
  transition: all var(--transition-fast);
  text-decoration: none;
  position: relative;
}

.floating-fab:hover {
  transform: translateY(-4px) scale(1.04);
}

.fab-whatsapp {
  background-color: var(--color-accent-green);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.25);
  animation: pulse-fab-green 2.5s infinite;
}

.fab-location {
  background-color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.25);
  animation: float-fab 4s ease-in-out infinite;
}

.floating-fab svg {
  width: 22px;
  height: 22px;
}

/* Animation Keyframes */
@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

@keyframes pulse-fab-green {
  0% {
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.25), 0 0 0 0 rgba(34, 197, 94, 0.3);
  }
  70% {
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.25), 0 0 0 10px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.25), 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

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

@keyframes spin-loader {
  to {
    transform: rotate(360deg);
  }
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .badge-new-tag {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-title {
    font-size: 2.75rem;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .trust-badges-grid {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual {
    max-width: 460px;
    margin: 0 auto;
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-content {
    text-align: center;
  }
  .about-content .section-title, .about-content .section-subtitle {
    text-align: center;
  }
  .about-features-list li {
    text-align: left;
  }
  .about-visual-column {
    max-width: 500px;
    margin: 0 auto;
  }
  .location-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .location-details .section-title, .location-details .section-subtitle {
    text-align: center;
  }
  .contact-card-info {
    max-width: 450px;
    margin: 1.5rem auto;
  }
  .location-actions {
    justify-content: center;
  }
  .location-map-wrapper {
    height: 320px;
  }
  .review-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .nav-links-desktop {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .header {
    width: 95%;
  }
  .header.scrolled {
    width: 100%;
  }
  .nav-container {
    padding: 0.5rem 1.25rem;
  }
  .section-title {
    font-size: 1.85rem;
  }
  .hero-title {
    font-size: 2.15rem;
  }
  .trust-badges-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .about-stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .review-card {
    flex: 0 0 100%;
  }
  .reviews-summary-card {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .reviews-summary-card .section-title, .reviews-summary-card .section-subtitle {
    text-align: center;
  }
  .rating-badge {
    width: 100%;
  }
  .section-header-flex {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .section-header-flex .btn {
    justify-content: center;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .footer-desc {
    margin: 0 auto;
  }
  .footer-socials {
    justify-content: center;
  }
  .footer-links-group h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
  .booking-modal-card {
    padding: 1.5rem;
    border-radius: 20px;
  }
  .floating-actions-container {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  .floating-fab {
    width: 48px;
    height: 48px;
  }
  .floating-fab svg {
    width: 20px;
    height: 20px;
  }
}

/* Featured Projects Section Styling */
.projects-section {
  background-color: var(--color-bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.projects-carousel-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.projects-carousel-container {
  width: 100%;
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding: 0.5rem 0;
}
.projects-carousel-container::-webkit-scrollbar {
  display: none;
}

.project-slide {
  flex: 0 0 calc(33.333% - 1.333rem);
  scroll-snap-align: start;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-premium);
  position: relative;
  background-color: #f1f5f9;
  transition: all var(--transition-fast);
}
.project-slide:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-primary-border);
}

.project-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.project-slide:hover .project-slide-image {
  transform: scale(1.05);
}

/* Dark Glassmorphic Slide-Up Panel Overlay */
.project-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transform: translateY(calc(100% - 3.5rem)); /* Retracted state showing only title */
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 2;
}

.project-slide:hover .project-slide-overlay {
  transform: translateY(0); /* Reveal full overlay on hover */
}

.project-slide-overlay h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.project-slide:hover .project-slide-overlay h3 {
  white-space: normal;
  overflow: visible;
}

.project-slide-overlay p {
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
  margin: 0;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.project-slide:hover .project-slide-overlay p {
  opacity: 1;
}

@media (max-width: 1024px) {
  .project-slide {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .project-slide {
    flex: 0 0 100%;
    aspect-ratio: 4/3;
  }
}

