/* Google Fonts: Outfit */
:root {
  --primary: #0f2c59;
  --secondary: #f05a28; /* ORANGE from Logo */
  --light: #f9fafb;
  --dark: #1f2937;
  --gray: #6b7280;
  --white: #ffffff;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.3);
  --shadow-sm:
    0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md:
    0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 20px rgba(240, 90, 40, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}

body {
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

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

/* Utilities */
.py-large {
  padding: 100px 0;
}
.py-medium {
  padding: 60px 0;
}
.mt-3 {
  margin-top: 1rem;
}
.mt-4 {
  margin-top: 1.5rem;
}
.mt-5 {
  margin-top: 3rem;
}
.p-4 {
  padding: 2rem;
}
.text-center {
  text-align: center;
}
.text-white {
  color: var(--white);
}
.bg-light {
  background-color: var(--light);
}

.rounded-shadow {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

/* Stunning Glassmorphism / Glossy Effect */
.glossy-effect {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.glossy-effect:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  background: rgba(255, 255, 255, 0.9);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}
.align-center {
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary) 0%, #d84515 100%);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(240, 90, 40, 0.4);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary) 0%, #0a1f40 100%);
  z-index: -1;
  transition: opacity 0.4s ease;
  opacity: 0;
  border-radius: 50px;
}

.btn:hover::before {
  opacity: 1;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(15, 44, 89, 0.4);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}
.btn-outline::before {
  background: var(--primary);
}
.btn-outline:hover {
  border-color: transparent;
}
.btn-full {
  width: 100%;
  text-align: center;
}

/* Section Titles */
.section-title {
  margin-bottom: 50px;
  position: relative;
}
.section-title h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-top: 10px;
  line-height: 1.2;
}
.sub-title {
  color: var(--secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.95rem;
  display: inline-block;
  padding: 5px 15px;
  background: rgba(240, 90, 40, 0.1);
  border-radius: 50px;
}

/* Topbar */
.topbar {
  background: linear-gradient(90deg, var(--primary) 0%, #1a4282 100%);
  color: var(--white);
  padding: 12px 0;
  font-size: 0.95rem;
  font-weight: 500;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topinfo a {
  margin-right: 25px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topinfo a:hover {
  color: #ffd1b3;
}
.topinfo i,
.topaddress i {
  color: var(--secondary);
}

/* Stunning Marquee */
.marquee-container {
  background: linear-gradient(90deg, #f05a28 0%, #ff7b54 50%, #f05a28 100%);
  color: var(--white);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 1001; /* Ensure it stays above hero but below sticky header if header becomes sticky */
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
.marquee-content {
  display: inline-block;
  animation: marquee-scroll 35s linear infinite;
  will-change: transform;
}
.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}
.marquee-content span {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 600;
  margin-right: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.marquee-content span i {
  margin-right: 8px;
  color: #ffe6d5;
  font-size: 1.2rem;
  vertical-align: middle;
}
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Header & Navigation */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  height: 65px;
  transition: var(--transition);
}
.logo:hover img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
}
.nav-links li {
  margin-left: 30px;
  position: relative;
}
.nav-links a {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.05rem;
  transition: var(--transition);
  padding: 10px 0;
}
.nav-links a:hover {
  color: var(--secondary);
}

/* Dropdown styling */
.dropdown-menu {
  position: absolute;
  top: 150%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  min-width: 300px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 100;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  max-height: 400px;
  overflow-y: auto;
}
.dropdown-menu::-webkit-scrollbar {
  width: 6px;
}
.dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 10px;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu li {
  margin: 0;
}
.dropdown-menu a {
  padding: 10px 25px;
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  border-left: 3px solid transparent;
}
.dropdown-menu a:hover {
  background: rgba(240, 90, 40, 0.05);
  color: var(--secondary);
  border-left-color: var(--secondary);
  padding-left: 30px;
}

.mobile-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--primary);
  transition: var(--transition);
}

/* Hero Slider - Aspect Ratio Fix */
.hero {
  position: relative;
  width: 100%;
}

.hero-slider {
  width: 100%;
  position: relative;
  aspect-ratio: 16 / 9; /* Desktop setup */
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  visibility: hidden;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05); /* Subtle zoom effect start */
  transition: transform 6s ease;
}

.slide.active img {
  transform: scale(1); /* End zoom effect */
}

/* Beautiful Overlay */
.slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    100deg,
    rgba(15, 44, 89, 0.95) 0%,
    rgba(15, 44, 89, 0.6) 40%,
    transparent 100%
  );
}

