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

:root {
  --primary-color: #667eea;
  --secondary-color: #764ba2;
  --accent-color: #f093fb;
  --text-dark: #2d3748;
  --text-light: #718096;
  --white: #ffffff;
  --light-bg: #f7fafc;
  --border-color: #e2e8f0;
  --success-color: #48bb78;
  --whatsapp-color: #25d366;
  --shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-bg: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

body {
  font-family: "Cairo", sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  overflow-x: hidden;
  background: var(--white);
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo i {
  font-size: 2.2rem;
  color: var(--primary-color);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--gradient);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 10px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--gradient);
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 2px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--gradient-bg);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="800" r="120" fill="url(%23a)"/></svg>');
  opacity: 0.6;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 25px;
  line-height: 1.1;
  animation: slideInRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  animation: slideInRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 25px;
  animation: slideInRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

.btn {
  padding: 18px 35px;
  border: none;
  border-radius: 60px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

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

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

.btn-whatsapp {
  background: var(--whatsapp-color);
  color: var(--white);
  box-shadow: var(--shadow);
  border: 2px solid transparent;
}

.btn-whatsapp:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-hover);
  background: #22c55e;
}

.hero-image {
  display: flex;
  justify-content: center;
  animation: slideInLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
}

.floating-image {
  width: 100%;
  max-width: 550px;
  border-radius: 30px;
  box-shadow: var(--shadow-hover);
  animation: float 4s ease-in-out infinite;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 60px;
  border: 3px solid rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 12px;
}

.scroll-indicator span {
  width: 8px;
  height: 12px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  animation: scroll 2s infinite;
}

/* Services Section */
.services {
  padding: 120px 0;
  background: var(--light-bg);
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, var(--light-bg) 0%, transparent 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.3rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.service-card {
  background: var(--white);
  padding: 50px 35px;
  border-radius: 25px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.service-icon {
  width: 90px;
  height: 90px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--white);
  font-size: 2.2rem;
  position: relative;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.service-icon::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover .service-icon::after {
  opacity: 0.3;
}

.service-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.1rem;
}

/* About Section */
.about {
  padding: 120px 0;
  background: var(--white);
}

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

.about-text h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 30px;
  position: relative;
}

.about-text h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: 0;
  width: 100px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

.about-text p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 35px;
  line-height: 1.8;
}

.features-list {
  list-style: none;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 12px 0;
}

.features-list i {
  color: var(--success-color);
  font-size: 1.4rem;
  background: rgba(72, 187, 120, 0.1);
  padding: 8px;
  border-radius: 50%;
}

.about-image img {
  width: 100%;
  border-radius: 25px;
  box-shadow: var(--shadow-hover);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-image img:hover {
  transform: scale(1.02);
}

/* Testimonials Section */
.testimonials {
  padding: 120px 0;
  background: var(--light-bg);
  position: relative;
  z-index: 10;
}

.testimonials::before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23667eea" opacity="0.05"/><circle cx="80" cy="80" r="1" fill="%23764ba2" opacity="0.05"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
}

.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  padding: 50px;
  border-radius: 25px;
  box-shadow: var(--shadow);
  text-align: center;
  display: none;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 30px;
  font-size: 6rem;
  color: var(--primary-color);
  opacity: 0.2;
  font-family: serif;
  transition: all 0.4s ease;
}

.testimonial-card.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card.active::before {
  animation: quotePop 0.8s ease-out 0.2s both;
}

.stars {
  color: #eb954a;
  font-size: 1.4rem;
  margin-bottom: 25px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  display: flex;
  justify-content: center;
  gap: 5px;
}

.stars i {
  transition: all 0.3s ease;
  transform-origin: center;
}

.stars i:hover {
  transform: scale(1.2);
  color: #ff6b35;
}

.testimonial-card p {
  font-size: 1.3rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 35px;
  font-style: italic;
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.testimonial-author img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.testimonial-author h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 500;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
}

.testimonial-nav button {
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-size: 1.4rem;
  box-shadow: var(--shadow);
}

.testimonial-nav button:hover {
  transform: scale(1.15);
  box-shadow: var(--shadow-hover);
}

/* Contact Section */
.contact {
  padding: 120px 0;
  background: var(--white);
}

.contact-content {
  display: flex;
  justify-content: center;
}

.contact-info {
  max-width: 900px;
  width: 100%;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 50px;
  padding: 30px;
  background: var(--light-bg);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.contact-details h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.contact-details p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1.1rem;
}

.contact-details a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.location-preview {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 15px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: var(--shadow);
  border: 2px solid transparent;
}

.location-preview:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  background: var(--white);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.location-preview i {
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--text-dark) 0%, #1a202c 100%);
  color: var(--white);
  padding: 60px 0 30px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.8rem;
  font-weight: 800;
}

.footer-logo i {
  font-size: 2.2rem;
  color: var(--accent-color);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateY(-2px);
}

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

.social-links a {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-size: 1.2rem;
}

.social-links a:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: var(--shadow-hover);
}

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

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
}

.whatsapp-float a {
  width: 70px;
  height: 70px;
  background: var(--whatsapp-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  text-decoration: none;
  box-shadow: var(--shadow-hover);
  animation: pulse 2s infinite;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-float a:hover {
  transform: scale(1.15);
  background: #22c55e;
}

/* Animations */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-25px);
  }
}

@keyframes scroll {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(15px);
  }
  100% {
    opacity: 0;
    transform: translateY(30px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes starPop {
  0% {
    opacity: 0;
    transform: scale(0) rotate(180deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.2) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes quotePop {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes imageSlide {
  0% {
    opacity: 0;
    transform: scale(0.8) translateX(-20px);
  }
  50% {
    opacity: 0.7;
    transform: scale(0.95) translateX(-5px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgb(255, 255, 255);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow);
  }

  .nav-menu.active {
    right: 0;
    z-index: 900;
  }

  .nav-menu li {
    margin: 20px 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

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

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

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

  .section-title {
    font-size: 2.2rem;
  }

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

  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-text h2 {
    font-size: 2.2rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .whatsapp-float {
    bottom: 20px;
    left: 20px;
  }

  .whatsapp-float a {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .nav-container {
    height: 70px;
  }

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

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

  .section-title {
    font-size: 1.8rem;
  }

  .service-card,
  .testimonial-card {
    padding: 30px 20px;
  }

  .contact-item {
    padding: 20px;
  }

  .btn {
    padding: 15px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .nav-logo span {
    font-size: 1rem !important;
  }
}

/* AOS Animations */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-right"] {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos="fade-right"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

[data-aos="fade-left"] {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos="fade-left"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

.logo-img {
  height: 40px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .hero-content {
    margin-top: 130px;
  }
}
.testimonial-image img {
  height: 300px;
  object-fit: contain;
  max-width: 100%;
}

/* Maps Section */
.maps-section {
  padding: 80px 0;
  background: var(--light-bg);
  position: relative;
}

.maps-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.05) 0%,
    rgba(118, 75, 162, 0.05) 100%
  );
  pointer-events: none;
}

.map-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 40px;
  background: var(--white);
  border: 1px solid var(--border-color);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: none;
  transition: transform 0.3s ease;
}

.map-container:hover iframe {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .whatsapp-float a {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }

  .maps-section {
    padding: 60px 0;
  }

  .map-container iframe {
    height: 300px;
  }
}
