/* ================= CONTACT SECTION ================= */
.contact-page {
  width: 100%;
  background: whitesmoke;
  padding: 80px 0;

}

/* CONTAINER */
.contact-container {
  width: 100%;
  max-width: 1400px;   /* 🔥 FIXED WIDTH LIKE OTHER SECTIONS */
  margin: auto;
  padding: 0 8%;
}

/* ================= HEADER ================= */
.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h1 {
  font-size: 42px;
  font-weight: 700;
  color: black;
  margin-top: 2%;
}

.contact-header span {
  color: black;
  font-weight: 800;
}

.contact-header .desc {
  margin-top: 10px;
  font-size: 16px;
  color: #C13948;
}

/* ================= GRID ================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

/* ================= CARDS ================= */
.contact-info,
.contact-form {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06); /* softer */
  transition: 0.3s;
  margin-left: -8%;
  width: 112%;
  margin-top: -2%;


}

/* HOVER */
.contact-info:hover,
.contact-form:hover {
  transform: translateY(-4px);
}

/* ================= TITLES ================= */
.contact-info h3,
.form-title {
  font-size: 25px;
  font-weight: 700;
  color: black;
  margin-bottom: 25px;
  margin-top: 3%;
}

/* ================= INFO ITEMS ================= */
.info-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 15px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: #f2f4f9;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5%;
}

.info-icon img {
  width: 22px;
  height: 22px;
}

/* TEXT */
.info-item h4 {
  font-size: 17px;
  color: #C13948;
  margin-top: -12%;
}

.info-item p {
  font-size: 16px;
  color: #222;
  font-weight: 500;
  margin-top: 2%;
}

/* ================= FORM ================= */
.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 2%;
}

.form-row input {
  flex: 1;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
  width: 102%;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid #ddd;
  background: #fafbff;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

/* TEXTAREA */
.contact-form textarea {
  height: 100px;
  resize: none;
  margin-top: 1px;
  margin-left: -1%;
  margin-right: 200px;
}

/* FOCUS */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #C13948;  
}

/* BUTTON */
.send-btn {
  margin-top: 15px;
  padding: 14px;
  width: 102%;
  border-radius: 10px;
  border: none;

  background: #C13948;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  margin-left: -1%;
}

/* 🔥 HOVER (NO BLACK) */
.send-btn:hover {
  background: #a92f3c; /* slightly darker red */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(193,57,72,0.3); /* soft red shadow */
}

/* 🔥 REMOVE DEFAULT CLICK EFFECT */
.send-btn:active,
.send-btn:focus {
  outline: none;
  box-shadow: none;
} 


/* ================= TOP BAR ================= */
.top-bar {
  display: flex;
  justify-content: space-between; /* 🔥 left & right */
  align-items: center;
  padding:5px 5px;
  background:rgb(238, 240, 250);
  border-bottom: 1px solid #eee;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

/* LEFT SIDE LOGOS */
.top-left {
  display: flex;
  align-items: center;
  gap:10px;
  margin-left: 10px;
}

/* LOGOS */
.top-left img {
  height: 45px;
  transition: transform 0.5s ease;
}

.top-left img:hover {
  transform: scale(1.08);
}

.apply-alert-btn{

  background: #C13948;
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  margin-left: -7%;

  animation: pulse 1.5s infinite;
  transition: 0.3s;
}

/* hover effect */
.apply-alert-btn:hover{
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255,90,60,0.4);
}

/* PULSE ANIMATION */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255,90,60, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255,90,60, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255,90,60, 0);
  }
}

