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

:root {
    --primary-color: #14bef0;
    --primary-dark: #0fa3d4;
    --primary-light: #3dcef5;
    --text-dark: #1a1a2e;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e9ecef;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
    --radius-md: 12px;
    --radius-lg: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
}

/* Header & Navigation */
.booking{
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    top: 0;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 72px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: flex-end;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.nav-cta {
    background: var(--primary-color);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.nav-cta:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

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

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* First mobile header tweak */
@media (max-width: 900px) {
  nav {
    justify-content: center;
    position: relative;
    padding: 12px 16px;
  }

  .nav-menu {
    display: none;
  }

  .menu-toggle {
    display: flex;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
  }

  .logo {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    font-size: 18px;
  }

  .nav-cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: static;
    z-index: 20;
    padding: 10px 20px;
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
  }
}

/* Optional: smaller phones */
@media (max-width: 420px) {
  .logo { font-size: 16px; left: 12px; }
  .menu-toggle { right: 12px; }
  .nav-cta { padding: 8px 14px; font-size: 14px; }
}

/* Compact centered mobile dialog - override dropdown behavior */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) scale(0.96);
  width: min(360px, 92vw);
  max-height: 70vh;
  overflow: auto;
  background: #fff;
  border-radius: 14px;
  padding: 14px 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  z-index: 9999;
  transition: transform .18s cubic-bezier(.2,.9,.2,1), opacity .18s ease;
  opacity: 0;
  border: 1px solid rgba(0,0,0,0.06);
}

/* menu links inside dialog */
.mobile-menu a {
  padding: 12px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 700;
  display: block;
  border-bottom: 1px solid #f1f1f1;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

/* hover/focus */
.mobile-menu a:hover,
.mobile-menu a:focus {
  background: #f3fbff;
  color: var(--primary-color);
  outline: none;
}

/* small X close button in top-right of dialog (if used) */
.mobile-menu .close-small {
  position: absolute;
  right: 8px;
  top: 6px;
  background: transparent;
  border: 0;
  font-size: 20px;
  color: #666;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
}
.mobile-menu .close-small:focus { outline: 2px solid rgba(20,190,240,0.18); }

@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 99;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(-6px);
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-10px);
}

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

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

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

.btn-secondary {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.trust-badges {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.badge-icon {
    font-size: 28px;
}

.badge-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

/* About Section */
.about {
    background: transparent;
    padding: 60px 24px;
}

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

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.about-image {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 80px;
}

.about-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 14px;
    object-fit: cover;
}

.about-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.about-list {
    list-style: none;
    margin-top: 24px;
}

.about-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--text-dark);
}

.about-list li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

/* Services Section */
.services {
    padding: 70px 24px;
    background: var(--bg-white);
}

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

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

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

.service-icon {
  width: 300px;
  height: 300px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  overflow: hidden;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Why Choose Us */
.why-us {
    background: linear-gradient(135deg, rgba(20, 190, 240, 0.05) 0%, rgba(20, 190, 240, 0.02) 100%);
    padding: 80px 24px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 20px;
}

.why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.why-icon {
  width: 280px;
  height: 280px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
}

.why-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.why-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.why-item p {
    margin-top: 0;
  line-height: 1.5;
    font-size: 13px;
    color: var(--text-light);
}

/* Booking Form */
.booking {
    padding: 80px 24px;
    background: var(--bg-light);
}

.booking-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.booking-container h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(20, 190, 240, 0.1);
}

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

.form-error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 6px;
    display: none;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
}

.form-group input.error ~ .form-error,
.form-group select.error ~ .form-error,
.form-group textarea.error ~ .form-error {
    display: block;
}

.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-lg);
}

