@charset "UTF-8";
/* =========================================================
VARIABLES
========================================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  padding-top: 64px;
  color: #1E293B;
  font-family: "Inter", sans-serif;
  background: #FFFFFF;
  overflow-x: hidden;
}
@media (min-width: 992px) {
  body {
    padding-top: 80px;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

li {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  border: none;
  font-family: inherit;
  background: none;
  cursor: pointer;
}

.container {
  margin: auto;
  width: 100%;
  max-width: 1300px;
  padding-inline: 16px;
}
@media (min-width: 576px) {
  .container {
    padding-inline: 24px;
  }
}
@media (min-width: 768px) {
  .container {
    padding-inline: 32px;
  }
}

.navbar {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  border-bottom: 1px solid #CFEFFF;
  box-shadow: 0 2px 10px rgba(26, 156, 208, 0.08);
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.13);
  border-bottom-color: #E2E8F4;
}

.nav-inner {
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 992px) {
  .nav-inner {
    height: 80px;
  }
}

.nav-logo {
  position: relative;
  z-index: 1002;
  display: flex;
  flex-shrink: 0;
  align-items: center;
}
.nav-logo img {
  width: auto;
  height: 72px;
  display: block;
  object-fit: contain;
}
@media (min-width: 576px) {
  .nav-logo img {
    height: 72px;
  }
}
@media (min-width: 992px) {
  .nav-logo img {
    height: 72px;
  }
}

/* =========================================================
DESKTOP NAV LINKS
========================================================= */
.nav-links {
  display: none;
}
@media (min-width: 992px) {
  .nav-links {
    margin: 0;
    display: flex;
    align-items: center;
    padding: 0;
    gap: 32px;
    list-style: none;
  }
}
.nav-links li {
  list-style: none;
}
.nav-links a {
  position: relative;
  color: #1E293B;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.nav-links a::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  border-radius: 20px;
  width: 0;
  height: 2px;
  content: "";
  background: #1A9CD0;
  transition: all 0.3s ease;
}
.nav-links a:hover {
  color: #1A9CD0;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a.active {
  color: #1A9CD0;
}
.nav-links a.active::after {
  width: 100%;
}

.hamburger {
  position: relative;
  z-index: 1002;
  border: 1.5px solid #CFEFFF;
  border-radius: 8px;
  width: 42px;
  height: 42px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  padding: 0;
  gap: 5px;
  background: #FFFFFF;
  box-shadow: 0 2px 10px rgba(26, 156, 208, 0.08);
  cursor: pointer;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 992px) {
  .hamburger {
    display: none;
  }
}
.hamburger span {
  border-radius: 3px;
  width: 20px;
  height: 2px;
  display: block;
  background-color: #0F172A;
  pointer-events: none;
  transform-origin: center center;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}
