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

:root {
  --primary: #FBBF24; /* High Impact Yellow */
  --primary-hover: #F59E0B;
  --bg-color: #FFFFFF; /* Main background is now white */
  --bg-alt: #F3F4F6; /* Light gray for alternation */
  --dark-bg: #111827; /* Deep dark for specific sections */
  --card-bg: #FFFFFF;
  --text-main: #111827; /* Dark text for light background */
  --text-muted: #6B7280;
  --text-light: #F9FAFB;
  --white: #FFFFFF;
  --border-color: #E5E7EB;
  --border-dark: rgba(255, 255, 255, 0.1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
  --shadow-glow: 0 0 20px rgba(251, 191, 36, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bg-dot-pattern {
  background-image: radial-gradient(rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}

.bg-dot-pattern-dark {
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}

.section-watermark {
  position: absolute;
  font-size: 8rem;
  font-weight: 900;
  color: #F3F4F6;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
  font-family: var(--font-heading);
  text-transform: uppercase;
  user-select: none;
}

.section-watermark.on-dark {
  color: rgba(255, 255, 255, 0.03);
}

.section-watermark.on-yellow {
  color: rgba(0, 0, 0, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

/* Utilities */
.text-primary { color: var(--primary); }
.text-center { text-align: center; }
.section-padding { padding: 100px 0; }
.bg-dark { background-color: var(--dark-bg); color: var(--text-light); }
.bg-card { background-color: var(--card-bg); }
.bg-yellow { background-color: var(--primary); color: #000; }
.bg-color { background-color: var(--bg-color); }

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: #000;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: #000;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-title p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark-bg);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links li a {
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark-bg);
}

.navbar.scrolled .logo {
  color: var(--dark-bg);
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--primary);
}

.navbar.scrolled .nav-links li a:hover,
.navbar.scrolled .nav-links li a.active {
  color: var(--primary);
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--dark-bg);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-btn i {
  color: var(--primary);
  font-size: 1.2rem;
}

.mobile-book-btn {
  display: none !important;
}

.mobile-menu-btn {
  display: none !important;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--dark-bg);
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block !important;
    color: var(--dark-bg);
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    padding: 20px;
    gap: 10px;
  }
  
  .nav-links.open {
    display: flex;
  }
  
  .nav-links li {
    width: 100%;
  }
  
  .nav-links li a {
    color: var(--dark-bg) !important;
    display: block;
    padding: 10px 15px;
    border-radius: 8px;
    width: 100%;
    transition: var(--transition);
  }
  
  .nav-links li a:hover,
  .nav-links li a.active {
    background: rgba(251, 191, 36, 0.1);
    color: var(--primary) !important;
  }
  
  .nav-right .contact-btn,
  .nav-right .btn-primary {
    display: none !important;
  }
  
  .nav-links li a.mobile-book-btn {
    display: block !important;
    background: var(--primary) !important;
    color: #000 !important;
    font-weight: 700;
    text-align: center;
    margin-top: 10px;
  }
  
  .nav-links li a.mobile-book-btn:hover {
    background: var(--primary-hover) !important;
  }
}

/* Hero Section Redesign */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: #111827;
  background-image: url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?w=1920&q=80');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.5));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  width: 100%;
}

.hero-text h1 {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text h1 span {
  background: var(--primary);
  color: #000;
  padding: 0 15px;
  display: inline-block;
  transform: skewX(-10deg);
}

.hero-text p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 auto 30px;
  max-width: 600px;
}

.hero-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.hero-btns .btn {
  padding: 15px 40px;
  font-size: 1.1rem;
}

/* Inner Hero Section - Cinematic Upgrade */
.inner-hero {
  padding: 180px 0 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  background-color: var(--dark-bg); /* Fallback */
}

.inner-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(rgba(17, 24, 39, 0.7), rgba(17, 24, 39, 0.4));
  z-index: 1;
}

.inner-hero .container {
  position: relative;
  z-index: 2;
}

.inner-hero h1 {
  font-size: 4.5rem;
  margin-bottom: 10px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
  font-weight: 800;
}

