/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* VARIABLES */
:root {
  --deep-blue: #1E3A8A;
  --sky-blue: #3B82F6;
  --white: #ffffff;
  --dark: #1F2937;
  --light-bg: #f5f7ff;
}

/* BODY */
body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  line-height: 1.6;
}

/* ================= NAVBAR ================= */
.navbar {
  background: var(--deep-blue);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.logo img {
  width: 42px;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a,
.dropbtn {
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  background: none;
  border: none;
  cursor: pointer;
}

/* HOVER */
.nav-links a:hover,
.dropbtn:hover {
  color: var(--sky-blue);
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* VARIABLES */
:root {
  --deep-blue: #1E3A8A;
  --sky-blue: #3B82F6;
  --white: #ffffff;
  --dark: #1F2937;
  --light-bg: #f5f7ff;
}

/* BODY */
body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  line-height: 1.6;
}

/* ================= NAVBAR ================= */
.navbar {
  background: var(--deep-blue);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.logo img {
  width: 42px;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a,
.dropbtn {
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  background: none;
  border: none;
  cursor: pointer;
}

/* HOVER */
.nav-links a:hover,
.dropbtn:hover {
  color: var(--sky-blue);
}

/* DROPDOWN */
/* DROPDOWN */
.dropdown {
  width: 100%;
   font-weight: 500;
   position: relative;
}

.dropbtn {
  width: 100%;
  padding: 12px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* hidden */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 45px;
  left: 0;
  background: var(--deep-blue); /* 🔥 BLUE instead of white */
  min-width: 220px;
  border-radius: 10px;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  z-index: 9999;
}

/* show when active */
.dropdown-menu.show {
  display: block;
}

/* links */
.dropdown-menu a {
  display: block;
  padding: 12px;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

.dropdown-menu a:hover {
  background: rgba(255,255,255,0.1); /* soft hover */
  color: #fff;
}

/* desktop hover only */
@media (max-width: 768px) {

  .dropdown-menu {
    position: static;
    width: 100%;
    background: var(--deep-blue); /* 🔥 keep same blue */
    box-shadow: none;
    border-radius: 0;
  }

  .dropdown-menu a {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
}
@media (max-width: 768px) {

  .dropbtn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center; /* 🔥 FIX: remove space-between */
    gap: 8px; /* 🔥 controls space between text and arrow */
  }

}


.arrow {
  transition: 0.3s;
}

.dropdown-menu.show + .arrow {
  transform: rotate(180deg);
}

/* MOBILE MENU BUTTON */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}


/* ================= HERO ================= */
.hero {
  position: relative;

 background:
  linear-gradient(rgba(30,58,138,0.7), rgba(30,58,138,0.7)),
  url('../images/Contact.jpg') center/cover no-repeat;
  min-height: 30vh;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: #ffffff;

  padding: 20px;
  overflow: hidden;
}

/* 🔥 ADD THIS OVERLAY */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* DARK OVERLAY */
  z-index: 1;
}

/* KEEP TEXT ABOVE */
.hero-content {
  position: relative;
  z-index: 2;
}
.hero h1{
  font-size:45px;
  text-align: center;
  animation: slideDown 1s ease;
}

.hero p{
  max-width:600px;
  margin-top:10px;
  opacity:0.9;
  animation: fadeIn 1.5s ease;
}

/* IMPORTANT: add this NEW block */
.hero-content {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.hero h1 {
  font-size: 45px;
  animation: slideDown 1s ease;
}

.hero p {
  max-width: 600px;
  margin: 10px auto 0;
  opacity: 0.9;
  animation: fadeIn 1.5s ease;
}

/* ================= MAGAZINE ================= */
.mag-section{
  padding:80px 20px;
  max-width:1200px;
  margin:auto;
}

.section-title{
  text-align:center;
  margin-bottom:40px;
  animation: slideUp 0.8s ease;
}

.section-title h2{
  color:#1E3A8A;
  font-size:28px;
}

.mag-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px,1fr));
  gap:25px;
}

/* CARD ANIMATION */
.mag-card{
  background:white;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
  transition:0.4s;

  opacity:0;
  transform:translateY(30px);
  animation: cardIn 0.8s ease forwards;
}

.mag-card:nth-child(1){animation-delay:0.2s;}
.mag-card:nth-child(2){animation-delay:0.4s;}
.mag-card:nth-child(3){animation-delay:0.6s;}

.mag-card:hover{
  transform:translateY(-8px);
}

.mag-card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.mag-card-content{
  padding:15px;
}

.mag-card-content h3{
  margin-bottom:8px;
}

.mag-card-content p{
  font-size:14px;
  color:#555;
}

/* ================= BUTTONS ================= */
.card-buttons{
  display:flex;
  gap:10px;
  margin-top:12px;
  flex-wrap:wrap;
}

.btn{
  display:inline-block;
  padding:10px 14px;
  border-radius:6px;
  text-decoration:none;
  font-size:14px;
  transition:0.3s;
}

.primary{
  background:#3B82F6;
  color:white;
}

.primary:hover{
  background:#1E3A8A;
  transform:scale(1.05);
}

.secondary{
  border:2px solid #3B82F6;
  color:#3B82F6;
}

.secondary:hover{
  background:#3B82F6;
  color:white;
  transform:scale(1.05);
}



/* ================= SEND ARTICLES ================= */
.submit{
  background:linear-gradient(135deg, #1E3A8A, #3B82F6);
  color:white;
  text-align:center;
  padding:80px 20px;

  animation: fadeIn 1.2s ease;
}

.submit h2{
  font-size:28px;
  margin-bottom:10px;
}

.submit p{
  max-width:600px;
  margin:auto;
  opacity:0.9;
}

.emails{
  margin-top:30px;
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.email-btn{
  background:white;
  color:#1E3A8A;
  padding:12px 18px;
  border-radius:8px;
  text-decoration:none;
  font-weight:bold;
  transition:0.3s;
}

.email-btn:hover{
  background:#111827;
  color:white;
  transform:translateY(-3px);
}

/* ================= ANIMATIONS ================= */
@keyframes fadeIn{
  from{opacity:0;}
  to{opacity:1;}
}

@keyframes slideDown{
  from{transform:translateY(-40px);opacity:0;}
  to{transform:translateY(0);opacity:1;}
}

@keyframes slideUp{
  from{transform:translateY(40px);opacity:0;}
  to{transform:translateY(0);opacity:1;}
}

@keyframes cardIn{
  to{
    opacity:1;
    transform:translateY(0);
  }
}





/* ================= PRE FOOTER ================= */
.pre-footer {
   background: #1F2937;/* soft black (matches your theme) */
  color: white;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 40px;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.pre-left {
  flex: 1;
  min-width: 280px;
}

.pre-left h2 {
  color: #ffffff;
  margin-bottom: 10px;
}

.pre-left p {
  color: #d1d5db;
  margin-bottom: 20px;
}

/* FORM */
.subscribe-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.subscribe-form input {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: none;
  outline: none;
}

.subscribe-form button {
  padding: 10px 15px;
  border: none;
  background: #3B82F6;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.subscribe-form button:hover {
  background: #1E3A8A;
}

/* RIGHT SIDE */
.pre-right {
  flex: 1;
  min-width: 200px;
}

.pre-right h2 {
  margin-bottom: 10px;
  color: #3B82F6;
}

.pre-right a {
  display: block;
  color: #d1d5db;
  text-decoration: none;
  margin: 8px 0;
  transition: 0.3s;
}

.pre-right a:hover {
  color: #3B82F6;
  padding-left: 5px;
}

/* QUICK LINKS STYLE */
.pre-right a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d1d5db;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* LINE BETWEEN LINKS */
  transition: 0.3s;
}

/* REMOVE LAST LINE */
.pre-right a:last-child {
  border-bottom: none;
}

/* ARROW ICON */
.pre-right .arrow {
  color: #3B82F6;
  font-weight: bold;
  font-size: 16px;
}

/* HOVER EFFECT */
.pre-right a:hover {
  color: #ffffff;
  padding-left: 8px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .pre-footer {
    flex-direction: column;
  }

  .subscribe-form {
    flex-direction: column;
  }
}

/* FOOTER */
/* ================= FOOTER ================= */
.footer {
  background: #1E3A8A;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 40px;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.footer-left p {
  margin: 5px 0;
  font-size: 14px;
  opacity: 0.9;
}

/* RIGHT SIDE SOCIAL LINKS */
.footer-right {
  display: flex;
  gap: 15px;
  margin-right: 40px;
  flex-wrap: wrap;
}

.footer-right .social {
  color: white;
  text-decoration: none;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 6px;
  background-color: #3B82F6;
  transition: 0.3s;
}

.footer-right .social:hover {
  background: #3B82F6;
}
.footer-right {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-right .social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.footer-right .social:hover {
  background: #3B82F6;
  transform: translateY(-3px);
}

/* ================= BACK TO TOP BUTTON ================= */
#topBtn {
  background: #3B82F6;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: 0.3s;

  display: flex;
  align-items: center;
  justify-content: center;
}

#topBtn:hover {
  background: #1E3A8A;
  transform: translateY(-3px);
}


/* ICON SIZE */
#topBtn i {
  font-size: 22px;
  font-weight: 700;
}

/* HOVER EFFECT */
#topBtn:hover {
  background: #1E3A8A;
  transform: translateY(-3px);
}

