
body{
  font-family: 'Segoe UI', sans-serif;
  background: #f1f5f9;
  color: #0f172a;
}

/* ================= NAVBAR ================= */

.custom-navbar{
  background: #ffffff;
  padding: 18px 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.logo{
  height: 45px;
}

.brand-text{
  font-weight: 700;
  letter-spacing: 1px;
}

.brand-text .accent{
  color: #2563eb;
}

.navbar-nav{
  gap: 30px;
}

.nav-link{
  font-weight: 500;
  color: #334155 !important;
  position: relative;
  transition: 0.3s;
}

.nav-link:hover,
.nav-link.active{
  color: #2563eb !important;
}

.nav-link::after{
  content:"";
  position:absolute;
  width:0;
  height:2px;
  bottom:-6px;
  left:0;
  background:#2563eb;
  transition:0.3s;
}

.nav-link:hover::after,
.nav-link.active::after{
  width:100%;
}

.nav-icons i{
  font-size: 20px;
  margin-left: 20px;
  color: #334155;
  transition: 0.3s;
}

.nav-icons i:hover{
  color: #2563eb;
}

:root{
  --primary:#083d5c;
  --secondary:#00a896;
  --light:#f2f9ff;
  --dark:#1c1c1c;
}

*{
  box-sizing:border-box;
  font-family:'Poppins', sans-serif;
}

body{
  background:var(--light);
}

/* ================= CONTACT SECTION ================= */

.contact-section{
  background: linear-gradient(135deg, #e6f0f7, #f8fbff);
}

/* Title */
.contact-title{
  font-size: 2.3rem;
  font-weight: 700;
  color: #0f3057;
}

.contact-title span{
  color: #1abc9c;
}

/* Card */
.contact-card{
  background: #ffffff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.contact-card:hover{
  transform: translateY(-5px);
}

/* Contact Item */
.contact-item{
  display: flex;
  gap: 18px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.contact-item h6{
  font-weight: 600;
  color: #0f3057;
}

.contact-item p{
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* Icon */
.icon-box{
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1abc9c, #16a085);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}

/* Map Card */
.map-card{
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  height: 100%;
}

.map-card iframe{
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px){
  .contact-title{
    font-size: 1.8rem;
  }

  .map-card iframe{
    min-height: 350px;
  }
}

@media (max-width: 576px){
  .contact-card{
    padding: 25px;
  }

  .contact-item{
    flex-direction: column;
    gap: 10px;
  }

  .icon-box{
    width: 42px;
    height: 42px;
  }

  .map-card iframe{
    min-height: 300px;
  }
}

/* Form */
.form-section{
  margin-top:80px;
  background:white;
  padding:45px;
  border-radius:16px;
  box-shadow:0 20px 45px rgba(0,0,0,0.05);
}

.form-control{
  border-radius:10px;
  padding:14px;
}

.form-control:focus{
  border-color:var(--secondary);
  box-shadow:0 0 0 0.2rem rgba(0,168,150,0.15);
}

.btn-custom{
  background:var(--primary);
  color:white;
  padding:12px 40px;
  border-radius:10px;
  transition:0.3s;
}

.btn-custom:hover{
  background:var(--secondary);
}

.success-message{
  display:none;
  margin-top:20px;
}

@media(max-width:768px){
  .form-section{
    padding:25px;
  }
}
.footer {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  padding: 60px 0 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  border-radius: 8px;
}

.footer-brand h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.footer-brand span {
  color: #00d4ff;
}

.footer p {
  font-size: 14px;
  line-height: 1.7;
  color: #cfd8dc;
}

.footer h5 {
  margin-bottom: 20px;
  font-weight: 600;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #cfd8dc;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #00d4ff;
  padding-left: 6px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  margin-right: 8px;
  color: #fff;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background: #00d4ff;
  transform: translateY(-5px);
  color: #000;
}

.footer hr {
  border-color: rgba(255,255,255,0.1);
  margin: 40px 0 20px;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #b0bec5;
}