.inner-hero p {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 1rem;
  margin-bottom: 15px;
}

.experience-badge {
  background: var(--primary);
  color: #000;
  padding: 15px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  box-shadow: var(--shadow-glow);
  border: 4px solid rgba(255, 255, 255, 0.2);
}

.experience-badge h3 {
  font-size: 1.8rem;
  line-height: 1;
}

.experience-badge p {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  text-align: left;
}

/* About Us Section */
.about {
  background-color: var(--card-bg);
  position: relative;
  overflow: hidden;
}

.services {
  position: relative;
  overflow: hidden;
}

.team {
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img {
  position: relative;
}

.about-img img {
  width: 100%;
  border-radius: 20px;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.features-list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-icon {
  background: rgba(251, 191, 36, 0.1);
  color: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.feature-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.feature-text p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Services Section 10x Improvement */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.premium-service-card {
  height: 450px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  color: var(--white);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  background-color: var(--dark-bg);
}

.premium-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 20%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
  z-index: 1;
  transition: var(--transition);
}

.premium-service-card img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(40%);
}

.premium-service-card:hover img {
  transform: scale(1.1);
  filter: grayscale(0%);
}

.premium-service-card:hover::before {
  background: linear-gradient(to top, rgba(251, 191, 36, 0.95) 0%, rgba(0,0,0,0.4) 100%);
}

.card-content {
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.card-number {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.1);
  font-family: var(--font-heading);
  z-index: 2;
}

.premium-service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--white);
}

.premium-service-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 25px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
  opacity: 0;
}

.premium-service-card:hover p {
  max-height: 100px;
  opacity: 1;
  margin-bottom: 25px;
}

.premium-service-card:hover h3 {
  color: #000;
}

.premium-service-card:hover .card-number {
  color: rgba(0, 0, 0, 0.1);
}

.premium-service-card:hover p {
  color: rgba(0, 0, 0, 0.8);
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #000;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}

.premium-service-card:hover .service-btn {
  transform: translateY(0);
  opacity: 1;
  background: #000;
  color: var(--primary);
}

/* Why Choose Us */
.why-choose {
  background-color: var(--dark-bg);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.stat-card {
  text-align: center;
  padding: 50px 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-10px);
  border-color: var(--primary);
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  opacity: 0.8;
}

.stat-number {
  font-size: 3.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 5px;
  line-height: 1;
}

.stat-text {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Brands Section */
.brands {
  padding: 40px 0;
  background: #fff;
  border-bottom: 1px solid var(--border-light);
  color: #000;
  text-align: center;
}

.brands h3 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.brands-marquee {
  overflow: hidden;
  white-space: nowrap;
}

.brands-track {
  display: inline-flex;
  gap: 50px;
  animation: scroll 20s linear infinite;
  align-items: center;
}

.brand-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  opacity: 0.7;
  transition: var(--transition);
}

.brand-logo:hover {
  opacity: 1;
}

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

/* CTA Section */
.cta {
  background-color: var(--primary);
  color: #000;
  text-align: center;
  padding: 80px 0;
}

.cta-content h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #000;
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 40px;
}

.cta .btn-outline {
  border-color: #000;
  color: #000;
}

.cta .btn-outline:hover {
  background: #000;
  color: var(--primary);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.review-card {
  background: var(--card-bg-light);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid var(--border-color);
}

.review-stars {
  color: var(--primary);
  margin-bottom: 15px;
}

.review-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 15px;
}

.reviewer-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
}

.reviewer-info h4 {
  font-size: 1.1rem;
}

.reviewer-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
}

.faq-question i {
  color: var(--primary);
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  padding-bottom: 20px;
  max-height: 200px;
}