.hamburger:hover {
  border-color: #1A9CD0;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.hamburger:hover span {
  background-color: #1A9CD0;
}
.hamburger.open {
  border-color: #1A9CD0;
}
.hamburger.open span:nth-child(1) {
  background-color: #1A9CD0;
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  background-color: #1A9CD0;
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100dvh;
  padding-top: 85px;
  padding-bottom: 40px;
  background: #FFFFFF;
  border-left: 0;
  box-shadow: none;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu ul {
  margin: 0;
  display: flex;
  flex-direction: column;
  padding: 0;
  list-style: none;
}
.mobile-menu li {
  width: 100%;
  display: block;
  list-style: none;
  border-bottom: 1px solid #f1f5f9;
}
.mobile-menu li::marker {
  display: none;
  content: "";
}
.mobile-menu a {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 15px 24px;
  color: #1E293B;
  font-weight: 600;
  font-size: 1.2rem;
  border-bottom: none;
  transition: all 0.3s ease;
}
.mobile-menu a:hover, .mobile-menu a.active {
  padding-left: 32px;
  color: #1A9CD0;
  background: #DDF4FF;
}
.mobile-menu .mobile-cta {
  margin: 24px 24px 0;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
  background: #1A9CD0;
  transition: all 0.3s ease;
  border-bottom: none;
}
.mobile-menu .mobile-cta:hover {
  padding-left: 24px;
  background: #0087C8;
}

.menu-overlay {
  position: fixed;
  z-index: 998;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Desktop Navbar Auth */
.nav-inner > .nav-auth {
  display: none;
}
@media (min-width: 992px) {
  .nav-inner > .nav-auth {
    display: flex;
    align-items: center;
    gap: 12px;
  }
}

/* =========================================================
MOBILE MENU AUTH
========================================================= */
.mobile-menu .nav-auth {
  margin-top: 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 16px;
}
@media (min-width: 992px) {
  .mobile-menu .nav-auth {
    display: none;
  }
}
.mobile-menu .btn-login,
.mobile-menu .btn-register {
  border-radius: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 20px;
  font-weight: 600;
  font-size: 1rem;
  min-height: 52px;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-login,
.btn-register {
  border-radius: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  gap: 8px;
  transition: all 0.3s ease;
}
.btn-login i,
.btn-register i {
  font-size: 0.9rem;
}

.btn-login {
  border: 1.5px solid #1A9CD0;
  color: #1A9CD0;
  background: transparent;
}
.btn-login:hover {
  color: #FFFFFF;
  background: #1A9CD0;
  transform: translateY(-2px);
}

.btn-register {
  color: #FFFFFF;
  background: #1A9CD0;
}
.btn-register:hover {
  background: #0087C8;
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .mobile-menu .nav-auth {
    padding: 20px;
    gap: 14px;
  }
  .mobile-menu .btn-login {
    margin-top: 16px;
    border: 1px solid #1A9CD0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1A9CD0;
    font-size: 0.95rem;
    min-height: 50px;
  }
  .mobile-menu .btn-register {
    margin-top: 16px;
    color: white;
    font-size: 0.95rem;
    min-height: 50px;
  }
}
.btn-scholarship {
  border-radius: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 22px;
  color: #fff;
  font-weight: 600;
  gap: 8px;
  text-decoration: none;
  background: linear-gradient(135deg, #1A9CD0, #36B3E5);
  box-shadow: 0 8px 20px rgba(26, 156, 208, 0.25);
  transition: all 0.3s ease;
}
.btn-scholarship i {
  font-size: 15px;
}
.btn-scholarship:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #168bb9, #1A9CD0);
  box-shadow: 0 12px 28px rgba(26, 156, 208, 0.4);
}

/* Mobile View */
@media (max-width: 768px) {
  .mobile-menu .nav-auth {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 12px;
  }
  .mobile-menu .btn-scholarship,
  .mobile-menu .btn-register {
    border-radius: 12px;
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    color: #fff;
    font-size: 15px;
  }
  /* Hide desktop auth buttons */
  .navbar .nav-inner .nav-auth {
    display: none;
  }
}
/*
HERO / BANNER SLIDER
*/
.slider-section {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #0F172A;
  /* no margin-top / padding-top here — body handles it */
}
@media (min-width: 576px) {
  .slider-section {
    height: 340px;
  }
}
@media (min-width: 768px) {
  .slider-section {
    height: 460px;
  }
}
@media (min-width: 992px) {
  .slider-section {
    height: 580px;
  }
}
@media (min-width: 1200px) {
  .slider-section {
    height: 640px;
  }
}

.slider-track {
  height: 100%;
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.slide {
  position: relative;
  height: 100%;
  min-width: 100%;
  overflow: hidden;
}
.slide img {
  width: 100%;
  height: 100%;
  display: block;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center;
}
.slide::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.slide-content {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 28px;
  left: 16px;
  color: #FFFFFF;
}
@media (min-width: 576px) {
  .slide-content {
    right: 24px;
    bottom: 32px;
    left: 24px;
  }
}
@media (min-width: 768px) {
  .slide-content {
    right: 60px;
    bottom: 48px;
    left: 60px;
    max-width: 680px;
  }
}
@media (min-width: 992px) {
  .slide-content {
    bottom: 64px;
    left: 80px;
  }
}
.slide-content .slide-badge {
  margin-bottom: 10px;
  border-radius: 20px;
  display: inline-block;
  padding: 4px 12px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.7rem;
  background: #1A9CD0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.slide-content h2 {
  margin-bottom: 10px;
  font-weight: 800;
  font-size: clamp(1rem, 4vw, 2.4rem);
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.slide-content p {
  margin-bottom: 20px;
  display: none;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.8rem, 2vw, 1rem);
  line-height: 1.6;
}
@media (min-width: 768px) {
  .slide-content p {
    display: block;
  }
}
.slide-content .slide-btn {
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.85rem;
  gap: 8px;
  background: #1A9CD0;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .slide-content .slide-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}
.slide-content .slide-btn:hover {
  background: #0087C8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.slider-btn {
  position: absolute;
  z-index: 3;
  top: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .slider-btn {
    width: 50px;
    height: 50px;
  }
}
.slider-btn:hover {
  border-color: #1A9CD0;
  background: #1A9CD0;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
}
.slider-btn::before {
  width: 9px;
  height: 9px;
  display: block;
  content: "";
  border-top: 2.5px solid #FFFFFF;
  border-right: 2.5px solid #FFFFFF;
}
@media (min-width: 768px) {
  .slider-btn::before {
    width: 11px;
    height: 11px;
  }
}
.slider-btn.prev {
  left: 10px;
}
@media (min-width: 768px) {
  .slider-btn.prev {
    left: 18px;
  }
}
.slider-btn.prev::before {
  transform: rotate(-135deg) translate(-1px, 1px);
}
.slider-btn.next {
  right: 10px;
}
@media (min-width: 768px) {
  .slider-btn.next {
    right: 18px;
  }
}
.slider-btn.next::before {
  transform: rotate(45deg) translate(-1px, 1px);
}

.slider-dots {
  position: absolute;
  z-index: 3;
  bottom: 12px;
  left: 50%;
  display: flex;
  transform: translateX(-50%);
  gap: 7px;
}
@media (min-width: 768px) {
  .slider-dots {
    bottom: 18px;
    gap: 9px;
  }
}
.slider-dots button {
  border: none;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  padding: 0;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .slider-dots button {
    width: 10px;
    height: 10px;
  }
}
.slider-dots button:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: scale(1.2);
}
.slider-dots button.active {
  border-radius: 4px;
  width: 22px;
  background: #1A9CD0;
}

/* =========================================================
SCROLLBAR
========================================================= */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #F5FCFF;
}

::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background: #1A9CD0;
}

/* =========================================================
FOOTER
FIX 5 — footer must have position:relative (default) and
NO negative margin/top that could pull it up into navbar.
overflow:hidden on .footer can clip box-shadow;
use
overflow:clip instead so content stays within bounds.
========================================================= */
.footer {
  position: relative;
  z-index: 1;
  padding: 64px 0 0;
  color: #FFFFFF;
  /* ← ensures stacking is correct   */
  /* ← below navbar (z-index:1000)   */
  background: #1A1A2E;
  overflow: clip;
  /* clip instead of hidden — safer  */
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 48px;
}

.footer-col {
  flex: 1 1 200px;
}
.footer-col h4 {
  margin-bottom: 20px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.29rem;
  letter-spacing: 0.01em;
}
.footer-col ul {
  margin: 0;
  display: flex;
  flex-direction: column;
  padding: 0;
  gap: 14px;
  list-style: none;
}
.footer-col li {
  color: rgba(255, 255, 255, 0.72);
  list-style: none;
}
.footer-col li::marker {
  display: none;
  content: "";
}
.footer-col a {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.09rem;
  gap: 10px;
  transition: all 0.3s ease;
}
.footer-col a:hover {
  color: #1A9CD0;
  transform: translateX(4px);
}
.footer-col i {
  color: #FFFFFF;
  font-size: 0.85rem;
}

.footer-logo {
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.8rem;
  gap: 6px;
}
.footer-logo .logo-ny {
  color: #1A9CD0;
}
.footer-logo .logo-24 {
  color: #FFFFFF;
  font-size: 1.5rem;
}

.footer-brand p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 1rem;
  max-width: 300px;
  line-height: 1.9;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.social-icons a {
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}
.social-icons a:hover {
  background: #1A9CD0;
  transform: translateY(-3px);
}
.social-icons a i {
  color: #FFFFFF;
  font-size: 1.5rem;
}

.footer-col ul li a i {
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  font-size: 1.01rem;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.footer-col ul li a:hover i {
  background: #1A9CD0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.8;
}
.footer-contact-list i {
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  font-size: 1rem;
  min-width: 34px;
  background: rgba(255, 255, 255, 0.08);
}
.footer-contact-list span, .footer-contact-list a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.footer-bottom {
  margin-top: 56px;
  padding: 22px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.8;
}
.footer-bottom strong {
  color: #FFFFFF;
}
.footer-bottom .tripledots {
  color: white;
  transition: all 0.3s ease;
}
.footer-bottom .tripledots:hover {
  color: #FFFFFF;
}

/* =========================================================
FLOATING WHATSAPP
========================================================= */
.floating-whatsapp {
  position: fixed;
  z-index: 1001;
  right: 18px;
  bottom: 180px;
  border-radius: 50%;
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #25D366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: wpPulse 2.2s infinite;
}
.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55);
}
.floating-whatsapp i {
  color: #FFFFFF;
  font-size: 3.2rem;
}

@keyframes wpPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
/* =========================================================
MOBILE  ≤ 767px
========================================================= */
@media (max-width: 767px) {
  .slide-content {
    right: 14px;
    bottom: 24px;
    left: 14px;
  }
  .slider-btn {
    display: none;
  }
  .footer {
    padding: 44px 0 0;
  }
  .footer-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }
  .footer-col {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
  .footer-col ul,
  .footer-contact-list {
    align-items: flex-start;
    gap: 12px;
  }
  .footer-col ul li,
  .footer-contact-list li {
    width: 100%;
  }
  .footer-col ul li a,
  .footer-contact-list li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
  }
  .footer-brand p {
    max-width: 100%;
  }
  .social-icons {
    justify-content: flex-start;
  }
  .footer-bottom {
    margin-top: 28px;
    padding: 16px 0;
  }
  .floating-whatsapp {
    right: 12px;
    bottom: 150px;
    width: 75px;
    height: 75px;
  }
  .floating-whatsapp i {
    font-size: 3.4rem;
  }
}
/* =========================================================
EXTRA SMALL  ≤ 400px
========================================================= */
@media (max-width: 400px) {
  body {
    padding-top: 58px;
  }
  .navbar .nav-inner {
    height: 70px;
  }
  .nav-logo img {
    height: 67px;
  }
  .hamburger {
    width: 38px;
    height: 38px;
    gap: 4px;
  }
  .hamburger span {
    width: 17px;
  }
  .hamburger.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .mobile-menu {
    width: 100vw;
    padding-top: 85px;
    padding-bottom: 28px;
  }
  .mobile-menu a {
    font-size: 1.2rem;
  }
  .slider-section {
    height: 210px;
  }
}
/* =========================================================
CONTACT SECTION
========================================================= */
.contact-section {
  padding: 80px 0;
  background: white;
}
@media (min-width: 768px) {
  .contact-section {
    padding: 100px 0;
  }
}

