* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Century Gothic";
}
/* Navigation bar */
.navbar {
    width: 100%;
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}
.logo p {
    font-weight: bold;
}
.logo img {
    height: 45px;
}

.desktop-nav {
    display: flex;
    gap: 30px;
}

.desktop-nav a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 4px;
}

.desktop-nav a.active {
    border-bottom: 3px solid #d62828;
}

.contact-btn {
    background: #d62828;
    padding: 10px 22px;
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #b71f1f;
}

.contact-btn-mobile {
    display: none;
}

.fa-bars {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* dropdown */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}
.dropdown-tab {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}
.arrow {
    margin-left: 5px;
    cursor: pointer;
    font-size: 17px;
}

.submenu {
    position: absolute;
    top: 40px;
    left: 10px;
    background-color: white;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: none;
    list-style: none;
    min-width: 180px;
    z-index: 200;
}

.dropdown-menu li a {
    display: block;
    padding: 8px 15px;
    color: black;
    text-decoration: none;
    font-size: 14px;
}

.submenu li a:hover {
    background-color: #f2f2f2;
}


@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 20px;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .arrow {
        cursor: pointer;
        margin-left: 5px;
    }
}

/* mobile nav */
@media (max-width: 768px) {
    .contact-btn {
        display: none;
    }

    .fa-bars {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
        display: none;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .contact-btn-mobile {
        display: block;
        background: #d62828;
        padding: 10px 22px;
        color: white;
        text-decoration: none;
        border-radius: 6px;
        font-weight: 600;
    }

    .nav-links.show {
        display: flex;
    }
}
/* responsiveness mobile*/
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .fa-bars {
        display: block;
        font-size: 34px;
        cursor: pointer;
        font-weight: bold;
    }
}

@media (max-width: 768px) {

  /* Show submenu ALWAYS inside the mobile menu */
  .dropdown-menu {
    display: block;
    position: static;  
    margin-left: -40px;
    margin-bottom: -50px;
    margin-top: 20px;
  }

  /* Make submenu look smaller */
  .dropdown-menu .sub a {
    font-size: 13px;
    font-weight: normal;
    opacity: 0.85;
    display: block;
    padding: 6px 0;
  }
}


.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 15px rgba(0,0,0,0.2);
    transition: 0.4s;
    padding: 20px;
    z-index: 2000;
}

.mobile-menu.open {
    right: 0;
}

.fa-xmark {
    font-size: 30px;
    text-align: right;
    cursor: pointer;
    margin-bottom: 30px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav a {
    font-size: 18px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

.mobile-nav a.active {
    color: #d62828;
    border-left: 4px solid #d62828;
    padding-left: 10px;
}

/* Hero section */
.contact-hero {
    position: relative;
    height: 70vh;
    background: url(img/ctn-bg.png) center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.hero-content {
    position: relative;
    text-align: center;
    width: 90%;
    max-width: 1100px;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 30px;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.feature {
  text-align: center;
}

.icon-circle {
  width: 55px;
  height: 55px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 1.2rem;
}

.feature .title {
  font-weight: 600;
  font-size: 0.95rem;
}

.feature .desc {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* contact info */
.contact-info {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 60px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin-left: auto;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}

.info-icon {
  width: 70px;
  height: 70px;
  background: #fde7a1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.info-box h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.info-box p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* BUSINESS HOURS */
.business-hours {
  max-width: 800px;
  margin: 60px auto 0;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  text-align: left;
}

.business-hours h3 {
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.hours-row:last-child {
  border-bottom: none;
  font-weight: 600;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-features {
    gap: 25px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .business-hours {
    padding: 25px 20px;
  }

  .contact-hero {
    background-position: center center;
  }
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 60px 5% 30px;
}
.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 40px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}
.footer-logo img {
    width: 50px;
}
.footer-logo h3 {
    font-size: 16px;
    line-height: 1.3;
}
.footer-about p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 20px;
}
.footer-socials {
    display: flex;
    gap: 15px;
}
.footer-socials a {
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}
.footer-socials a:hover {
    color: #e60000;
}
.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.85;
}
.footer-col ul li a:hover {
    opacity: 1;
    color: #e60000;
}
.footer-col p {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.85;
}
.footer-col i {
    margin-right: 8px;
    color: #e60000;
}
.footer-bottom {
    margin-top: 40px;
    text-align: center;
}
.footer-bottom hr {
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin-bottom: 15px;
}
.footer-bottom p {
    font-size: 13px;
    opacity: 0.7;
}
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .footer-logo {
        justify-content: flex-start;
    }
    .footer-socials {
        margin-bottom: 20px;
    }
    .footer-col h4 {
        margin-top: 20px;
    }
}