/* Display typeface for headings — pairs with Poppins body text */
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@600;700;800&display=swap");

@font-face {
  font-family: "MyCustomFont"; /* Give your font a name */
  src: url("../../fonts/3D\ Sports\ Bar.otf") format("opentype"),
    url("../../fonts/3D\ Sports\ Bar.otf") format("woff2"),
    url("../../fonts/3D\ Sports\ Bar.otf") format("woff"),
    url("../../fonts/3D\ Sports\ Bar.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* Improves loading performance */
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0066cc;
  --secondary-color: #00a8e8;
  --accent-color: #00d4ff;
  --dark-color: #0f172a;
  --light-color: #f8fafc;
  --text-color: #1e293b;
  --gray-color: #64748b;
  --success-color: #10b981;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 40px rgba(0, 102, 204, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.nav-brand img {
  height: 58px;
  width: auto;
}

.nav-brand .tagline {
  font-size: 0.75rem;
  color: var(--gray-color);
  font-weight: 300;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  margin: 3px 0;
  transition: var(--transition);
}

/* Dropdown Navigation */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 14px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.04);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  padding: 8px;
  margin-top: 10px;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  transition: all 0.25s ease;
  border-radius: 8px;
  border-left: none;
}

.dropdown-menu a:hover {
  background: rgba(0, 102, 204, 0.06);
  color: var(--primary-color);
  padding-left: 20px;
}

.dropdown-menu a.active {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.08) 0%, rgba(0, 168, 232, 0.05) 100%);
  color: var(--primary-color);
  font-weight: 600;
}

/* Mobile Dropdown */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f5f5f5;
    margin-top: 0;
    border-radius: 5px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    min-width: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
  }

  .nav-dropdown.active .dropdown-menu {
    max-height: 500px;
    margin-top: 10px;
    padding: 8px;
  }

  .dropdown-menu a {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  /* The toggle is display:flex on desktop, which left-aligns it in the
     stacked mobile menu — shrink-wrap and centre it like the other links. */
  .nav-dropdown {
    width: 100%;
    text-align: center;
  }

  .dropdown-toggle {
    display: inline-flex;
    justify-content: center;
    cursor: pointer;
  }
}

/* Hero Section with Slideshow */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Slideshow Styles */
.slideshow-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s ease-in-out, transform 8s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide.active {
  opacity: 1;
  transform: scale(1.1);
}

