/* 
 * Style Sheet for Aqua Solutions
 * Modern, Premium design system with Glassmorphism, animations, and responsive utilities.
 */

@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 {
  /* Color System */
  --primary: #0072b2;
  --primary-hover: #005a9c;
  --secondary: #00e5ff;
  --accent: #25d366; /* WhatsApp Green */
  --call-color: #00c6ff; /* Call Blue */
  --dark: #0f172a;
  --dark-light: #1e293b;
  --light: #f8fafc;
  --white: #ffffff;
  --gray: #64748b;
  --border-color: #e2e8f0;
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 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(0, 229, 255, 0.4);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

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

ul {
  list-style: none;
}

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

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  z-index: 1000;
  transition: var(--transition-normal);
}

header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 50px;
  width: auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition-fast);
}

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

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

.nav-cta {
  background: linear-gradient(135deg, var(--primary), #005a9c);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(0, 114, 178, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 114, 178, 0.4);
  color: var(--white);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition-normal);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 180px 0 100px 0;
  background: radial-gradient(circle at top right, rgba(0, 229, 255, 0.1), transparent 40%),
              radial-gradient(circle at bottom left, rgba(0, 114, 178, 0.05), transparent 40%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(0, 114, 178, 0.08);
  border: 1px solid rgba(0, 114, 178, 0.15);
  border-radius: 50px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--dark) 60%, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition-normal);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0, 114, 178, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 114, 178, 0.4);
}

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

.btn-secondary:hover {
  background: rgba(0, 114, 178, 0.05);
  transform: translateY(-3px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-decorations {
  position: absolute;
  top: -5%;
  right: -5%;
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 60%);
  z-index: 1;
}

.hero-img {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transform: rotate(1deg);
  transition: var(--transition-slow);
}

.hero-img:hover {
  transform: rotate(0deg) scale(1.02);
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-tag {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--gray);
  font-size: 1.05rem;
}

/* Services Section */
.services {
  padding: 100px 0;
  background-color: var(--white);
}

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

.service-card {
  padding: 3rem 2rem;
  background: var(--light);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
  border-color: rgba(0, 114, 178, 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 65px;
  height: 65px;
  background: rgba(0, 114, 178, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  color: var(--primary);
  transition: var(--transition-normal);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.service-features {
  font-size: 0.85rem;
  color: var(--dark-light);
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: bold;
}

/* Products Section */
.products {
  padding: 100px 0;
  background-color: var(--light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.product-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition-slow);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.product-image-wrapper {
  background: #f1f5f9;
  padding: 2.5rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.product-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  text-transform: uppercase;
}

.product-img {
  max-height: 250px;
  object-fit: contain;
  transition: var(--transition-slow);
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-details {
  padding: 2rem;
}

.product-rating {
  color: #ffb000;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.product-title {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.product-features-brief {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.product-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 1.25rem;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.product-price span {
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: line-through;
  color: var(--gray);
  margin-left: 0.5rem;
}

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

/* Why Us Section */
.why-us {
  padding: 100px 0;
  background: var(--white);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-us-img-wrapper {
  position: relative;
}

.why-us-img {
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
}

.floating-badge {
  position: absolute;
  bottom: 2rem;
  right: -2rem;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.badge-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 114, 178, 0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

.badge-text p {
  font-size: 0.8rem;
  color: var(--gray);
}

.why-us-content .section-header {
  text-align: left;
  margin-bottom: 2.5rem;
}

.why-us-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.why-us-item {
  display: flex;
  gap: 1.25rem;
}

.why-us-item-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(0, 229, 255, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.why-us-item-text h4 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.why-us-item-text p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Contact / Booking Section */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.98)),
              url('assets/images/hero_purifier.png') center/cover no-repeat;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom right, rgba(0, 229, 255, 0.15), transparent 50%);
}

.contact .section-header .section-title {
  color: var(--white);
}

.contact .section-header .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-method-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.method-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
}

.method-details p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.method-details a, .method-details span {
  font-size: 1.1rem;
  font-weight: 600;
}

.method-details a:hover {
  color: var(--secondary);
}

.working-hours {
  margin-top: 3rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.working-hours h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

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

/* Glassmorphism Booking Form */
.booking-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 30px 50px rgba(0,0,0,0.3);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-control:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--secondary);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.25);
}

select.form-control option {
  background: var(--dark-light);
  color: var(--white);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* Footer */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.footer-links h4, .footer-contact h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  font-size: 0.95rem;
}

.footer-links-list a:hover {
  color: var(--secondary);
  transform: translateX(3px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.footer-contact-list li svg {
  flex-shrink: 0;
  color: var(--secondary);
  width: 20px;
  height: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

/* Mobile call button styles */
.nav-cta-mobile {
  display: none;
}

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

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: var(--transition-normal);
  position: relative;
  cursor: pointer;
}

.floating-btn svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

/* WhatsApp Floating Button */
.float-whatsapp {
  background-color: var(--accent);
}

.float-whatsapp:hover {
  transform: scale(1.1) translateY(-3px);
  background-color: #20ba5a;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
}

/* Pulse Glow Animation for WhatsApp */
.float-whatsapp::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
  z-index: -1;
  animation: pulse-glow-whatsapp 2s infinite;
}

/* Call Floating Button */
.float-call {
  background: linear-gradient(135deg, #0082c8, var(--call-color));
}

.float-call:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 198, 255, 0.4);
}

.float-call::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--call-color);
  opacity: 0.4;
  z-index: -1;
  animation: pulse-glow-call 2s infinite;
  animation-delay: 1s;
}

