/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  color: #1e293b;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== UTILITY BAR ===== */
.utility-bar {
  background: linear-gradient(135deg, #0a2463 0%, #1e3a8a 100%);
  color: white;
  padding: 10px 0;
  font-size: 14px;
}

.utility-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 20px;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info i {
  color: #38bdf8;
}

.call-btn {
  background: #38bdf8;
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.call-btn:hover {
  background: #0ea5e9;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

/* ===== HEADER/NAVIGATION ===== */
.header {
  background: white;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo h2 {
  color: #0a2463;
  font-weight: 700;
  font-size: 28px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #0a2463;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #38bdf8;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #0a2463;
  margin: 3px 0;
  transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(10, 36, 99, 0.7), rgba(30, 58, 138, 0.7)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%230a2463" width="1200" height="800"/><path d="M0,400 Q300,300 600,400 T1200,400 V800 H0 Z" fill="%231e3a8a"/></svg>');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(56, 189, 248, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(56, 189, 248, 0.15) 0%,
      transparent 50%
    );
  animation: waterFlow 20s infinite linear;
}

@keyframes waterFlow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100px);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-content {
  text-align: left;
  color: white;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.95;
  font-weight: 300;
  line-height: 1.6;
}

.hero-features {
  list-style: none;
  padding: 0;
  margin: 30px 0 0 0;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: white;
}

.hero-features i {
  color: #38bdf8;
  font-size: 1.3rem;
}

/* Hero Form */
.hero-form-container {
  z-index: 2;
  position: relative;
}

.form-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-card h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #0a2463;
}

.form-card p {
  color: #64748b;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.4);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background: white;
  color: #0a2463;
  transform: translateY(-3px);
}

.btn-light {
  background: white;
  color: #0a2463;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-block {
  width: 100%;
}

/* ===== TRUST STATS ===== */
.trust-stats {
  background: white;
  padding: 60px 0;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: #f8fafc;
  border-radius: 15px;
  transition: all 0.3s ease;
  text-align: center;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}

.stat-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #0a2463;
  margin-bottom: 5px;
}

.stat-content p {
  color: #64748b;
  font-weight: 500;
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 60px 0;
  background: #f1f5f9;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #0a2463;
  margin-bottom: 25px;
  position: relative;
}

.about-text h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
  border-radius: 2px;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #334155;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  width: 100%;
  height: 350px;
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  box-shadow: 0 20px 40px rgba(56, 189, 248, 0.2);
}

.image-placeholder i {
  font-size: 4rem;
  margin-bottom: 15px;
}

.image-placeholder p {
  font-size: 1.5rem;
  font-weight: 600;
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: 100px 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #0a2463;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 25px;
}

.section-cta {
  margin-top: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(56, 189, 248, 0.4);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: #38bdf8;
}

.service-icon {
  width: 100%;
  height: 200px;
  margin-bottom: 25px;
  border-radius: 12px;
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 200px;
  margin-bottom: 25px;
  border-radius: 12px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.5rem;
  color: #0a2463;
  margin-bottom: 15px;
}

.service-card p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 25px;
}

.service-btn {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.service-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.4);
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ===== WHY US SECTION ===== */
.why-us {
  padding: 100px 0;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 1.3rem;
  color: #0a2463;
  margin-bottom: 10px;
}

.feature-content p {
  color: #64748b;
  line-height: 1.6;
}

/* ===== PRODUCTS SECTION ===== */
.products {
  padding: 100px 0;
  background: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.product-card {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card .service-btn {
  margin-top: auto;
  align-self: center; /* Ensures button stays centered horizontally */
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-card h3 {
  font-size: 1.5rem;
  color: #0a2463;
  margin-bottom: 25px;
}

.product-card ul {
  list-style: none;
  text-align: left;
}

.product-card li {
  padding: 10px 0;
  color: #334155;
  position: relative;
  padding-left: 25px;
}

.product-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #38bdf8;
  font-weight: bold;
}

/* ===== TESTIMONIALS SECTION ===== */
/* ===== TESTIMONIALS SECTION (NEW DESIGN) ===== */
.testimonials {
  padding: 100px 0;
  background: #f8fafc; /* Light background base */
  position: relative;
  overflow: hidden;
}

/* Background Orbs */
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.6;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(56, 189, 248, 0.2); /* Light Blue */
  top: 10%;
  left: -100px;
  /* Animation removed */
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(251, 191, 36, 0.15); /* Light Gold/Accent */
  bottom: 0;
  right: -50px;
  /* Animation removed */
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.2); opacity: 0.8; }
}

.testimonials .container {
  position: relative;
  z-index: 10;
}

.testimonials .section-header h2 {
    color: #1e293b; /* Dark text */
    font-size: 3rem;
    font-weight: 700;
}

.testimonials .section-header p {
    color: #64748b; /* Grey text */
    font-size: 1.2rem;
}

/* Static Grid Container (formerly Marquee) */
.testimonial-slider {
  overflow: visible; /* changed from hidden */
  width: 100%;
  position: relative;
  mask-image: none; /* removed mask */
  -webkit-mask-image: none;
  padding: 40px 0;
  z-index: 10;
}

.testimonial-track {
  display: flex;
  flex-wrap: wrap; /* Grid layout */
  justify-content: center;
  gap: 30px;
  width: 100%; /* changed from max-content */
  animation: none; /* removed scroll */
  padding: 10px 0;
}