/* Default gradient backgrounds for slides */
.slide:nth-child(1) {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.slide:nth-child(2) {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.slide:nth-child(3) {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.slide:nth-child(4) {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.slide:nth-child(5) {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

/* Add your actual images here - they will fill the entire slide without repeating */
.slide[data-slide="1"] {
  background-image: url("../../images/tidy\ flow.jpg");
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.slide[data-slide="2"] {
  background-image: url("../../images/rubble.jpg");
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.slide[data-slide="3"] {
  background-image: url("../../images/high\ pressure.jpg");
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.slide[data-slide="4"] {
  background-image: url("../../images/bin.jpg");
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.slide[data-slide="5"] {
  background-image: url("../../images/surv.jpg");
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
.slide[data-slide="6"] {
  background-image: url("../../images/gutter.jpg");
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
.slide[data-slide="7"] {
  background-image: url("../../images/window\ cleaning.jpg");
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

/* Overlay for better text readability */
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    160deg,
    rgba(10, 15, 30, 0.75) 0%,
    rgba(0, 60, 130, 0.4) 40%,
    rgba(0, 102, 204, 0.3) 60%,
    rgba(10, 15, 30, 0.65) 100%
  );
  z-index: 1;
}

/* Slideshow dots navigation */
.slideshow-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: none;
}

.dot.active {
  background: white;
  width: 28px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
  background: linear-gradient(135deg, #ffffff 0%, #e0f0ff 40%, #ffffff 60%, #c0e0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 10px rgba(0, 80, 180, 0.3));
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.2s backwards;
  font-weight: 300;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-cta .btn-primary {
  animation: subtlePulse 3s ease-in-out 2s infinite;
}

@keyframes subtlePulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); }
  50% { box-shadow: 0 10px 40px rgba(255, 255, 255, 0.25), 0 0 20px rgba(255, 255, 255, 0.1); }
}

.btn {
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-block;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

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

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: white;
  color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: white;
  color: var(--primary-color);
  border-color: white;
  transform: translateY(-3px);
}

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

.btn-outline:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
}

.btn-block {
  width: 100%;
  text-align: center;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  animation: fadeInUp 1s ease 0.6s backwards;
}

.stat {
  text-align: center;
  transition: transform 0.3s ease;
}

.stat:hover {
  transform: scale(1.08);
}

.stat h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #fff, rgba(0, 212, 255, 0.9));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat p {
  opacity: 0.9;
  font-size: 0.9rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 4;
}

.scroll-indicator span {
  display: block;
  width: 30px;
  height: 50px;
  border: 2px solid white;
  border-radius: 25px;
  position: relative;
}

.scroll-indicator span::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 10px;
  background: white;
  border-radius: 3px;
  animation: scrollAnimation 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes scrollAnimation {
  0% {
    opacity: 1;
    top: 10px;
  }
  100% {
    opacity: 0;
    top: 30px;
  }
}

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

/* Section Headers */
section[id] {
  scroll-margin-top: 80px;
}

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

.section-label {
  display: inline-block;
  padding: 10px 28px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color),
    var(--accent-color)
  );
  color: white;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  box-shadow: 0 6px 25px rgba(0, 102, 204, 0.3), 0 0 0 4px rgba(0, 102, 204, 0.06);
  position: relative;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  background: linear-gradient(135deg, var(--dark-color) 0%, #1a3a5c 50%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
  margin: 1rem auto 0;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 102, 204, 0.2);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-color);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Featured Service - Tidy Flow */
.featured-service {
  padding: 120px 0 100px;
  background: linear-gradient(180deg, #e8f4fd 0%, #f0f7ff 30%, white 100%);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.featured-service::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.featured-service::after {
  content: '';
  position: absolute;
  top: 80px;
  left: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.featured-image {
  position: relative;
}

.featured-image::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 3px solid rgba(0, 102, 204, 0.15);
  border-radius: 28px;
  z-index: -1;
  pointer-events: none;
}

.featured-image::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.08), rgba(0, 212, 255, 0.06));
  border-radius: 28px;
  z-index: -1;
  pointer-events: none;
}

.image-placeholder {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border-radius: 24px;
  overflow: hidden;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 70px rgba(0, 102, 204, 0.25), 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.image-placeholder:hover {
  box-shadow: 0 40px 80px rgba(0, 102, 204, 0.3), 0 15px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 2rem;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
}

.featured-details h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

.featured-details > p {
  font-size: 1.1rem;
  color: var(--gray-color);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.feature-list {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.2rem 1.2rem 1.2rem 1.5rem;
  background: white;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(0, 102, 204, 0.06);
  border-left: 4px solid var(--primary-color);
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 35px rgba(0, 102, 204, 0.12);
  border-color: rgba(0, 102, 204, 0.12);
  border-left-color: var(--accent-color);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border-radius: 50%;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-item h4 {
  color: var(--dark-color);
  margin-bottom: 0.25rem;
}

.feature-item p {
  color: var(--gray-color);
  font-size: 0.9rem;
}

.cta-group {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Services Grid */
.services {
  padding: 100px 0;
  background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 30%, #ffffff 70%, #f0f7ff 100%);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.services::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 102, 204, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  border: 1px solid rgba(0, 102, 204, 0.06);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  z-index: 5;
}

/* Gallery */

.gallery-headers {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.gallery-headers h1 {
  font-family: "MyCustomFont", Arial, sans-serif;
  font-size: 90px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 102, 204, 0.18), 0 10px 20px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 102, 204, 0.15);
}

/* UPDATED SERVICE IMAGE STYLES WITH BACKGROUND IMAGES AND OVERLAYS */
.service-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Background images for each service */
.service-card[data-service="gutter"] .service-image {
  background-image: url("../../images/gutter.jpg");
}

.service-card[data-service="serv"] .service-image {
  background-image: url("../../images/surv.jpg");
}

.service-card[data-service="watt"] .service-image {
  background-image: url("../../images/window\ cleaning.jpg");
}

.service-card[data-service="rubble"] .service-image {
  background-image: url("../../images/rubble.jpg");
}

.service-card[data-service="bin"] .service-image {
  background-image: url("../../images/bin.jpg");
}

.service-card[data-service="h20"] .service-image {
  background-image: url("../../images/high\ pressure.jpg");
}

/* Fallback gradient backgrounds if images don't load */
.service-card[data-service="gutter"] .service-image {
  background-image: url("../../images/gutter.jpg"),
    linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.service-card[data-service="serv"] .service-image {
  background-image: url("../../images/surv.jpg"),
    linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-card[data-service="watt"] .service-image {
  background-image: url("../../images/window\ cleaning.jpg"),
    linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.service-card[data-service="rubble"] .service-image {
  background-image: url("../../images/rubble.jpg"),
    linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.service-card[data-service="bin"] .service-image {
  background-image: url("../../images/bin.jpg"),
    linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.service-card[data-service="h20"] .service-image {
  background-image: url("../../images/high\ pressure.jpg"),
    linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Dark overlay for better logo visibility */
.service-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  transition: var(--transition);
}

/* Lighten overlay on hover for more dramatic effect */
.service-card:hover .service-image::before {
  background: rgba(0, 0, 0, 0.2);
}

/* Logo image positioning - Keep original logos in front */
.service-image img {
  width: 200px;
  height: auto;
  object-fit: cover;
  opacity: 0.95;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
  transition: var(--transition);
}

/* Enhanced logo visibility on hover */
.service-card:hover .service-image img {
  opacity: 1;
  transform: scale(1.05);
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.4));
}

.service-overlay {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 14px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.35);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card:hover .service-overlay {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.45);
}

.service-number {
  font-weight: 700;
  color: white;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.service-content {
  padding: 2rem;
}

.service-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-content h4 {
  color: var(--dark-color);
  font-size: 1.1rem;
}

.service-content p {
  color: var(--gray-color);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.service-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 0.5rem;
  color: var(--gray-color);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.service-features li:hover {
  color: var(--text-color);
  padding-left: 30px;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
  transition: transform 0.3s ease;
}

.service-features li:hover::before {
  transform: scale(1.3);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-link:hover {
  gap: 1rem;
  color: var(--secondary-color);
}

/* About Section */
.about {
  padding: 100px 0;
  background: linear-gradient(180deg, white 0%, #f0f4f8 40%, #e2ecf5 100%);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(0, 102, 204, 0.15) 50%, transparent 90%);
}

.about::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.about-text .section-label {
  margin-bottom: 1rem;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text > p {
  font-size: 1.1rem;
  color: var(--gray-color);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-feature {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 102, 204, 0.06);
  border: 1px solid rgba(0, 102, 204, 0.05);
  transition: all 0.3s ease;
}

.about-feature:hover {
  box-shadow: 0 10px 35px rgba(0, 102, 204, 0.1);
  transform: translateY(-3px);
}

.feature-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  color: white;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
  transition: all 0.3s ease;
}

.about-feature:hover .feature-number {
  transform: scale(1.1) rotate(5deg);
}

.about-feature h4 {
  color: var(--dark-color);
  margin-bottom: 0.25rem;
}

.about-feature p {
  color: var(--gray-color);
  font-size: 0.9rem;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: 30px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 1.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 102, 204, 0.35);
  text-align: center;
  border: none;
  transition: all 0.3s ease;
  color: white;
}

.experience-badge:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 102, 204, 0.4);
}

.badge-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  color: white;
}

.badge-text {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a1628 0%, #0f2744 30%, #0d1f3c 60%, #0a1628 100%);
  color: white;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.12) 0%, rgba(0, 168, 232, 0.05) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatBg 15s ease-in-out infinite alternate;
}

.contact::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, rgba(0, 102, 204, 0.04) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatBg 12s ease-in-out 3s infinite alternate;
}

@keyframes floatBg {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(30px, -20px) scale(1.1); }
}

.contact .section-label {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-color)
  );
}

.contact .section-header h2 {
  background: linear-gradient(135deg, #ffffff, #c0e0ff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

/* QR code share block */
.qr-share {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2rem;
  background: white;
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  max-width: 420px;
}

.qr-share img {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 8px;
}

.qr-share-text h4 {
  margin: 0 0 0.4rem;
  color: var(--dark-color);
  font-size: 1.1rem;
  font-weight: 600;
}

.qr-share-text p {
  margin: 0;
  color: var(--gray-color);
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .qr-share {
    flex-direction: column;
    text-align: center;
  }
}

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

.company-details {
  margin-bottom: 2rem;
}

.company-details h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff, var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
}

.company-details p {
  opacity: 0.8;
  line-height: 1.6;
}

.contact-cards {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(0, 102, 204, 0.06) 100%);
  padding: 1.8rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-color), var(--primary-color));
  border-radius: 4px 0 0 4px;
}