/* Testimonials */
.testimonials {
    padding: 80px 24px;
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.testimonial-header {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    align-items: center;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    background: transparent;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.testimonial-info p {
    font-size: 12px;
    color: var(--text-light);
}

.stars {
    color: #ffc107;
    font-size: 14px;
    margin-bottom: 12px;
}

.testimonial-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 80px 24px;
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-item a,
.contact-item p {
    font-size: 15px;
    color: var(--text-light);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-map {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.map-wrapper {
  width: 100%;
  max-width: 900px;
  height: 450px;
  margin: 20px auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  border: 1px solid #e8e8e8;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 48px 24px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

/* WhatsApp Floating Button */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  z-index: 9999;
  text-decoration: none;
}

.whatsapp-btn img,
.whatsapp-btn svg {
  width: 30px;
  height: 30px;
}

.whatsapp-btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

/* Second mobile header fix (more refined) */
@media (max-width: 900px) {
  nav {
    justify-content: center;
    position: relative;
    padding: 12px 16px;
    align-items: center;
  }

  .logo {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(50% - 48px);
    z-index: 30;
    font-size: 18px;
    line-height: 1;
  }

  .menu-toggle {
    display: flex;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 40;
    background: transparent;
    border: 0;
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text-dark);
  }

  .nav-cta {
    position: static;
    z-index: 20;
    padding: 8px 18px;
    font-size: 14px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(20,190,240,0.12);
  }

  .nav-menu { display: none; }

  .nav-menu.show {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
    position: absolute;
    top: calc(100% + 6px);
    left: 8px;
    right: 8px;
    padding: 12px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    z-index: 50;
  }
}

/* Optional tiny tweak for very small phones */
@media (max-width: 420px) {
  .logo { left: 12px; font-size: 16px; }
  .menu-toggle { right: 10px; }
  .nav-cta { padding: 8px 14px; font-size: 13px; }
}

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

    .nav-menu {
        display: none;
    }

    .hero h1 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
    }

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

    .about-image {
        height: 300px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .booking-container {
        padding: 32px 24px;
    }

    .trust-badges {
        gap: 16px;
    }

    .badge-text {
        font-size: 12px;
    }

    .why-icon {
      width: 100px;
      height: 100px;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 12px 16px;
    }

    .logo {
        font-size: 20px;
    }

    .hero {
        padding: 60px 16px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 15px;
    }

    .section-title {
        font-size: 28px;
    }

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

    .why-us-grid {
        grid-template-columns: 1fr;
    }

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

    .about {
        padding: 60px 16px;
    }

    .services {
        padding: 60px 16px;
    }

    .why-us {
        padding: 60px 16px;
    }

    .booking {
        padding: 60px 16px;
    }

    .testimonials {
        padding: 60px 16px;
    }

    .contact {
        padding: 60px 16px;
    }

    footer {
        padding: 40px 16px 20px;
    }

    .footer-content {
        gap: 24px;
    }

    .whatsapp-btn {
        width: 48px;
        height: 48px;
        font-size: 24px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 768px) {
  header,
  .navbar {
    height: 70px;
  }

  .logo img {
    height: 48px;
  }
}
.service-icon {
  background: #f2f6f9;
}
.hero {
  text-align: center;
  padding: 10px 8% 80px;
}

.hero-image-top {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.hero-image-top img {
  width: 100%;
  max-width: 320px;  /* 🔥 increase/decrease size here */
  height: auto;
}
/* Hide mobile menu by default */
.mobile-menu {
  display: none;
}

/* Show when active */
.mobile-menu.active {
  display: flex;
  flex-direction: column;
}

/* Hamburger button visibility */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Hamburger lines */
.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #000;
  display: block;
}

/* Mobile only */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-menu {
    position: absolute;
    top: 70px;
    right: 20px;
    background: #fff;
    padding: 20px;
    gap: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 9999;
  }
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.menu-toggle span {
  transition: 0.3s;
}
header,
nav {
  overflow: visible;
}
header {
  position: relative;
}

.mobile-menu {
  position: absolute;
  top: 70px;
  right: 20px;
  width: 220px;

  display: none;
  flex-direction: column;

  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);

  z-index: 99999;
}

.mobile-menu.active {
  display: flex;
}

.hero,
section {
  position: relative;
  z-index: 1;
}
header {
  position: relative;
  overflow: visible !important;
  z-index: 1000;
}

nav {
  overflow: visible !important;
}
.mobile-menu {
  position: fixed;      /* ← KEY CHANGE */
  top: 70px;
  right: 16px;

  display: none;
  flex-direction: column;

  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);

  z-index: 999999;      /* ← ABOVE HERO */
}

.mobile-menu.active {
  display: flex;
}
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
}
.mobile-menu {
  position: fixed;        /* KEY FIX */
  top: 70px;
  right: 16px;

  display: none;
  flex-direction: column;

  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);

  z-index: 999999;        /* above everything */
}

/* ========== MOBILE MENU FINAL ========== */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 50%;
  transform: translateX(-50%) scale(0.95);

  width: min(360px, 90vw);
  padding: 16px;

  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);

  display: none;
  flex-direction: column;
  gap: 10px;

  opacity: 0;
  z-index: 999999;
  transition: all 0.2s ease;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.mobile-menu a {
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  color: var(--text-dark);
}

.mobile-menu a:hover {
  background: #f3fbff;
  color: var(--primary-color);
}
.hidden {
  display: none !important;
}