/* Glass Card Design */
.testimonial-card {
  /* Fluid width for 3-4 columns */
  width: 100%; /* Mobile default */
  flex: 1 1 300px; /* Grow/Shrink, Basis */
  max-width: 600px; /* Prevent too wide on mobile */

  /* Media Queries handled via flex-basis usually, but explicit width gives better control over gap */
  /* Mobile default: 1 per row */
  width: 100%;
  flex-shrink: 0;
  
  background: rgba(255, 255, 255, 0.6); /* White/50 */
  backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: 16px; /* rounded-xl */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-md */
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

/* Tablet: 2 per row */
@media (min-width: 600px) {
  .testimonial-card {
    width: calc(50% - 15px); /* 15px = half of 30px gap */
  }
}

/* Desktop: 3 per row */
@media (min-width: 992px) {
  .testimonial-card {
    width: calc(33.33% - 20px); /* 20px = 2/3 of 30px gap */
  }
}

/* Large Screens: 4 per row */
@media (min-width: 1400px) {
  .testimonial-card {
    width: calc(25% - 22.5px); /* 22.5px = 3/4 of 30px gap */
  }
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
}

/* Card Content Layout */
.card-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.author-info .name {
  font-weight: 700;
  font-size: 1.125rem; /* text-lg */
  color: #0f172a; /* text-primary approx */
  margin-bottom: 2px;
}

.author-info .role {
  font-size: 0.875rem; /* text-sm */
  color: #64748b; /* text-gray-500 */
  margin-bottom: 2px;
}

.author-info .stars {
  color: #f59e0b; /* text-accent approx */
  font-size: 0.875rem;
}

.testimonial-quote {
  color: #4b5563; /* text-gray-600 */
  font-style: italic;
  line-height: 1.625; /* leading-relaxed */
  font-size: 1rem;
}

.testimonial-card::before {
  content: none; /* Removing the old large quote icon */
}

/* Remove old badge styles specific to card */
.testimonial-badge {
    display: none;
}

.rating {
  color: #fbbf24;
  margin-bottom: 25px;
  font-size: 1.2rem;
  display: flex;
  gap: 5px;
}

.testimonial-card p {
  font-style: italic;
  color: #e2e8f0; /* Light text for readability on dark */
  margin-bottom: 30px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
}


.customer h4 {
  color: #38bdf8; /* Lighter cyan for name */
  margin-bottom: 5px;
  font-weight: 600;
}

.customer span {
  color: #cbd5e1; /* Light grey for location */
  font-size: 0.9rem;
}

.testimonial-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.testimonials-cta {
  text-align: center;
  padding: 30px;
}

.testimonials-cta .btn {
  margin-bottom: 15px;
  animation: bounce 3s infinite;
}

.testimonials-cta p {
  color: #64748b;
  font-size: 1.1rem;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* ===== APPOINTMENT FORM ===== */
.appointment {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a2463 0%, #1e3a8a 100%);
  color: white;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.form-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.consultation-form {
  display: grid;
  gap: 20px;
}

.form-group {
  width: 100%;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 18px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  background: white;
  color: #1e293b;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #38bdf8;
  background: #f8fafc;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.success-message {
  text-align: center;
  padding: 40px;
}

.success-message i {
  font-size: 4rem;
  color: #38bdf8;
  margin-bottom: 20px;
}

.success-message h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.success-message p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ===== CTA SECTION ===== */
.cta-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #0a2463 0%, #1e3a8a 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
}

.cta-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(56, 189, 248, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  top: -200px;
  left: -200px;
  animation: float 20s infinite ease-in-out;
}

.cta-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(56, 189, 248, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  bottom: -150px;
  right: -150px;
  animation: float 15s infinite ease-in-out reverse;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 3.5rem;
  margin-bottom: 25px;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.4rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

/* ===== FOOTER ===== */
.footer {
  display: flex;
  align-items: center;
  background: #0f172a;
  color: white;
  padding: 60px 20px 40px;
  width: 100%;
  margin: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 2rem;
  color: #38bdf8;
  margin-bottom: 15px;
}

.footer-brand p {
  color: #94a3b8;
  line-height: 1.6;
}

.footer-address h4,
.footer-links h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #e2e8f0;
}

.footer-address p {
  margin-bottom: 15px;
  color: #94a3b8;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-address i {
  color: #38bdf8;
  margin-top: 4px;
}

.footer-map {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #38bdf8;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #334155;
  color: #94a3b8;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .about-content,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-column:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .utility-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .contact-info {
    flex-direction: column;
    gap: 10px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-features {
    text-align: left;
    max-width: 400px;
    margin: 30px auto 0;
  }

  .form-card {
    padding: 30px;
  }

  .cta-content h2 {
    font-size: 2.5rem;
  }

  .cta-content p {
    font-size: 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .services-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-column {
    gap: 20px;
  }

  .form-container {
    padding: 30px 20px;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .section-cta {
    margin-top: 15px;
    padding: 12px 25px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    height: 90vh;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .btn {
    padding: 12px 25px;
    font-size: 14px;
  }

  .stat-card {
    flex-direction: column;
    text-align: center;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== TESTIMONIALS SECTION (NEW DESIGN) ===== */
.testimonials-section {
    background: #f8fafc;
    padding: 80px 0;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.testimonials-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card-new {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid #e2e8f0;
}

.testimonial-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: #38bdf8;
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.stars-rating {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    font-style: italic;
    margin-bottom: 30px;
    min-height: 120px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 2px solid #f1f5f9;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #38bdf8;
}

.author-details h4 {
    font-size: 1.1rem;
    color: #0a2463;
    margin-bottom: 4px;
    font-weight: 600;
}

.author-details p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== FLOATING CONTACT BUTTONS ===== */
.floating-call {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.call-btn {
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.float-btn:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
    }
}

/* Mobile adjustments for floating buttons */
@media (max-width: 768px) {
    .floating-call {
        bottom: 20px;
        left: 20px;
    }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }
    
    .float-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
}

/* Footer Map Section */
.footer-map-section {
    text-align: left;
}

.footer-map-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #e2e8f0;
}
