body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
}


header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 30px;
    background:#fff;
    box-shadow:0 2px 5px rgba(0,0,0,0.1);
    position:relative;
}

.logo {
    font-size:24px;
    font-weight:bold;
}

/* ===== MENU ===== */
nav {
    display:flex;
    gap:25px;
}

nav a {
    text-decoration:none;
    color:#333;
    font-weight:500;
    position:relative;
}

nav a.active {
    color:#ff6b6b; /* same as your banner button */
}

/* ===== DROPDOWN ===== */
.dropdown {
    position:relative;
}

.dropdown-content {
    display:none;
    position:absolute;
    top:35px;
    left:0;
    background:#fff;
    box-shadow:0 4px 8px rgba(0,0,0,0.15);
    border-radius:5px;
    overflow:hidden;
    min-width:180px;
    z-index:10;
    flex-direction:column;
}

.dropdown-content a {
    padding:10px 15px;
    display:block;
    color:#333;
    text-decoration:none;
    font-weight:400;
}

.dropdown-content a:hover {
    background:#ff6b6b;
    color:#fff;
}

.dropdown:hover .dropdown-content {
    display:flex;
    flex-direction:column;
}

/* ===== HEADER RIGHT ===== */
.header-right .phone-btn {
    background:#ff6b6b;
    color:#fff;
    padding:8px 16px;
    border-radius:6px;
    text-decoration:none;
    font-weight:500;
}

/* ===== HAMBURGER MENU ===== */
.menu-toggle {
    display:none;
    font-size:28px;
    cursor:pointer;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width:768px){
    nav {
        position:absolute;
        top:65px;
        left:0;
        right:0;
        background:#fff;
        flex-direction:column;
        display:none;
        gap:0;
        box-shadow:0 4px 8px rgba(0,0,0,0.2);
    }

    nav a, .dropdown-content a {
        padding:15px 30px;
    }

    nav.show {
        display:flex;
    }

    .menu-toggle {
        display:block;
    }

    .header-right {
        display:none;
    }

    .dropdown-content {
        position:static;
        box-shadow:none;
    }

    .dropdown:hover .dropdown-content {
        display:none; /* remove hover effect on mobile */
    }
}









.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ===== PAGE BANNER ===== */
.page-banner {
  background: #fff5f5;
  color: #040303;
  text-align: center;
  padding: 80px 20px;
}

.page-banner h1 {
  font-size: 40px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 80px 0;
}

.contact-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Contact Info */
.contact-info h2 {
  margin-bottom: 10px;
}

.info-box {
  margin-top: 20px;
}

/* Contact Form */
.contact-form {
  background: #f7f7f7;
  padding: 30px;
  border-radius: 12px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.contact-form textarea {
  resize: none;
  height: 120px;
}

.contact-form button {
  background: #ff6f61;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #e65b50;
}

.success-message {
  display: none;
  margin-top: 15px;
  color: green;
  font-weight: bold;
}

.footer {
  background: #0f2e2e;
  color: #e6f2f2;
  padding: 50px 20px 0;
  font-family: Arial, sans-serif;
}

.footer-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.6;
}

.footer-box h4 {
  font-size: 17px;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 8px;
}

.footer-box ul li a {
  text-decoration: none;
  color: #cfe5e5;
  font-size: 14px;
}

.footer-box ul li a:hover {
  color: #ff6f61;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom {
  margin-top: 40px;
  padding: 15px 0;
  text-align: center;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    margin: auto;
  }
}
