/* --------------------------------------------------
   CLEAN NAVBAR — WORKS PERFECTLY DESKTOP + MOBILE
-------------------------------------------------- */

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

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  background: #f9f9f9;
  color: #333;
}

.nav-navbar {
  width: 100%;
  background: #65c368;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

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

/* LOGO */
.logo img {
  width: 160px;
  margin-left: 0px;
}

/* Desktop Menu */
.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 28px;
}

.nav-menu li a {
  color: #111;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: .3s ease;
  margin-right: 20px;
}

.nav-menu li a:hover {
  color: #3f53c1;
}

/* DROPDOWN DESKTOP */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 42px;
  left: 0;
  width: 220px;
  background: #fff;
  padding: 10px 0;
  border-radius: 6px;
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: .3s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: #222;
  font-size: 15px;
}

.dropdown-menu li a:hover {
  background: #edf04b;
  color: #fff;
}

.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* HAMBURGER */
.hamburger {
  font-size: 30px;
  display: none;
  color: #111;
  cursor: pointer;
}

/* HAMBURGER ANIMATION */
.hamburger {
  width: 27px;
  height: 25px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background: #111;
  border-radius: 3px;
  transition: 0.4s ease;
}

/* Transform to X */
.hamburger.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}


/* --------------------------------------------------
      MOBILE RESPONSIVE STYLING
-------------------------------------------------- */
@media (max-width: 768px) {
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;   /* <-- this is why the height is always full screen */
  width: 260px;
  background: #ecf775;
  flex-direction: column;
  padding-top: 100px;
  gap: 25px;
  box-shadow: -3px 0 10px rgba(0,0,0,0.15);
  transition: .4s ease;
  overflow-y: auto;
}


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

  .hamburger {
    display: flex;
  }

  /* Disable hover dropdown */
  .dropdown:hover .dropdown-menu {
    display: none;
  }

  /* Mobile dropdown click-to-open */
  /* Mobile dropdown click-to-open */
  .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background: #fbfbf8;
    border-radius: 0;
    box-shadow: none;
    display: none;
    opacity: 1;
    transform: translateY(0);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .dropdown.active .dropdown-menu {
    display: block;
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  .nav-menu.active {
    right: 0;      /* ← SHOW MENU */
  }
}

/* ── ACTIVE NAV LINK ── */
.nav-menu li a.active {
    color: #f7f461;
    font-weight: 800;
}

.nav-menu li a.active::after {
    content: '';
    display: block;
    height: 2px;
    background: #4caf50;
    margin-top: 4px;
}


.dropdown {
    position: relative;
}

.dropdown-arrow {
    display: none;
}

@media (max-width: 768px) {
    .dropdown {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .dropdown-toggle {
        flex: 1;
    }

    .dropdown-arrow {
        display: inline-flex;
        padding: 10px 15px;
        cursor: pointer;
    }

    .dropdown-menu {
        width: 100%;
    }
}


@media (max-width: 768px) {
  .nav-menu.active {
    right: 0;      /* ← SHOW MENU */
  }
}


/* ── GLOBAL RESET ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f9f9f9;
    color: #222;
}



/* ── GLOBAL RESET ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f9f9f9;
    color: #222;
}

/* ── ACTIVE NAV LINK ── */
.nav-menu li a.active {
    color: #f7f461;
    font-weight: 800;
}

.nav-menu li a.active::after {
    content: '';
    display: block;
    height: 2px;
    background: #4caf50;
    margin-top: 4px;
}

@media (max-width: 768px) {
  .nav-menu li a.active {
    color: #4caf50;
    font-weight: 800;
}
}



/* ── HERO SECTION ── */
.contact-hero {
    position: relative;
    width: 100%;
    height: 90vh;
    background: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1600') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.808);
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
    max-width: 800px;
    margin-top: 50px;
}

.contact-hero-sub {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #edf04b;
    margin-bottom: 1rem;
    display: block;
}

.contact-hero-content h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    line-height: 1.1;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 1rem;
}

.contact-hero-content h1 span {
    color: #edf04b;
}

.contact-hero-desc {
    font-size: 1.1rem;
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.contact-hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-btn-primary {
    background-color: #4caf50;
    color: #fff;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-btn-primary:hover {
    background-color: #edf04b;
    color: #222;
    transform: translateY(-3px);
}

.hero-btn-secondary {
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid #fff;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.hero-btn-secondary:hover {
    background-color: #fff;
    color: #222;
    transform: translateY(-3px);
}

/* Stats Row */
.contact-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 0.9rem;
}

.hero-stat i {
    color: #4caf50;
    font-size: 1rem;
}

.hero-stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
}

/* ── HERO RESPONSIVE ── */
@media (max-width: 768px) {
    .contact-hero {
        height: 90vh;
    }

    .contact-hero-content h1 {
        font-size: 3rem;
    }

    .contact-hero-desc {
        font-size: 1rem;
    }

    .contact-hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        text-align: center;
        padding: 14px 30px;
    }

    .hero-stat-divider {
        display: none;
    }

    .contact-hero-stats {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-hero-sub {
        font-size: 0.85rem;
    }

    .contact-hero-desc {
        font-size: 0.95rem;
    }
}



/* ── CONTACT MAIN SECTION ── */
.contact-main {
    padding: 100px 80px;
    background-color: #f0f0f0;
}

.contact-main-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

/* ── INFO SIDE ── */
.contact-info-wrap {
    flex: 1.4;
}