/* Animations */
@keyframes pulse-glow-whatsapp {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes pulse-glow-call {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-grid, .why-us-grid, .contact-grid {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  /* Nav Menu Mobile */
  .nav-container {
    height: 70px;
    padding: 0 1rem;
  }

  .logo-link {
    gap: 0.5rem;
  }

  .logo-img {
    height: 38px;
  }

  .brand-text {
    font-size: 1.15rem;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .nav-cta-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, var(--primary), #005a9c);
    color: var(--white);
    padding: 0.45rem 0.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    box-shadow: 0 4px 8px rgba(0, 114, 178, 0.25);
    transition: var(--transition-normal);
    white-space: nowrap;
  }

  .nav-cta-mobile:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(0, 114, 178, 0.35);
    color: var(--white);
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 2rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
    align-items: stretch;
    text-align: center;
  }

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

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

  .nav-cta {
    text-align: center;
  }

  /* Hero Section */
  .hero {
    padding: 140px 0 60px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

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

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-img {
    transform: rotate(0deg);
    max-width: 80%;
    margin: 0 auto;
  }

  /* Why Us */
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-us-img-wrapper {
    order: 2;
    max-width: 80%;
    margin: 0 auto;
  }

  .floating-badge {
    right: -1rem;
    bottom: 1rem;
  }

  /* Contact & Footer */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .booking-card {
    padding: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  .floating-actions {
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .floating-btn {
    width: 52px;
    height: 52px;
  }

  .floating-btn svg {
    width: 26px;
    height: 26px;
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .logo-img {
    height: 34px;
  }

  .logo-link {
    gap: 0.4rem;
  }

  .nav-cta-mobile {
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
    gap: 0.3rem;
  }

  .nav-cta-mobile svg {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 350px) {
  .brand-text {
    display: none;
  }
}

/* Modal Popup Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: rgba(30, 41, 59, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-xl), 0 0 35px rgba(0, 114, 178, 0.25);
  border-radius: 24px;
  width: 90%;
  max-width: 450px;
  padding: 2.5rem;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: var(--white);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--white);
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-header h3 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.modal-header p {
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.modal-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: left;
}

.modal-input {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: var(--white) !important;
}

.modal-input::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

.modal-submit-btn {
  width: 100%;
  border-radius: 12px;
  margin-top: 1rem;
  padding: 0.9rem 2rem;
}

.modal-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.1rem;
}

.modal-phone-link {
  color: var(--secondary);
  font-weight: 700;
  text-decoration: underline;
  transition: var(--transition-fast);
  margin-left: 0.25rem;
}

.modal-phone-link:hover {
  color: var(--white);
}

@media (max-width: 480px) {
  .modal-card {
    padding: 1.75rem;
    border-radius: 20px;
  }
  .modal-header h3 {
    font-size: 1.5rem;
  }
}