.top-bar {
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/*second nav-bar*/

/* ===== NAVBAR ===== */
.navbar {
  height: 60px;
  background: #183152;
  display: flex;
  align-items: center;
   position: fixed;
  top: 55px;
  width: 100%;
}

/* LOGO LEFT */
.logo {
 display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
}

.logo img {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 45px;
  transition: transform 0.5s ease;
  margin-top: 5px;
}

/* CENTER MENU */
.nav-links {
  list-style: none;
  display: flex;
  gap: 35px;

  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* LINKS */
.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 15px;
  margin-top: 10px;
}

.nav-links a.active,
.nav-links a:hover {
  color: #C13948;
}

/* MOBILE */
@media (max-width:768px){

  .menu-toggle{
    display: block;
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10001;
    color: black;
  }

  .mobile-menu{
    position: fixed;
    top: 60px;
    right: -100%;
    width: 50%;
    height: 100vh;
    background: #C13948;

    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;

    transition: 0.3s;
    z-index: 10000;
  }

  .mobile-menu.active{
    right: 0;
  }

  .mobile-menu a{
    color: white;
    font-size: 18px;
    text-decoration: none;
  }
}

.mobile-menu li{
  list-style: none;
}

/* FOOTER */
.footer{
  background:  #183152;
  color:lightgrey;
  padding-top:60px;
}

/* CONTAINER */
.footer-container{
  max-width:86%;
  margin:auto;
  display:grid;
  grid-template-columns:1.2fr 1.2fr 1fr;
  gap:50px;
  padding:0 40px 50px;
}

/* COLUMN */
.footer-col h3{
  font-size:18px;
  margin-bottom:10px;
  color: whitesmoke;
}

.footer-col p{
  font-size:14px;
  line-height:1.5;
  color:white;
}

/* SOCIAL */
.socials {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

/* ICON CIRCLE */
.socials span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.35s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* HOVER EFFECT */
.socials span:hover {
  transform: translateY(-6px) scale(1.08);
  background: linear-gradient(135deg, #C13948, #ff6b81);
  box-shadow: 0 10px 25px rgba(193,57,72,0.4);
}

.socials a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
}
/* VISITS */
.visits{
  margin-top:15px;
  font-size:14px;
}

/* MAP */
.footer-col iframe{
  width:100%;
  height: 150px;
  border-radius:6px;
  border:none;
  margin-top: 5%;
}


/* BOTTOM */
.footer-bottom{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  padding: 35px 0;
  margin: 0;

  border-top: 1px solid rgba(255,255,255,0.2);

  font-size: 14px;
  color: white;
}

.footer{
  background: #183152;
  color: lightgrey;
  padding-top: 60px;
  width: 100%;
}



/* RESPONSIVE */
@media(max-width:900px){
  .footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .socials{
    justify-content:center;
  }
}


/* ===== SCROLL TO TOP BUTTON ===== */
#scrollTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;

  width: 50px;
  height: 50px;
  border: none;
  border-radius: 12px;

  background: #C13948;
  color: white;
  font-size: 22px;

  cursor: pointer;
  display: none;

  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: 0.3s;
  z-index: 9999;
}

#scrollTopBtn:hover {
  transform: translateY(-3px);
  background: #a72f3b;
}

/* ==========================================
   MOBILE SIDE RESPONSIVE FIX
========================================== */
@media screen and (max-width:768px){

  html,
  body{
    overflow-x:hidden !important;
    width:100%;
  }

  /* GLOBAL SIDE PADDING */
  .contact-page,
  .contact-container,
  .footer,
  .footer-container,
  .contact-grid,
  .contact-info,
  .contact-form,
  .contact-header{
    width:100% !important;
    max-width:100% !important;
    margin-left:0 !important;
    margin-right:0 !important;
  }

  /* MAIN PAGE SIDE GAP */
  .contact-page{
    padding-left:16px !important;
    padding-right:16px !important;
  }

  .contact-container{
    padding-left:0 !important;
    padding-right:0 !important;
  }

  /* GRID FULL WIDTH */
  .contact-grid{
    display:flex !important;
    flex-direction:column !important;
    gap:20px;
  }

  /* CARD SIDE SPACING */
  .contact-info,
  .contact-form{
    padding:20px !important;
    border-radius:12px;
  }

  /* INPUTS FULL WIDTH */
  .form-row{
    display:flex !important;
    flex-direction:column !important;
    width:100%;
    gap:14px;
  }

  .form-row input,
  textarea{
    width:100% !important;
    max-width:100% !important;
  }

  /* FOOTER SIDES */
  .footer-container{
    padding-left:16px !important;
    padding-right:16px !important;
  }

  .footer-col{
    padding-left:0 !important;
    padding-right:0 !important;
  }

  iframe{
    width:100% !important;
  }
}