.footer {
  background: #1E3A8A;
  color: white;
  padding: 30px 20px;
  position: relative;
}

/* FOOTER RIGHT SIDE */
.footer-right {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

/* BACK TO TOP INSIDE FOOTER */
#topBtn {
  position: absolute;
  bottom: 10px;   /* VERY BOTTOM */
  right: 10px;    /* FAR RIGHT */

  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;

  background: #3B82F6;
  color: white;

  display: none;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: 0.3s;
}

#topBtn:hover {
  background: #1E3A8A;
  transform: translateY(-3px);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--deep-blue);
    flex-direction: column;
    display: none;
    padding: 20px;
  }

  .nav-links.active {
    display: flex;
  }

  
}

.arrow {
  transition: 0.3s;
}

.dropdown-menu.show + .arrow {
  transform: rotate(180deg);
}


/* MOBILE MENU BUTTON */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* ================= PRE FOOTER ================= */
.pre-footer {
   background: #1F2937;/* soft black (matches your theme) */
  color: white;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 40px;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.pre-left {
  flex: 1;
  min-width: 280px;
}

.pre-left h2 {
  color: #ffffff;
  margin-bottom: 10px;
}

.pre-left p {
  color: #d1d5db;
  margin-bottom: 20px;
}

/* FORM */
.subscribe-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.subscribe-form input {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: none;
  outline: none;
}

.subscribe-form button {
  padding: 10px 15px;
  border: none;
  background: #3B82F6;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.subscribe-form button:hover {
  background: #1E3A8A;
}


.berean-resources {
    margin-top: 35px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    backdrop-filter: blur(10px);
}

.berean-resources h3 {
    margin: 0 0 10px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.berean-resources h3::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    margin-top: 8px;
    border-radius: 3px;
    background: #1e66ff;
}

.berean-resources p {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.resource-links a {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.resource-links a:hover {
    color: #1e66ff;
    transform: translateX(5px);
}



/* RIGHT SIDE */
.pre-right {
  flex: 1;
  min-width: 200px;
}

.pre-right h2 {
  margin-bottom: 10px;
  color: #3B82F6;
}

.pre-right a {
  display: block;
  color: #d1d5db;
  text-decoration: none;
  margin: 8px 0;
  transition: 0.3s;
}

.pre-right a:hover {
  color: #3B82F6;
  padding-left: 5px;
}

/* QUICK LINKS STYLE */
.pre-right a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d1d5db;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* LINE BETWEEN LINKS */
  transition: 0.3s;
}

/* REMOVE LAST LINE */
.pre-right a:last-child {
  border-bottom: none;
}

/* ARROW ICON */
.pre-right .arrow {
  color: #3B82F6;
  font-weight: bold;
  font-size: 16px;
}

/* HOVER EFFECT */
.pre-right a:hover {
  color: #ffffff;
  padding-left: 8px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .pre-footer {
    flex-direction: column;
  }

  .subscribe-form {
    flex-direction: column;
  }
}

/* FOOTER */
/* ================= FOOTER ================= */
.footer {
  background: #1E3A8A;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 40px;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.footer-left p {
  margin: 5px 0;
  font-size: 14px;
  opacity: 0.9;
}

/* RIGHT SIDE SOCIAL LINKS */
.footer-right {
  display: flex;
  gap: 15px;
  margin-right: 40px;
  flex-wrap: wrap;
}

.footer-right .social {
  color: white;
  text-decoration: none;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 6px;
  background-color: #3B82F6;
  transition: 0.3s;
}

.footer-right .social:hover {
  background: #3B82F6;
}
.footer-right {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-right .social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.footer-right .social:hover {
  background: #3B82F6;
  transform: translateY(-3px);
}

/* ================= BACK TO TOP BUTTON ================= */
#topBtn {
  background: #3B82F6;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: 0.3s;

  display: flex;
  align-items: center;
  justify-content: center;
}

#topBtn:hover {
  background: #1E3A8A;
  transform: translateY(-3px);
}


/* ICON SIZE */
#topBtn i {
  font-size: 22px;
  font-weight: 700;
}

