* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #000;
    color: #fff;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    flex-wrap: wrap;
}

.top-right a {
    background: #fff;
    color: #000;
    padding: 6px;
    border-radius: 50%;
    margin-left: 6px;
    transition: 0.3s;
}

.top-right a:hover {
    background: red;
    color: #fff;
}

/* ===== HEADER ===== */
header {
    background: #eee;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    height: 50px;
}

/* ===== NAV ===== */
nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

nav ul li {
    position: relative;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    transition: 0.3s;
}

nav ul li a:hover {
    color: red;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 22px;
    z-index: 2000;
    left: 0;
    background: #fff;
    min-width: 160px;
    padding: 14px 0px;
    display: none;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu li {
    padding: 6px 16px;
}

/* Button */
.enquiry-btn a {
    background: red;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.enquiry-btn a:hover {
    background: #000;
}

/* Mobile */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-btn {
    display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {

    nav {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        background: #fff;
        transition: 0.3s;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 20px 0;
    }

    nav ul li {
        margin: 10px 0;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
    }

    .menu-toggle {
        display: block;
    }

    .enquiry-btn {
        display: none;
    }

    .mobile-btn {
        display: block;
        margin-top: 10px;
    }

    .enquiry-mobile {
        background: red;
        color: #fff !important;
        padding: 10px 20px;
        border-radius: 5px;
    }

    .top-bar {
        flex-direction: column;
        text-align: center;
    }

    .top-right {
        margin-top: 8px;
    }
}

/* herosection */


.contact-section{
  background:#fff;
  padding:80px 20px;
}

.contact-container{
  max-width:1100px;
  margin:auto;
}

.contact-title{
  text-align:center;
  font-size:40px;
  margin-bottom:50px;
  color:#000;
  animation: fadeDown 1s ease;
}

.contact-wrapper{
  display:flex;
  gap:50px;
  align-items:flex-start;
}

/* LEFT INFO */

.contact-info{
  flex:1;
  animation: slideLeft 1s ease;
}

.info-box{
  margin-bottom:30px;
}

.info-box h4{
  color:red;
  margin-bottom:8px;
  font-size:18px;
}

.info-box p{
  color:#333;
  line-height:1.6;
}

/* FORM */

.contact-form{
  flex:1.2;
  animation: slideRight 1s ease;
}

.input-row{
  display:flex;
  gap:15px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:14px;
  margin-bottom:15px;
  border:1px solid #ccc;
  font-size:14px;
  transition:0.3s;
}

.contact-form textarea{
  height:150px;
  resize:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color:red;
  outline:none;
  box-shadow:0 0 6px rgba(255,0,0,0.2);
}

/* BUTTON */

.contact-form button{
  background:red;
  color:#fff;
  border:none;
  padding:14px 30px;
  font-size:16px;
  cursor:pointer;
  transition:0.3s;
}

.contact-form button:hover{
  background:#000;
  transform:translateY(-3px);
  box-shadow:0 8px 15px rgba(0,0,0,0.2);
}

/* ANIMATIONS */

@keyframes fadeDown{
  from{opacity:0; transform:translateY(-30px);}
  to{opacity:1; transform:translateY(0);}
}

@keyframes slideLeft{
  from{opacity:0; transform:translateX(-40px);}
  to{opacity:1; transform:translateX(0);}
}

@keyframes slideRight{
  from{opacity:0; transform:translateX(40px);}
  to{opacity:1; transform:translateX(0);}
}

/* RESPONSIVE */

@media(max-width:768px){
  .contact-wrapper{
    flex-direction:column;
  }

  .input-row{
    flex-direction:column;
  }

  .contact-title{
    font-size:30px;
  }
}

/* map */

.map-container{
  width:100%;
  margin-top:40px;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.map-container iframe{
  width:100%;
  height:350px;
  border:0;
  display:block;
}

/* Mobile */
@media(max-width:768px){
  .map-container iframe{
    height:250px;
  }
}



/* footer */

    .footer {
  background: black;
  color: #fff;
  padding-top: 50px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.footer-col h3 {
  margin-bottom: 15px;
  color: #00d4ff;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #00d4ff;
  padding-left: 6px;
}

.logo {
  width: 100px;
  margin-bottom: 15px;
}

.socials a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  transition: 0.3s;
}

.socials a:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  font-size: 14px;
}

/* Floating Buttons */



/* Responsive */

@media (max-width: 600px) {
  .footer {
    text-align: center;
  }

  .socials {
    margin-top: 10px;
  }
}