.contact-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 102, 204, 0.1) 100%);
  transform: translateX(10px);
  border-color: rgba(0, 212, 255, 0.25);
  box-shadow: 0 12px 40px rgba(0, 102, 204, 0.15);
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.contact-card h4 {
  margin-bottom: 0.5rem;
  color: white;
}

.contact-card a {
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition);
}

.contact-card a:hover {
  color: white;
}

.contact-card p {
  opacity: 0.8;
}

.quick-contact h4 {
  margin-bottom: 1rem;
  color: var(--accent-color);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.quick-contact .btn {
  margin-bottom: 1rem;
}

.quick-contact .btn-primary {
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  color: var(--dark-color);
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.quick-contact .btn-primary:hover {
  box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
}

.quick-contact .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.quick-contact .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color), var(--accent-color));
  background-size: 200% 100%;
  animation: gradientSlide 4s ease infinite;
}

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

.contact-form h3 {
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.contact-form .btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.contact-form .btn-primary:hover {
  box-shadow: 0 12px 35px rgba(0, 102, 204, 0.4);
  transform: translateY(-3px);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.08), 0 4px 20px rgba(0, 102, 204, 0.06);
  background: white;
  transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group textarea {
  resize: vertical;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #080d19 0%, #0d1526 50%, #0a1120 100%);
  color: white;
  padding: 4rem 0 1.5rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 5%, var(--primary-color) 30%, var(--accent-color) 50%, var(--secondary-color) 70%, transparent 95%);
}