.slide-content {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  left: 8%;
  max-width: 650px;
  color: var(--white);
  opacity: 0;
  transition: all 0.8s ease 0.4s;
  margin-top: 40px; /* start lower for animation */
}

.slide.active .slide-content {
  opacity: 1;
  margin-top: 0;
}

.slide-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.slide-content h1 span {
  color: var(--secondary);
}

.slide-content p {
  font-size: 1.3rem;
  margin-bottom: 35px;
  font-weight: 300;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  opacity: 0.9;
}

/* Beautiful Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 40px;
  right: 5%;
  z-index: 10;
  display: flex;
  gap: 15px;
}
.slider-controls button {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.slider-controls button:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: scale(1.1);
}

/* Indicator dots */
.slider-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}
.indicator.active {
  background: var(--secondary);
  width: 30px;
  border-radius: 10px;
}

/* Quick Contact Glass Form */
.quick-contact {
  margin-top: -10px;
  position: relative;
  z-index: 20;
}
.qc-wrapper {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 30px 40px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.qc-wrapper h3 {
  color: var(--primary);
  font-size: 1.6rem;
  font-weight: 800;
  white-space: nowrap;
}
.qc-wrapper form {
  display: flex;
  gap: 15px;
  flex-grow: 1;
}
.qc-wrapper input {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  outline: none;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.9);
}
.qc-wrapper input:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(240, 90, 40, 0.1);
  background: var(--white);
}

/* Fallback Gradients for Images during dev */
.fallback-gradient-1 {
  background: linear-gradient(45deg, #0f2c59, #3498db);
}
.fallback-gradient-2 {
  background: linear-gradient(45deg, #1abc9c, #16a085);
}
.fallback-gradient-3 {
  background: linear-gradient(45deg, #f05a28, #e74c3c);
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.feature-card {
  background: var(--white);
  padding: 40px 30px;
  text-align: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--secondary);
  transition: var(--transition);
}
.feature-card:hover::before {
  height: 100%;
  z-index: -1;
  opacity: 0.05;
}

.feature-card i {
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--secondary), #d84515);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
  display: inline-block;
}
.feature-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 700;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.card-img {
  height: 280px;
  overflow: hidden;
  position: relative;
  background: #e2e8f0; /* Fallback */
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-card:hover .card-img img {
  transform: scale(1.15);
}
.card-content {
  padding: 30px;
  position: relative;
  background: var(--white);
}
.card-content h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: 800;
}
.card-content p {
  color: var(--gray);
  margin-bottom: 25px;
  font-size: 1rem;
}
.read-more {
  color: var(--secondary);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.read-more i {
  transition: transform 0.3s;
}
.read-more:hover i {
  transform: translateX(8px);
}

/* Stats */
.success-story {
  padding: 120px 0;
  position: relative;
  background-color: var(--primary); /* Fallback */
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.stat-item {
  text-align: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}
.stat-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}
.stat-count {
  display: block;
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.stat-text {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.review-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  position: relative;
}
.review-card::after {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 3rem;
  color: rgba(240, 90, 40, 0.1);
}
.stars {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.review-card p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 25px;
  line-height: 1.8;
}
.reviewer {
  font-weight: 800;
  color: var(--primary);
  font-size: 1.1rem;
}

/* FAQ */
.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #eee;
  box-shadow: var(--shadow-sm);
}
.faq-btn {
  width: 100%;
  text-align: left;
  padding: 22px 30px;
  background: var(--white);
  border: none;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.faq-btn i {
  color: var(--secondary);
  transition: transform 0.3s ease;
}
.faq-btn.active {
  color: var(--secondary);
}
.faq-btn.active i {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--white);
}
.faq-content p {
  padding: 0 30px 25px;
  color: var(--gray);
  font-size: 1.05rem;
}

/* Footer */
.footer {
  background: var(--primary);
  color: var(--white);
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--secondary), #f97316);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-logo {
  height: 80px;
  margin-bottom: 25px;
  background: var(--white);
  padding: 15px;
  border-radius: 12px;
}
.footer-col p {
  color: #cbd5e1;
  margin-bottom: 25px;
  font-size: 1.05rem;
}
.social-links a {
  display: inline-flex;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 12px;
  font-size: 1.2rem;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--secondary);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(240, 90, 40, 0.4);
}
.footer-col h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}
.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}
.footer-col ul li {
  margin-bottom: 15px;
}
.footer-col ul a {
  color: #cbd5e1;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-col ul a i {
  font-size: 0.8rem;
  color: var(--secondary);
}
.footer-col ul a:hover {
  color: var(--white);
  padding-left: 8px;
}
.contact-info li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: #cbd5e1;
  font-size: 1.05rem;
}
.contact-info i {
  color: var(--secondary);
  font-size: 1.4rem;
  margin-top: 3px;
}
.footer-bottom {
  background: #0a1f40;
  padding: 25px 0;
  text-align: center;
  color: #cbd5e1;
  font-weight: 500;
}
.footer-bottom a {
  color: var(--secondary);
  font-weight: 700;
}

