body{
font-family: Arial, Helvetica, sans-serif;
margin:0;
overflow-x: hidden;
}

/* NAVBAR */

.navbar-nav .nav-link{
margin:0 10px;
font-size: 15px;
font-family: sans-serif;
color: black;
}
.dropdown-menu .dropdown-item{
  font-family: sans-serif;
}
.navbar-nav .nav-link:hover{
color:#1ba6d5;
}

.dropdown-menu{
border-radius:8px;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
border:none;
}

.dropdown-item:hover{
background:#f2f6ff;
color:#1ba6d5;
}
/* BUTTON */

.contact-btn{
background:#1ba6d5;
color:white;
padding:10px 25px;
border-radius:5px;
font-weight: bold;
}

.contact-btn:hover{
background:#148bb4;
color:white;
}

/*map contact */

.contact-section{
font-family:Arial;
background:#f8fbff;
margin-top: 110px;
}

.map-container iframe{
width:100%;
height:450px;
border: 0;
}

.contact-container{
display:flex;
gap:40px;
padding:60px 8%;
flex-wrap:wrap;
}

.contact-inside{
flex:1;
display:flex;
flex-direction:column;
gap:20px;
}
i{
color:black;
margin-right:8px;
font-size:20px;
}
.contact-box{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
transition:0.3s;
}

.contact-box:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.contact-box h3{
margin-bottom:10px;
color:#2f6df6;
}

.contact-box p{
color:#555;
line-height:1.6;
}

.contact-form{
flex:1.5;
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.input-row{
display:flex;
gap:15px;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:12px;
margin-bottom:15px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
}

.contact-form input:focus,
.contact-form textarea:focus{
outline:none;
border-color:#2f6df6;
}

.contact-form button{
background:#2f6df6;
color:white;
border:none;
padding:12px 30px;
font-size:15px;
border-radius:6px;
cursor:pointer;
transition:0.3s;
}

.contact-form button:hover{
background:#1c4ed8;
transform:scale(1.05);
}

/* Responsive */

@media(max-width:900px){

.contact-container{
flex-direction:column;
}

.input-row{
flex-direction:column;
}

}

/* ===== FOOTER MAIN ===== */
.footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding-top: 50px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
}

/* ===== LOGO ===== */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  width: fit-content;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  width: 45px;
  height: 45px;
  transition: filter 0.3s ease;
}

.footer-logo:hover .logo-icon {
  filter: drop-shadow(0 0 8px rgba(180, 160, 100, 0.8));
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
  transition: color 0.3s ease;
}

.footer-logo:hover .logo-text {
  color: #11627d;
}

/* ===== SOCIAL ICONS ===== */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.social-btn svg {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #11627d;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 0;
}

.social-btn:hover::before {
  transform: scale(1);
}

.social-btn:hover {
  border-color: #11627d;
  color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(200, 169, 110, 0.4);
  transform: translateY(-3px);
}

.social-btn:hover svg {
  transform: scale(1.15);
  color: #1a1a1a;
}




/* ===== FOOTER COLUMNS ===== */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-heading {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 12px;
  padding-left: 43px;
}



.footer-col:hover .footer-heading::after {
  width: 40px;
}

/* ===== FOOTER LINKS ===== */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding-left: 0;
}

.footer-links li a::before {
  content: '›';
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.25s ease;
  color: #11627d;
  font-size: 16px;
  line-height: 1;
}

.footer-links li a:hover {
  color: #11627d;
  padding-left: 14px;
}

.footer-links li a:hover::before {
  opacity: 1;
  transform: translateX(-14px);
}

/* ===== BOTTOM BAR ===== */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 30px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  background-color: #111111;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.ldcb-link {
  color: #11627d;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.ldcb-link:hover {
  color: #fff;
  text-shadow: 0 0 8px #11627d;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: all 0.25s ease;
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid transparent;
}

.contact-info svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.contact-info:hover {
  color: #11627d;
  border-color: rgba(200, 169, 110, 0.3);
  background: rgba(200, 169, 110, 0.07);
}

.contact-info:hover svg {
  transform: scale(1.2);
  stroke: #11627d;
}

.flag-badge {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.07);
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.25s ease;
  cursor: default;
}

.flag-badge:hover {
  background: rgba(200, 169, 110, 0.12);
  border-color: rgba(200, 169, 110, 0.3);
  color: #11627d;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-bottom-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}