.footer .container {
  position: relative;
  z-index: 1;
}

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

.footer-brand h3 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #fff, var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  opacity: 0.7;
}

.footer h4 {
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.footer-services ul {
  list-style: none;
}

.footer-services a {
  color: white;
  text-decoration: none;
  opacity: 0.6;
  transition: all 0.3s ease;
  display: block;
  padding: 0.35rem 0;
  position: relative;
  padding-left: 0;
}

.footer-services a:hover {
  opacity: 1;
  padding-left: 8px;
  color: var(--accent-color);
}

.footer-contact p {
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-bottom p::before {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--accent-color),
    transparent
  );
  margin: 0 auto 1rem;
}

.footer-bottom a {
  color: #00d4ff;
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom a:hover {
  color: white;
  text-decoration: underline;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 102, 204, 0.4);
  border-radius: 16px;
}

.photo-carousel-section {
  padding: 70px 20px;
  background: linear-gradient(180deg, white 0%, #f0f7ff 50%, white 100%);
  position: relative;
  overflow: hidden;
}

.photo-carousel-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(0, 102, 204, 0.1) 50%, transparent 90%);
}

.photo-carousel-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(0, 102, 204, 0.1) 50%, transparent 90%);
}

.photo-carousel-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.photo-carousel-slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.photo-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  cursor: pointer;
}

.photo-carousel-slide.photo-carousel-active {
  opacity: 1;
}

.photo-carousel-slide img,
.photo-carousel-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Navigation buttons */
.photo-carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.photo-carousel-nav-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.photo-carousel-prev-btn {
  left: 20px;
}

.photo-carousel-next-btn {
  right: 20px;
}

/* Dots indicator */
.photo-carousel-dots-container {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.photo-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: none;
}

.photo-carousel-dot.photo-carousel-active {
  background-color: white;
  width: 28px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.photo-carousel-dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

/* Modal styles */
.photo-carousel-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: photo-carousel-fadeIn 0.3s ease;
}

.photo-carousel-modal-content {
  position: relative;
  margin: auto;
  display: block;
  width: 90%;
  max-width: 1200px;
  max-height: 90%;
  top: 50%;
  transform: translateY(-50%);
}

.photo-carousel-modal-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.photo-carousel-close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.photo-carousel-close-btn:hover {
  color: #ccc;
}

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