/* Page Headers */
.page-header {
  background:
    linear-gradient(rgba(15, 44, 89, 0.85), rgba(15, 44, 89, 0.85)),
    url("../assets/images/service_anti-bird-nets.webp") center/cover;
  background-color: var(--primary); /* fallback */
  padding: 120px 0;
  text-align: center;
  color: var(--white);
}
.page-header h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 15px;
}

/* Check list */
.check-list li {
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-weight: 600;
  font-size: 1.1rem;
}
.check-list i {
  color: var(--secondary);
  font-size: 1.4rem;
  margin-top: 3px;
}

/* Contact Page */
.contact-info-boxes {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.c-box {
  background: var(--white);
  padding: 35px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 25px;
}
.c-box i {
  font-size: 2.5rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--secondary), #d84515);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(240, 90, 40, 0.3);
}
.c-box h3 {
  color: var(--primary);
  margin-bottom: 5px;
  font-size: 1.4rem;
}
.c-box p {
  font-size: 1.1rem;
  color: var(--gray);
  font-weight: 500;
}

.form-group {
  margin-bottom: 25px;
}
.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--primary);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1.05rem;
  outline: none;
  transition: var(--transition);
  background: #f8fafc;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(240, 90, 40, 0.1);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
  background: #e2e8f0;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .services-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row {
    flex-direction: column;
    gap: 40px;
  }

  .slide-content h1 {
    font-size: 3rem;
  }
  .qc-wrapper {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .qc-wrapper form {
    flex-direction: column;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-slider {
    aspect-ratio: 16 / 12;
  }
}

@media (max-width: 768px) {
  /* Mobile slider 1:1 Aspect Ratio logic */
  .hero-slider {
    aspect-ratio: 1 / 1 !important;
    height: auto;
  }
  .slide-content {
    left: 5%;
    right: 5%;
    text-align: center;
    max-width: 100%;
  }
  .slide-content h1 {
    font-size: 2.2rem;
  }
  .slide-content p {
    font-size: 1.1rem;
  }
  .slider-controls {
    right: 50%;
    transform: translateX(50%);
    bottom: 20px;
  }
  .slider-indicators {
    display: none;
  } /* Hide indicators on mobile for space */

  .topaddress {
    display: none;
  }
  .topinfo {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
  }
  .topinfo a {
    margin: 0;
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: none;
    border-top: 1px solid #eee;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  .nav.active {
    display: block;
  }
  .nav-links {
    flex-direction: column;
    width: 100%;
    padding: 0;
  }
  .nav-links li {
    margin: 0;
    width: 100%;
    border-bottom: 1px solid #eee;
  }
  .nav-links a {
    display: block;
    padding: 20px;
    text-align: left;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    display: none;
    transform: none;
    background: transparent;
    padding: 0;
    border: none;
    max-height: none;
    width: 100%;
    border-top: 1px solid #eee;
  }
  .dropdown:hover .dropdown-menu {
    display: none;
    transform: none;
  }
  .dropdown.active .dropdown-menu {
    display: block;
  }

  .mobile-toggle {
    display: block;
  }

  .features-grid,
  .services-grid,
  .reviews-grid,
  .gallery-grid,
  .footer-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }
  .section-title h2 {
    font-size: 2.2rem;
  }
}

/* Floating Contact */
.floating-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.floating-contact a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.floating-contact a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.floating-phone {
  background-color: var(--secondary);
}

.floating-whatsapp {
  background-color: #25D366;
}

/* Pulse Animation for WhatsApp */
@keyframes pulse-wa {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.floating-whatsapp {
  animation: pulse-wa 2s infinite;
}

@keyframes pulse-ph {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(240, 90, 40, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(240, 90, 40, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(240, 90, 40, 0); }
}
.floating-phone {
  animation: pulse-ph 2s infinite;
  animation-delay: 1s; /* offset from whatsapp */
}

.floating-contact a:hover {
  animation: none; /* stop pulse on hover so scale transform works perfectly */
}

@media (max-width: 768px) {
  .floating-contact {
    bottom: 20px;
    right: 20px;
    gap: 12px;
  }
  .floating-contact a {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}