/* Footer */
.footer {
  background: #000;
  padding: 80px 0 20px;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-logo {
  margin-bottom: 20px;
  display: inline-block;
  color: var(--white);
}

.footer-text {
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  /* background: var(--card-bg); */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.social-links a:hover {
  background: var(--primary);
  color: #000;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: var(--text-muted);
}

.footer-links li a:hover {
  color: var(--primary);
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--text-muted);
}

.contact-info i {
  color: var(--primary);
  margin-top: 5px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Testimonials / Reviews Section */
.reviews {
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.review-card {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 30px;
  font-size: 8rem;
  color: rgba(251, 191, 36, 0.1);
  font-family: serif;
  line-height: 1;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: var(--primary);
}

.review-stars {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1rem;
}

.review-text {
  font-style: italic;
  color: var(--text-main);
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 30px;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 15px;
}

.reviewer-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  border: 4px solid var(--white);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
}

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

.reviewer-info h4 {
  font-size: 1.1rem;
  color: var(--dark-bg);
  margin-bottom: 2px;
}

.reviewer-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text p {
    margin: 0 auto 30px;
  }
  .hero-btns {
    justify-content: center;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-right .contact-btn {
    display: none;
  }
  .mobile-menu-btn {
    display: block !important;
  }
  .logo {
    font-size: 1.5rem !important;
  }
  .navbar {
    padding: 12px 0 !important;
  }
  .hero-text h1 {
    font-size: 2.3rem;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .hero-btns .btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 1rem;
  }
  .experience-badge {
    display: none !important;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .reviews-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .areas-container {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Floating Call Button */
.floating-call-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4), var(--shadow-glow);
  z-index: 9999;
  transition: var(--transition);
  text-decoration: none;
}

.floating-call-btn:hover {
  background-color: var(--primary-hover);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.6), 0 0 30px rgba(251, 191, 36, 0.5);
}

.floating-call-btn i {
  position: relative;
  z-index: 2;
}

/* Pulse Ring Animation */
.floating-call-btn .pulse-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--primary);
  opacity: 0.4;
  z-index: 1;
  animation: floatPulse 2s infinite;
}

@keyframes floatPulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Tooltip for Floating Call Button */
.floating-call-btn .call-tooltip {
  position: absolute;
  right: 75px;
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-heading);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-call-btn:hover .call-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .floating-call-btn {
    bottom: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
  .floating-call-btn .call-tooltip {
    display: none;
  }
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 105px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: var(--transition);
  text-decoration: none;
}

.floating-whatsapp-btn:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6), 0 0 30px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp-btn i {
  position: relative;
  z-index: 2;
}

/* WhatsApp Pulse Ring Animation */
.floating-whatsapp-btn .whatsapp-pulse-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25D366;
  opacity: 0.4;
  z-index: 1;
  animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Tooltip for WhatsApp Button */
.floating-whatsapp-btn .whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-heading);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .floating-whatsapp-btn {
    bottom: 69px;
    right: 15px;
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
  .floating-whatsapp-btn .whatsapp-tooltip {
    display: none;
  }
}

/* Global Mobile Responsiveness Fixes */
@media (max-width: 768px) {
  /* Section Title and Headings */
  .section-title h2 {
    font-size: 2rem !important;
  }
  
  .about-content h2 {
    font-size: 2rem !important;
  }

  /* Section Padding */
  .section-padding {
    padding: 60px 0 !important;
  }
  
  /* Inner Hero Heading */
  .inner-hero {
    padding: 120px 0 60px !important;
  }
  .inner-hero h1 {
    font-size: 2.2rem !important;
  }
  
  /* Mission Section (About Page) */
  .mission-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  
  /* Service Details (Services Page) */
  .service-detail-item {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    margin-bottom: 60px !important;
    direction: ltr !important;
  }
  .service-detail-item:nth-child(even) {
    direction: ltr !important;
  }
  .service-detail-item:nth-child(even) .service-detail-text {
    direction: ltr !important;
  }
  
  /* Contact Page Grid */
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    padding: 40px 0 !important;
  }
  
  /* Team Section Trust Bar */
  .trust-bar {
    padding: 20px 15px !important;
    flex-direction: column !important;
    gap: 15px !important;
  }
  .trust-divider {
    display: none !important;
  }
  
  /* CTA Section */
  .cta-section {
    padding: 60px 0 !important;
  }
  .cta-section h2 {
    font-size: 2.2rem !important;
    line-height: 1.2 !important;
  }
  .cta-section p {
    font-size: 1rem !important;
    margin-bottom: 30px !important;
  }
}