/* Responsive design */
@media (max-width: 768px) {
  .photo-carousel-container {
    margin: 0 10px;
  }

  .photo-carousel-slider {
    height: 300px;
  }

  .photo-carousel-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .photo-carousel-prev-btn {
    left: 10px;
  }

  .photo-carousel-next-btn {
    right: 10px;
  }

  .photo-carousel-dots-container {
    bottom: 15px;
  }

  .photo-carousel-dot {
    width: 10px;
    height: 10px;
  }

  .photo-carousel-modal-content {
    width: 95%;
    padding: 0 10px;
  }

  .photo-carousel-close-btn {
    top: -35px;
    font-size: 30px;
  }
}

/* Scroll-triggered Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.8, 0.25, 1),
              transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.reveal-left {
  transform: translateX(-40px);
}

.reveal.reveal-right {
  transform: translateX(40px);
}

.reveal.reveal-scale {
  transform: scale(0.92);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Staggered children animation */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
              transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.stagger-children.revealed > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.5s; }

.stagger-children.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
    /* When the Services dropdown expands, the menu can grow taller than the
       screen; scroll inside the fixed panel instead of hiding the rest. */
    max-height: calc(100vh - 70px);
    max-height: calc(100dvh - 70px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

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

  .hamburger {
    display: flex;
  }

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

  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

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

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

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    gap: 2rem;
  }

  .featured-content,
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 0.85rem;
    padding: 0 1rem;
  }

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

  .slideshow-dots {
    bottom: 60px;
  }

  .scroll-indicator {
    bottom: 110px;
  }

  /* Responsive service image logo sizing */
  .service-image img {
    width: 150px;
  }
}

/* Desktop version (default) */
.gallery-headers h1 {
  font-family: "MyCustomFont", Arial, sans-serif;
  font-size: 90px;
  line-height: 1.1;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin: 0;
  padding: 0;
  text-align: center;
  word-wrap: break-word;
  hyphens: auto;
}

/* Tablet and small desktop (1024px and below) */
@media screen and (max-width: 1024px) {
  .gallery-headers h1 {
    font-size: 70px;
    line-height: 1.1;
  }
}

/* Large mobile devices (768px and below) */
@media screen and (max-width: 768px) {
  .gallery-headers h1 {
    font-size: 50px;
    line-height: 1.1;
    padding: 0 10px;
  }
}

/* Medium mobile devices (480px and below) */
@media screen and (max-width: 480px) {
  .gallery-headers h1 {
    font-size: 36px;
    line-height: 1.2;
    padding: 0 15px;
  }
}

/* Small mobile devices (360px and below) */
@media screen and (max-width: 360px) {
  .gallery-headers h1 {
    font-size: 28px;
    line-height: 1.2;
    padding: 0 10px;
  }
}

/* Extra small devices (320px and below) */
@media screen and (max-width: 320px) {
  .gallery-headers h1 {
    font-size: 24px;
    line-height: 1.3;
    padding: 0 5px;
  }
}

/* Alternative: Using CSS clamp() for fluid typography (modern approach) */
.gallery-headers h1.fluid-text {
  font-family: "MyCustomFont", Arial, sans-serif;
  font-size: clamp(24px, 8vw, 90px); /* Min 24px, 8% viewport width, Max 90px */
  line-height: clamp(1.2, 1.1, 1.1);
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin: 0;
  padding: 0 clamp(5px, 2vw, 15px);
  text-align: center;
  word-wrap: break-word;
  hyphens: auto;
}

/* Portrait orientation specific styles */
@media screen and (orientation: portrait) and (max-width: 768px) {
  .gallery-headers h1 {
    font-size: 42px;
    margin-bottom: 20px;
  }
}

/* Landscape orientation on mobile */
@media screen and (orientation: landscape) and (max-height: 500px) {
  .gallery-headers h1 {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 10px;
  }
}


/* ==========================================================================
   FX LAYER — premium motion & polish (paired with fx.js)
   ========================================================================== */

