/* ================= GLOBAL ================= */
body {
  background: linear-gradient(135deg, #050b1e, #0b122d);
  font-family: 'Poppins', sans-serif;
  color: white;
  overflow-x: hidden;
}

/* ================= PREMIUM CONTACT HEADER ================= */

/* Desktop */
.contact-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:16px 22px;
    background:linear-gradient(135deg,#03162a,#001429);
    border-radius:0 0 22px 22px;
    box-shadow:0 12px 35px rgba(0,0,0,.55);
}

.contact-header .rc-logo{
    color:#00eaff;
    font-size:28px;
}

.ch-center{
    text-align:center;
    color:white;
}
.ch-center .welcome{
    font-size:13px;
    color:#7fdfff;
}
.ch-center .rc-title{
    font-size:18px;
    letter-spacing:.5px;
}

.desktop-menu a{
    color:white;
    margin-left:22px;
    text-decoration:none;
    font-weight:600;
    position:relative;
}
.desktop-menu a.active,
.desktop-menu a:hover{
    color:#00eaff;
}

/* Mobile */
.contact-hamburger{
    display:none;
}

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

.desktop-menu{
    display:none;
}

.contact-hamburger{
    display:flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
    border-radius:10px;
    background:rgba(0,200,255,.18);
    color:#00eaff;
    font-size:22px;
    border:none;
}

/* Drawer */
.mobile-contact-drawer{
    position:fixed;
    top:0;
    right:-260px;
    width: 150px;
    height:100vh;
    background:linear-gradient(180deg,#03162a,#001429);
    padding:90px 24px 24px;
    display:flex;
    flex-direction:column;
    gap:18px;
    transition:.35s cubic-bezier(.4,0,.2,1);
    z-index:3000;
}

.mobile-contact-drawer a{
    color:white;
    text-decoration:none;
    font-size:16px;
}

/* Open state */
.mobile-contact-drawer.show{
    right:0;
}

}

/* ================= PAGE TITLE ================= */
.page-title {
  color: #4db8ff;
  text-shadow: 0 0 15px #4db8ff;
}

.divider {
  width: 120px;
  height: 4px;
  border-radius: 5px;
  margin: 10px auto;
  background: linear-gradient(90deg, transparent, #4db8ff, transparent);
  box-shadow: 0 0 10px #4db8ff;
}

/* ================= GLASS CARD ================= */
.glass-card {
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 35px;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 0 25px rgba(0, 150, 255, 0.4);
  transition: 0.3s;
}

.glass-card:hover {
  box-shadow: 0 0 45px rgba(0, 170, 255, 0.8);
  transform: scale(1.02);
}

/* ================= FORM ================= */
.form-control {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
}

.form-control:focus {
  border-color: #4db8ff;
  box-shadow: 0 0 10px #4db8ff;
}

/* ================= CONTACT BOX ================= */
.contact-box {
  background: linear-gradient(145deg, rgba(0, 217, 255, 0.10), rgba(0, 0, 0, 0.35));
  border-radius: 25px;
  padding: 30px;
  border: 2px solid rgba(0, 255, 255, 0.45);
  box-shadow:
    0 0 30px rgba(0, 255, 255, 0.35),
    inset 0 0 25px rgba(0, 255, 255, 0.2),
    0 0 60px rgba(0, 180, 255, 0.3);
  backdrop-filter: blur(18px);
  transition: 0.4s ease-in-out;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

.contact-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px;
  padding: 2px;
  background: linear-gradient(130deg, #00eaff, #007bff, #00fff7, #00ccff);
  background-size: 300% 300%;
  animation: neonMove 6s linear infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

@keyframes neonMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.contact-box:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 45px rgba(0, 255, 255, 0.75),
    inset 0 0 25px rgba(0, 255, 255, 0.35),
    0 0 90px rgba(0, 255, 255, 0.45);
}

.box-icon {
  font-size: 55px;
  margin-bottom: 15px;
  text-shadow: 0 0 12px #00eaff, 0 0 30px #00aaff;
  display: block;
  text-align: center;
}

.contact-box h3 {
  color: #b4eaff;
  text-shadow: 0 0 12px #00d9ff;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

/* ================= BUTTON ================= */
.btn-send {
  background: linear-gradient(90deg, #00baff, #00e7ff);
  border: none;
  padding: 12px;
  border-radius: 12px;
  width: 100%;
  font-weight: 700;
  font-size: 18px;
  color: white;
  box-shadow: 0 0 20px rgba(0,200,255,0.6);
  margin-top: 15px;
  transition: 0.3s;
}

.btn-send:hover {
  box-shadow: 0 0 35px rgba(0,255,255,0.9);
  transform: scale(1.04);
}

/* ================= SOCIAL ICONS ================= */
.social-icons i {
  font-size: 32px;
  color: #00eaff;
  text-shadow: 0 0 15px #00eaff;
  margin-right: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.social-icons i:hover {
  transform: scale(1.2);
  color: white;
  text-shadow: 0 0 25px #ffffff;
}

/* ================= MAP ================= */
iframe {
  width: 100%;
  height: 250px;
  border-radius: 15px;
  border: none;
  box-shadow: 0 0 25px rgba(0, 150, 255, 0.4);
}

/* ================= FOOTER ================= */
.contact-footer {
  margin-top: 50px;
  padding: 40px 0;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.25);
  color: #cde9ff;
  position: relative;
}

.contact-footer h4,
.contact-footer h5 {
  color: #4db8ff;
}

.contact-footer a {
  color: #cde9ff;
  text-decoration: none;
}

.contact-footer a:hover {
  color: #4db8ff;
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px #25d366;
  transition: 0.3s;
  z-index: 100;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px #25d366;
}
/* ========== CONTACT HEADER FINAL FIX ========== */

/* Desktop view */
@media(min-width:769px){

/* Show only desktop menu */
.contact-header .desktop-menu{
    display:flex !important;
}

/* Hide hamburger & mobile drawer */
.contact-header .contact-hamburger,
.contact-header .mobile-contact-drawer{
    display:none !important;
}

}

/* Mobile view */
@media(max-width:768px){

/* Hide desktop menu */
.contact-header .desktop-menu{
    display:none !important;
}

/* Show hamburger */
.contact-header .contact-hamburger{
    display:flex !important;
}

/* Mobile drawer hidden by default */
.contact-header .mobile-contact-drawer{
    display:flex;
    right:-260px;
}

/* Show on click */
.contact-header .mobile-contact-drawer.show{
    right:0;
}

}
/* ===== FLOATING WHATSAPP BUTTON ===== */
.floating-whatsapp{
    position:fixed;
    right:16px;
    bottom:18px;
    width:54px;
    height:54px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    box-shadow:0 0 0 0 rgba(37,211,102,.7);
    animation:pulseWA 1.8s infinite;
    z-index:5000;
    text-decoration:none;
}

@keyframes pulseWA{
  0%{box-shadow:0 0 0 0 rgba(37,211,102,.7);}
  70%{box-shadow:0 0 0 14px rgba(37,211,102,0);}
  100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}

.floating-whatsapp:hover{
    transform:scale(1.05);
}
/* Drawer Back Button */
.drawer-close{
    background:none;
    border:0;
    color:#00eaff;
    font-size:16px;
    text-align:left;
    margin-bottom:18px;
    cursor:pointer;
}