.contact-info-wrap h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: #222;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.contact-info-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    border-radius: 10px;
    padding: 20px 24px;
}

.info-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.6rem;
}

.info-text p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.info-highlight {
    color: #4caf50 !important;
    font-weight: 600;
}

.info-icon {
    font-size: 1.1rem;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon.location {
    background: #f3efef;
    color: #e53935;
}

.info-icon.phone {
    background: #e8f5e9;
    color: #4caf50;
}

.info-icon.email {
    background: #e3f2fd;
    color: #1877f2;
}

.info-icon.hours {
    background: #fff8e1;
    color: #edf04b;
}



/* ── FORM SIDE ── */
.contact-form-wrap {
    flex: 1;
    background: #fff;
    border-radius: 10px;
    padding: 50px 40px;
}

.contact-form-wrap h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: #222;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 1.5rem;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: 'Open Sans', sans-serif;
    color: #222;
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #4caf50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

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

.submit-btn {
    background-color: #4caf50;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    background-color: #edf04b;
    color: #222;
    transform: translateY(-3px);
}

/* ── CONTACT MAIN RESPONSIVE ── */
@media (max-width: 768px) {
    .contact-main {
        padding: 60px 25px;
    }

    .contact-main-container {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info-wrap h2,
    .contact-form-wrap h2 {
        font-size: 2.2rem;
    }

    .contact-form-wrap {
        padding: 35px 25px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .submit-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-info-wrap h2,
    .contact-form-wrap h2 {
        font-size: 1.8rem;
    }

    .info-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .contact-info-item {
        padding: 16px 18px;
    }

    .submit-btn {
        padding: 14px 30px;
        font-size: 0.9rem;
    }
}

/* ── SOCIAL ICONS ── */
.contact-social {
    margin-top: 24px;
}

.contact-social h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 14px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    background: #fff;
    transform: translateY(-3px);
}

.social-icon.facebook {border-color: #1877f2; color: #1877f2; }
.social-icon.instagram {border-color: #e1306c; color: #e1306c; }
.social-icon.twitter {border-color: #000; color: #000; }
.social-icon.linkedin {border-color: #0a66c2; color: #0a66c2; }
.social-icon.whatsapp {border-color: #25d366; color: #25d366; }

.social-icon.facebook:hover { border-color: #1877f2; color: #fff; background-color: #1877f2;}
.social-icon.instagram:hover { border-color: #e1306c; color: #fff; background-color: #e1306c; }
.social-icon.twitter:hover { border-color: #000; color: #fff; background-color: #000; }
.social-icon.linkedin:hover { border-color: #0a66c2; color: #fff; background-color: #0a66c2;}
.social-icon.whatsapp:hover { border-color: #25d366; color: #fff; background-color: #25d366;}


/* ── MAP SECTION ── */

.section-sub{
    margin-top: 20px;
    font-size: 1.3rem;
}
.contact-map-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-map-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #222;
    letter-spacing: 1px;
}

.contact-map-header h2 span {
    color: #4caf50;
}

.contact-map-embed {
    max-width: 1500px;
    margin: 0 auto;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.contact-map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ── MAP RESPONSIVE ── */
@media (max-width: 768px) {
 
    .contact-map-header h2 {
        font-size: 2.2rem;
    }

    .contact-map-embed {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .contact-map-header h2 {
        font-size: 1.8rem;
    }

    .contact-map-embed {
        height: 280px;
    }
}




.modern-footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: #e2e8f0;
    padding: 70px 0 0;
    font-family: 'Arial', sans-serif;
    width: 100%;
}

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

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #4a5568;
}

.footer-section h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #68d391;
}

.company-info { padding-right: 20px; }

.footer-logo h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.tagline {
    color: #68d391;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.company-description {
    color: #a0aec0;
    line-height: 1.6;
    margin: 20px 0;
    font-size: 0.95rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: #68d391;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(104, 211, 145, 0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: #68d391;
    padding-left: 8px;
}

.footer-links a::before {
    content: '▸';
    position: absolute;
    left: -12px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #68d391;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -8px;
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-icon {
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item p,
.contact-item a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
}

.contact-item a:hover { color: #68d391; }

/* Footer Bottom */
.footer-bottom {
    padding: 5px 0;
    overflow: hidden;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    color: #fff;
    font-size: 0.9rem;
    margin: 0;
}

/* Powered by */
.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-legal p {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a0aec0;
    font-size: 0.9rem;
    margin: 0;
}

.contact-icon {
  font-size: 18px;
  color: #4caf50;
  margin-right: 10px;
  width: 25px;
}


.social-link i {
  font-size: 18px;
  color: white;
  transition: 0.3s;
}

.social-link:hover i {
  color: #f7e337;
}

.powered-link {
    display: flex;
    align-items: center;
}

.powered-logo {
    height: 100px;
    max-height: 100px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.powered-link:hover .powered-logo {
    opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
    .company-info { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .modern-footer { padding: 50px 0 0; }
    .footer-main { grid-template-columns: 1fr; gap: 35px; padding-bottom: 40px; }
    .footer-bottom-content { flex-direction: column; gap: 15px; text-align: center; }
    .footer-legal { flex-wrap: wrap; justify-content: center; }
    .company-info { padding-right: 0; text-align: center; }
    .footer-section h4::after { left: 50%; transform: translateX(-50%); }
}

@media (max-width: 480px) {
    .footer-container { padding: 0 15px; }
    .footer-main { gap: 30px; }
    .social-links { justify-content: center; }
}