/* --- Hero title: seamless gradient sheen sweeping across the text --- */
.hero-title {
  background: linear-gradient(110deg, #ffffff 0%, #cfe9ff 25%, #ffffff 50%, #9fd8ff 75%, #ffffff 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1s ease, fxSheen 9s linear 1.6s infinite;
}

@keyframes fxSheen {
  0%   { background-position: 0% center; }
  100% { background-position: 250% center; }
}

/* --- Section label: periodic shine sweep --- */
.section-label {
  overflow: hidden;
}

.section-label::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  animation: fxLabelShine 5.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes fxLabelShine {
  0%, 72% { left: -80%; }
  100%    { left: 135%; }
}

/* --- Ken Burns drift on active gallery media (images only) --- */
.photo-carousel-slide,
.service-gallery-slide {
  overflow: hidden;
}

.photo-carousel-slide.photo-carousel-active img,
.service-gallery-slide.active img {
  animation: fxKenBurns 11s ease-in-out infinite alternate;
}

@keyframes fxKenBurns {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.07) translate(-1.2%, -0.8%); }
}

/* --- Ambient drift for decorative section orbs --- */
.featured-service::before { animation: floatBg 14s ease-in-out infinite alternate; }
.featured-service::after  { animation: floatBg 11s ease-in-out 2s infinite alternate-reverse; }
.services::before         { animation: floatBg 16s ease-in-out infinite alternate; }
.services::after          { animation: floatBg 13s ease-in-out 1.5s infinite alternate-reverse; }
.about::after             { animation: floatBg 15s ease-in-out 1s infinite alternate; }

/* --- Card hover: cyan glow ring adds depth under the 3D tilt --- */
.service-card:hover,
.benefit-card:hover,
.package-card:hover,
.product-card:hover,
.contact-card:hover,
.addon-card:hover,
.bundle-card:hover {
  box-shadow: 0 24px 50px rgba(2, 18, 51, 0.16),
              0 0 0 1px rgba(0, 168, 232, 0.25),
              0 0 34px rgba(0, 168, 232, 0.16);
}

/* --- Form fields: focus glow --- */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 4px rgba(0, 168, 232, 0.14);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

/* --- Back-to-top: sonar pulse while visible --- */
.back-to-top.visible {
  animation: fxPulseRing 2.6s ease-out infinite;
}

@keyframes fxPulseRing {
  0%   { box-shadow: 0 6px 20px rgba(0, 102, 204, 0.35), 0 0 0 0 rgba(0, 168, 232, 0.35); }
  70%  { box-shadow: 0 6px 20px rgba(0, 102, 204, 0.35), 0 0 0 14px rgba(0, 168, 232, 0); }
  100% { box-shadow: 0 6px 20px rgba(0, 102, 204, 0.35), 0 0 0 0 rgba(0, 168, 232, 0); }
}

/* --- Hero stat numbers: soft cyan glow --- */
.stat h3 {
  filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.35));
}

/* --- Text selection + scrollbar polish --- */
::selection {
  background: rgba(0, 168, 232, 0.85);
  color: #fff;
}

html {
  scrollbar-color: #0080d0 #eef2f7;
}

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

::-webkit-scrollbar-track {
  background: #eef2f7;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #0066cc, #00a8e8);
  border-radius: 8px;
  border: 2px solid #eef2f7;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #0074e8, #00c4ff);
}

/* --- Respect reduced-motion: freeze the FX layer --- */
@media (prefers-reduced-motion: reduce) {
  .hero-title,
  .section-label::after,
  .photo-carousel-slide.photo-carousel-active img,
  .service-gallery-slide.active img,
  .featured-service::before,
  .featured-service::after,
  .services::before,
  .services::after,
  .about::after,
  .back-to-top.visible {
    animation: none !important;
  }
}


/* ==========================================================================
   THEME V3 — WORLD-CLASS VISUAL LAYER
   Same content, elevated look: display typography, floating pill navbar,
   refined chips, unified card language, richer depth. Overrides earlier
   rules by cascade order; page-specific sheets get their own appendix.
   ========================================================================== */