/* HOVER EFFECT */
#topBtn:hover {
  background: #1E3A8A;
  transform: translateY(-3px);
}

.footer {
  background: #1E3A8A;
  color: white;
  padding: 30px 20px;
  position: relative;
}

/* FOOTER RIGHT SIDE */
.footer-right {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

/* BACK TO TOP INSIDE FOOTER */
#topBtn {
  position: absolute;
  bottom: 10px;   /* VERY BOTTOM */
  right: 10px;    /* FAR RIGHT */

  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;

  background: #3B82F6;
  color: white;

  display: none;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: 0.3s;
}

#topBtn:hover {
  background: #1E3A8A;
  transform: translateY(-3px);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--deep-blue);
    flex-direction: column;
    display: none;
    padding: 20px;
  }

  .nav-links.active {
    display: flex;
  }

  
}
/* ================= CONTACT SECTION ================= */

.contact-section{
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(to bottom, #f8fbff, #eef4ff);
  overflow: hidden;
}

/* FLOATING SHAPES */
.contact-shape{
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.shape1{
  width: 300px;
  height: 300px;
  background: rgba(30,58,138,0.08);
  top: -120px;
  left: -120px;
}

.shape2{
  width: 250px;
  height: 250px;
  background: rgba(37,99,235,0.08);
  bottom: -100px;
  right: -100px;
}

/* INTRO */
.contact-intro{
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  margin: auto;
  margin-bottom: 70px;
}

.contact-tag{
  display: inline-block;
  padding: 8px 18px;
  background: #dbeafe;
  color: #1E3A8A;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.contact-intro h2{
  font-size: 50px;
  color: #1E3A8A;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.contact-intro p{
  font-size: 17px;
  line-height: 1.9;
  color: #475569;
}

/* CONTAINER */
.contact-container{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  max-width: 1300px;
  margin: auto;
  align-items: start;
}

/* LEFT SIDE */
.contact-info{
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* INFO BOX */
.info-box{
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  padding: 22px;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.info-box:hover{
  transform: translateY(-5px);
}

.info-icon{
  width: 65px;
  height: 65px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  color: #fff;
}

/* ICON COLORS */
.email-icon{
  background: linear-gradient(135deg, #2563eb, #1E3A8A);
}

.phone-icon{
  background: linear-gradient(135deg, #0f766e, #14b8a6);
}

.whatsapp-small{
  background: linear-gradient(135deg, #16a34a, #22c55e);
}

.info-text h3{
  color: #1E3A8A;
  margin-bottom: 6px;
  font-size: 20px;
}

.info-text p,
.info-text a{
  color: #475569;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.7;
}

/* CONTACT IMAGE */
.contact-image{
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  margin-top: 10px;
}

.contact-image img{
  width: 100%;
  display: block;
  height: 380px;
  object-fit: cover;
}

.image-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.2));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

.image-overlay h3{
  color: #fff;
  font-size: 28px;
  margin-bottom: 10px;
}

.image-overlay p{
  color: #dbeafe;
  font-size: 16px;
}

/* FORM */
.contact-form-wrapper{
  background: #fff;
  padding: 45px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.form-header{
  margin-bottom: 30px;
}

.form-header h3{
  font-size: 34px;
  color: #1E3A8A;
  margin-bottom: 10px;
}

.form-header p{
  color: #64748b;
  line-height: 1.8;
}

/* FORM GRID */
.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group{
  margin-bottom: 22px;
}

.form-group label{
  display: block;
  margin-bottom: 10px;
  color: #1E3A8A;
  font-weight: 600;
  font-size: 15px;
}

.form-group input,
.form-group textarea{
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #dbe4f0;
  background: #f8fafc;
  font-size: 15px;
  outline: none;
  transition: 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus{
  border-color: #2563eb;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.08);
}

/* BUTTON */
.contact-btn{
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #1E3A8A, #2563eb);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(37,99,235,0.25);
}

/* FLOATING WHATSAPP */
.floating-whatsapp{
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 68px;
  height: 68px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 34px;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  animation: floatWhatsapp 2s infinite ease-in-out;
}

@keyframes floatWhatsapp{
  0%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(-8px);
  }
  100%{
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 991px){

  .contact-container{
    grid-template-columns: 1fr;
  }

  .contact-intro h2{
    font-size: 38px;
  }

  .form-row{
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper{
    padding: 30px 22px;
  }

}

@media (max-width: 600px){

  .contact-section{
    padding: 80px 15px;
  }

  .contact-intro h2{
    font-size: 32px;
  }

  .contact-intro p{
    font-size: 15px;
  }

  .info-box{
    padding: 18px;
  }

  .info-icon{
    width: 55px;
    height: 55px;
    font-size: 22px;
  }

  .form-header h3{
    font-size: 28px;
  }

  .floating-whatsapp{
    width: 60px;
    height: 60px;
    font-size: 30px;
  }

}


@media (max-width: 768px) {

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--deep-blue);
    flex-direction: column;
    display: none;
    padding: 0;
    gap: 0;
    align-items: stretch; /* IMPORTANT */
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a,
  .dropbtn {
    width: 100%;
    display: block;
    padding: 18px 25px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    text-align: center;
    margin: 0;
  }

  /* DROPDOWN WRAPPER */
  .dropdown {
    width: 100%;
  }

}

/* ================= EMAIL / INFO BOX MOBILE FIX ================= */
@media (max-width: 600px) {

  .contact-info {
    gap: 15px;
  }

  .info-box {
    flex-direction: row;
    align-items: flex-start;
    padding: 16px;
    border-radius: 16px;
  }

  .info-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    border-radius: 14px;
    flex-shrink: 0;
  }

  .info-text h3 {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .info-text p,
  .info-text a {
    font-size: 13.5px;
    word-break: break-word;
    line-height: 1.5;
  }

  /* Make email/phone look cleaner */
  .info-box {
    gap: 12px;
  }
}

.info-text a {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
}