/* =========================================================
CONTACT WRAPPER
========================================================= */
.contact-wrapper {
  display: grid;
  gap: 40px;
}
@media (min-width: 992px) {
  .contact-wrapper {
    align-items: start;
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================================================
LEFT SIDE
========================================================= */
.contact-info h2 {
  margin: 14px 0 18px;
  color: #1A1A2E;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}
.contact-info > p {
  margin-bottom: 34px;
  color: #4A4A68;
  font-size: 1rem;
  line-height: 1.9;
  max-width: 560px;
}

/* =========================================================
CONTACT LIST
========================================================= */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* =========================================================
CONTACT ITEM
========================================================= */
.contact-item {
  border: 1px solid #CFEFFF;
  border-radius: 22px;
  display: flex;
  align-items: flex-start;
  padding: 22px;
  gap: 18px;
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: all 0.3s ease;
}
.contact-item:hover {
  transform: translateY(-6px);
}
.contact-item:hover .contact-icon {
  background: #1A9CD0;
}
.contact-item:hover .contact-icon i {
  color: #FFFFFF;
}

/* =========================================================
ICON
========================================================= */
.contact-icon {
  border-radius: 50%;
  width: 62px;
  height: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 62px;
  background: #DDF4FF;
  transition: all 0.3s ease;
}
.contact-icon i {
  color: #1A9CD0;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

/* =========================================================
CONTENT
========================================================= */
.contact-content h4 {
  margin-bottom: 8px;
  color: #1A1A2E;
  font-weight: 700;
  font-size: 1.1rem;
}
.contact-content p,
.contact-content a {
  color: #4A4A68;
  font-size: 1.08rem;
  line-height: 1.8;
  transition: all 0.3s ease;
}
.contact-content a:hover {
  color: #1A9CD0;
}

/* =========================================================
FORM WRAPPER
========================================================= */
.contact-form-wrapper {
  border: 1px solid #CFEFFF;
  border-radius: 28px;
  padding: 34px;
  background: #FFFFFF;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);
}

/* =========================================================
FORM
========================================================= */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* =========================================================
FORM GROUP
========================================================= */
.form-group input,
.form-group textarea {
  border: 1px solid #dbe4f0;
  border-radius: 16px;
  width: 100%;
  padding: 16px 18px;
  color: #1A1A2E;
  font-family: inherit;
  font-size: 1rem;
  background: #f8fafc;
  outline: none;
  transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #1A9CD0;
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}
.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

/* =========================================================
BUTTON
========================================================= */
.contact-btn {
  border: none;
  border-radius: 16px;
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  background: #1A9CD0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-btn:hover {
  background: #0087C8;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.22);
}

/* =========================================================
MAP
========================================================= */
.contact-map {
  margin-top: 50px;
  border: 1px solid #CFEFFF;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);
}
.contact-map iframe {
  width: 100%;
  display: block;
}

/* =========================================================
RESPONSIVE
========================================================= */
@media (max-width: 991px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .contact-section {
    padding: 70px 0;
  }
  .contact-wrapper {
    gap: 30px;
  }
  .contact-form-wrapper {
    border-radius: 24px;
    padding: 24px;
  }
  .contact-item {
    padding: 18px;
  }
  .contact-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
  }
  .contact-map {
    margin-top: 40px;
  }
  .contact-map iframe {
    height: 350px;
  }
}
@media (max-width: 480px) {
  .contact-info h2 {
    font-size: 1.8rem;
  }
  .contact-info > p {
    font-size: 0.94rem;
  }
  .contact-item {
    border-radius: 20px;
    gap: 14px;
  }
  .contact-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }
  .contact-icon i {
    font-size: 1.1rem;
  }
  .contact-content h4 {
    font-size: 1rem;
  }
  .contact-content p,
  .contact-content a {
    font-size: 1.06rem;
  }
  .form-group input,
  .form-group textarea {
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 0.95rem;
  }
  .contact-btn {
    padding: 15px 20px;
    font-size: 0.95rem;
  }
  .contact-map {
    border-radius: 22px;
  }
  .contact-map iframe {
    height: 300px;
  }
}

/*# sourceMappingURL=contact.css.map */
