/* ================= GLOBAL ================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body{
  color:#222;
}

a{
  text-decoration:none;
}

/* ================= NAVBAR ================= */

header{
  background:#252c34;
  position:sticky;
  top:0;
  z-index:999;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  height:80px;
}

/* LOGO */
.logo img{
  width:200px;
}

/* NAV LINKS */
nav{
  display:flex;
  align-items:center;
  gap:25px;
}

nav a{
  color:#fff;
  font-weight:500;
  transition:.3s;
}

nav a:hover,
nav a.active{
  color:#ff9800;
}

/* HAMBURGER */
.menu-toggle{
  display:none;
  font-size:34px;
  color:white;
  cursor:pointer;
}

/* ================= MOBILE NAV ================= */

@media (max-width:768px){

  .menu-toggle{
    display:block;
  }

  nav{
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#252c34;

    flex-direction:column;
    align-items:center;

    max-height:0;
    overflow:hidden;
    transition:.4s;
  }

  nav.show{
    max-height:400px;
  }

  nav a{
    width:100%;
    padding:18px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.1);
  }

}

/* ================= HERO ================= */

.hero{
  position:relative;
  height:100vh;
}

.hero img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.6);
  color:#fff;

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
}

/* ================= CONTACT ================= */

.section{
  padding:60px 0;
}

.contact-box{
  width:90%;
  max-width:900px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}


.contact-info{
  padding: 30px;
}

.contact-info strong{
  font-size: 26px;
}
.contact-box p{
  padding-bottom: 20px;
}

@media(max-width:768px){
  .contact-box{
    grid-template-columns:1fr;
  }
}

.contact-info h3{
  margin-bottom:10px;
  font-size:26px;
}

.contact-info i{
  color:#ff9800;
  margin-right:5px;
}

/* FORM */

form input,
form textarea,
form select{
  width:100%;
  padding:12px;
  margin-bottom:12px;
  border:1px solid #ccc;
  border-radius:6px;
}

form textarea{
  height:120px;
  resize:none;
}

form button{
  background:#ff9800;
  color:#fff;
  border:none;
  padding:12px;
  font-size:16px;
  border-radius:6px;
  cursor:pointer;
}

form button:hover{
  background:#e68900;
}

.phone-group{
  display:flex;
  gap:10px;
}

.phone-group select{
  width:40%;
}

.phone-group input{
  width:60%;
}

/* ================= ENQUIRY ================= */

.enquiry-section{
  max-width:500px;
  padding:30px;
  background:#fff;
}

.enquiry-section h2{
  margin-bottom:20px;
}

/* ================= FOOTER ================= */

.footer{
  background:#0f172a;
  color:#d1d5db;
  margin-top:60px;
}

.footer-container{
  max-width:1200px;
  margin:auto;
  padding:50px 20px;

  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
}

.footer-box h3{
  color:#fff;
  margin-bottom:15px;
}

.footer-box ul{
  list-style:none;
}

.footer-box ul li{
  margin-bottom:8px;
}

.footer-box ul li a{
  color:#d1d5db;
  transition:.3s;
}

.footer-box ul li a:hover{
  color:#ff9800;
}

/* SOCIAL */

.footer-social a{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  width:38px;
  height:38px;
  margin-right:8px;

  border-radius:50%;
  background:#1e293b;
  color:#fff;

  transition:.3s;
}

.footer-social a:hover{
  background:#ff9800;
  transform:translateY(-3px);
}

/* BOTTOM */

.footer-bottom{
  background:#020617;
  text-align:center;
  padding:14px;
  font-size:14px;
  color:#9ca3af;
}

/* ================= FOOTER MOBILE ================= */

@media(max-width:900px){
  .footer-container{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:500px){
  .footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }
}


/* =====================
   FOOTER
===================== */
.footer {
  background: #0f172a;
  color: #d1d5db;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-box h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-box p,
.footer-box li {
  font-size: 14px;
  line-height: 1.7;
}

.footer-box ul {
  list-style: none;
}

.footer-box ul li {
  margin-bottom: 8px;
}

.footer-box ul li a {
  color: #d1d5db;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #ff9800;
}

.footer-logo {
  width: 180px;
  margin-bottom: 15px;
}

/* Social Icons */
.footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-right: 8px;
  border-radius: 50%;
  background: #1e293b;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #ff9800;
  transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
  background: #020617;
  text-align: center;
  padding: 14px;
  font-size: 14px;
  color: #9ca3af;
}