:root {
  --font-display: "Sora", "Poppins", sans-serif;
  --radius-card: 20px;
  --border-soft: 1px solid rgba(13, 38, 76, 0.07);
  --shadow-card: 0 2px 6px rgba(13, 38, 76, 0.04), 0 14px 40px rgba(13, 38, 76, 0.07);
  --shadow-card-hover: 0 24px 50px rgba(2, 18, 51, 0.14), 0 0 0 1px rgba(0, 168, 232, 0.22), 0 0 34px rgba(0, 168, 232, 0.14);
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4,
.hero-title,
.section-header h2,
.stat h3 {
  font-family: var(--font-display);
}

h1, h2 {
  letter-spacing: -0.02em;
}

/* --- Floating pill navbar (large screens; tablet range uses hamburger) --- */
@media (min-width: 1025px) {
  .navbar {
    top: 14px;
    background: transparent;
    box-shadow: none;
    border-bottom: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .navbar .container {
    max-width: 1150px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    box-shadow: 0 12px 40px rgba(2, 18, 51, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    padding: 0.5rem 1.8rem;
    transition: background 0.35s ease, box-shadow 0.35s ease;
  }

  .navbar.scrolled {
    background: transparent;
    box-shadow: none;
  }

  .navbar.scrolled .container {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 44px rgba(2, 18, 51, 0.14);
  }

  .nav-brand img {
    height: 60px;
    width: auto;
  }

  .nav-menu {
    gap: 1.7rem;
  }

  .nav-link {
    font-size: 0.93rem;
  }
}

/* --- Hero: cinematic entrance + display scale --- */
.hero-title {
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.06;
  animation: fxHeroIn 1.15s cubic-bezier(0.16, 1, 0.3, 1) both,
             fxSheen 9s linear 1.6s infinite;
}

@keyframes fxHeroIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
    filter: blur(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  letter-spacing: 0.04em;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s backwards;
}

/* --- Button system: gradient primary with cyan glow --- */
.btn {
  padding: 15px 34px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, #0074e8 0%, #00a8e8 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 116, 232, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 116, 232, 0.45), 0 0 26px rgba(0, 212, 255, 0.25),
              inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: #fff;
}

.contact-form .btn-primary,
.quick-contact .btn-primary {
  background: linear-gradient(135deg, #0074e8 0%, #00a8e8 100%);
}

.hero-cta .btn-primary {
  animation: fxCtaPulse 3s ease-in-out 2s infinite;
}

@keyframes fxCtaPulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(0, 116, 232, 0.35); }
  50% { box-shadow: 0 10px 34px rgba(0, 168, 232, 0.55), 0 0 30px rgba(0, 212, 255, 0.3); }
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-outline {
  border-width: 1.5px;
}

/* --- Section headers: refined eyebrow chip + display h2 --- */
.section-label {
  background: rgba(0, 102, 204, 0.06);
  border: 1px solid rgba(0, 102, 204, 0.22);
  color: var(--primary-color);
  box-shadow: none;
  padding: 9px 22px;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.contact .section-label,
.booking-section .section-label {
  background: rgba(0, 212, 255, 0.07);
  border-color: rgba(0, 212, 255, 0.3);
  color: var(--accent-color);
}

.booking-section .section-label {
  background: rgba(0, 102, 204, 0.06);
  border-color: rgba(0, 102, 204, 0.22);
  color: var(--primary-color);
}

.section-header h2 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.12;
}

.section-header h2::after {
  width: 44px;
  height: 3px;
  margin: 1.1rem auto 0;
  opacity: 0.85;
}

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

/* --- Unified card language --- */
.service-card,
.contact-card {
  border-radius: var(--radius-card);
}

.feature-item {
  border-radius: 16px;
}

.qr-share {
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.97);
}

/* --- Featured section: tighter frame on the image --- */
.featured-image::before {
  top: -10px;
  left: -10px;
  right: 14px;
  bottom: 14px;
  border-width: 1.5px;
  border-color: rgba(0, 102, 204, 0.22);
}

.featured-details h3 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  letter-spacing: -0.02em;
}

/* --- Gallery: framed showcase + display heading --- */
.gallery-headers h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  letter-spacing: -0.025em;
}

.photo-carousel-container {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(13, 38, 76, 0.06), 0 30px 70px rgba(13, 38, 76, 0.14);
  border: 1px solid rgba(13, 38, 76, 0.08);
}

.photo-carousel-nav-btn {
  background: rgba(10, 22, 40, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}

.photo-carousel-nav-btn:hover {
  background: rgba(0, 116, 232, 0.8);
  border-color: rgba(255, 255, 255, 0.45);
}

/* --- About: framed image --- */
.about-image {
  border-radius: 24px;
}

/* --- Contact / forms: sharper fields --- */
.contact-form {
  border-radius: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
  border-width: 1.5px;
  border-radius: 12px;
}

/* --- Footer: more air, refined links --- */
.footer {
  padding: 5rem 0 1.8rem;
}

.footer-brand h3 {
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}

.footer h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(0, 212, 255, 0.85);
}

/* --- Scroll indicator: slimmer --- */
.scroll-indicator span {
  width: 26px;
  height: 44px;
  border-width: 1.5px;
  border-color: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
}

/* --- Slideshow dots: hairline capsule --- */
.slideshow-dots {
  padding: 8px 14px;
  background: rgba(10, 22, 40, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

/* --- Stat numbers: display face --- */
.stat h3 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .hero-title,
  .hero-cta .btn-primary {
    animation: none !important;
  }
}


/* ==========================================================================
   THEME V3.1 — homepage restructure components
   ========================================================================== */

/* --- Hero trust badges --- */
.hero-badges {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.55s backwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 24px rgba(2, 18, 51, 0.18);
  transition: all 0.35s ease;
}

.hero-badge:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

.hero-badge strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent-color);
}

/* --- Kinetic services marquee --- */
.fx-marquee {
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, #0a1628 0%, #0f2744 50%, #0a1628 100%);
  border-top: 1px solid rgba(0, 168, 232, 0.18);
  border-bottom: 1px solid rgba(0, 168, 232, 0.18);
  padding: 17px 0;
  overflow: hidden;
}

.fx-marquee-track {
  display: flex;
  width: max-content;
  animation: fxMarquee 30s linear infinite;
  will-change: transform;
}

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

.fx-marquee-group {
  display: flex;
  gap: 3.2rem;
  padding-right: 3.2rem;
}

.fx-marquee-group span {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}

.fx-marquee-group span::after {
  content: "\25C6";
  margin-left: 3.2rem;
  color: var(--accent-color);
  font-size: 0.55em;
  vertical-align: middle;
  opacity: 0.8;
}

@keyframes fxMarquee {
  to { transform: translateX(-50%); }
}

/* --- Navbar Book Now CTA --- */
.nav-link.nav-cta {
  background: linear-gradient(135deg, #0074e8 0%, #00a8e8 100%);
  color: #fff;
  padding: 9px 24px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0, 116, 232, 0.35);
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.nav-link.nav-cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 116, 232, 0.45), 0 0 18px rgba(0, 212, 255, 0.25);
}

@media (max-width: 768px) {
  .nav-link.nav-cta {
    display: inline-block;
    margin-top: 0.4rem;
  }
}

/* --- Service card backgrounds: Tidy Haul photo (was missing) + shop card --- */
.service-card[data-service="haul"] .service-image {
  background-image: url("../../images/rubble.jpg"),
    linear-gradient(135deg, #0e2038 0%, #0066cc 100%);
}

.service-card[data-service="flow-products"] .service-image {
  background-image: url("../../images/tidy\ flow.jpg"),
    linear-gradient(135deg, #0e2038 0%, #0066cc 100%);
}

.service-card[data-service="flow-products"] .service-image img {
  width: 170px;
  background: rgba(255, 255, 255, 0.92);
  padding: 12px 18px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(2, 18, 51, 0.35);
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .fx-marquee-track,
  .hero-badges {
    animation: none !important;
  }
}


/* ==========================================================================
   THEME V3.2 — tablet-range navigation (769px–1024px uses the hamburger
   menu; the full pill nav needs more room and starts at 1025px)
   ========================================================================== */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
    /* Expanding the Services dropdown pushes items down; keep them reachable
       by scrolling inside the fixed panel. */
    max-height: calc(100vh - 70px);
    max-height: calc(100dvh - 70px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

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

  .hamburger {
    display: flex;
  }

  .nav-link.nav-cta {
    display: inline-block;
    margin-top: 0.4rem;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f5f5f5;
    margin-top: 0;
    border-radius: 5px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    min-width: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
  }

  .nav-dropdown.active .dropdown-menu {
    max-height: 500px;
    margin-top: 10px;
    padding: 8px;
  }

  .nav-dropdown {
    width: 100%;
    text-align: center;
  }

  .dropdown-toggle {
    display: inline-flex;
    justify-content: center;
    cursor: pointer;
  }
}

/* ---- Footer social links (Facebook / LinkedIn / TikTok) ---- */
.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.6rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background 0.25s ease, transform 0.25s ease;
}
.footer-social a:hover {
  background: var(--primary-color, #0066cc);
  transform: translateY(-2px);
}
.footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
