:root {
  --primary: #E8B923;          /* Gold from logo */
  --primary-dark: #C99A0E;     /* Darker gold for hover */
  --primary-light: #F5D76E;    /* Soft gold */
  --navy: #0B2C6B;             /* Deep navy from logo */
  --navy-dark: #071E4A;        /* Darker navy */
  --navy-light: #1A4A9E;       /* Lighter navy */
  --secondary: #6B7280;        /* Cool gray */
  --light-bg: #F8FAFC;         /* Soft grayish white */
  --white: #FFFFFF;
  --dark: #1E293B;
  --border: #E2E8F0;
}

body { 
  background-color: var(--white); 
  font-family: "Lato", sans-serif;
  color: var(--dark);
  scroll-behavior: smooth;
}

h2{ font-size: 3.3rem; font-weight: 900; color: var(--navy); }
h3{ font-size: 3.3rem; font-weight: 900; color: var(--navy); }
h4{ font-size: 2.4rem; font-weight: 700; color: var(--navy); }
h5{ font-size: 1.4rem; font-weight: 600; }
a{ text-decoration: none; transition: all 0.3s ease; }

span{
  color: var(--primary);
}

/* ========== Navbar ========== */
.navbar { 
  background: var(--primary-dark);
  box-shadow: 0 4px 20px rgba(11, 44, 107, 0.25);
  padding: 8px 0;
  transition: all 0.3s ease;
}
.navbar .nav-link, 
.navbar-brand { 
  color: var(--white) !important; 
  font-weight: 500;
  position: relative;
}
.navbar .nav-link:hover { 
  color: var(--white) !important;
}
.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 10px;
}
.navbar .nav-link:hover::after {
  width: 70%;
}
.navbar .dropdown-menu {
  border: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  border-radius: 10px;
}
.navbar .dropdown-item:hover {
  background: var(--primary);
  color: var(--navy-dark);
  width: auto;
  padding: 10px;
  gap: 10px;
  
  
}

/* ========== Headline ========== */
.headline { 
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white); 
  text-align: center; 
  padding: 12px; 
  font-weight: 700; 
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

/* ========== Floating Contact Button ========== */
.floating-btn { 
  position: fixed; 
  left: 20px; 
  bottom: 20px; 
  z-index: 1050; 
}
.floating-btn .btn {
  background: var(--primary);
  border: none;
  color: var(--navy-dark);
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(232, 185, 35, 0.4);
  transition: all 0.3s ease;
}
.floating-btn .btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(232, 185, 35, 0.5);
}
.contact-popup {
  position: fixed;
  left: 20px;
  bottom: 70px;
  display: none;
  background-color: var(--white);
  border: 2px solid var(--primary);
  border-radius: 12px;
  padding: 18px;
  z-index: 1050;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  min-width: 180px;
}
.contact-popup a { 
  display: block; 
  margin-bottom: 10px; 
  color: var(--navy); 
  font-weight: 500;
}
.contact-popup a:hover { 
  color: var(--primary-dark);
  padding-left: 5px;
}

/* ========== Hero / Carousel ========== */
.carousel-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 15px;
  background: linear-gradient(to bottom, rgba(11,44,107,0.35), rgba(11,44,107,0.55));
}
.btn-outline-primary,
.btn-outline-light {
  border-width: 2px;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 50px;
  transition: all 0.35s ease;
}
.btn-outline-primary{
  border-color: var(--primary);
  color: var(--white);
  background: transparent;
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--navy-dark);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(232, 185, 35, 0.4);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-3px);
}
.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--navy-dark);
  font-weight: 600;
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
}

.carousel-caption h1 {
  margin-bottom: 25px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--primary);
  padding: 22px;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: var(--primary-dark);
  transform: scale(1.1);
}

h1 {
  font-size: 4.4rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 2px 2px 12px rgba(0,0,0,0.6);
  text-align: center;
  animation: fadeInUp 1.4s ease forwards;
}

@media (max-width: 600px) {
  h1 { font-size: 1.35rem; }
  .carousel-control-prev-icon,
  .carousel-control-next-icon { visibility: hidden !important; }
  h2{ font-size: 2.1rem; font-weight: 900; }
  h4{ font-size: 1.35rem; font-weight: 700; }
  h5{ font-size: 1.1rem; font-weight: 700; }
}

/* ========== Cards ========== */
.card { 
  border: none; 
  border-radius: 16px;
  transition: transform 0.35s ease, box-shadow 0.35s ease; 
  cursor: pointer;
  overflow: hidden;
  background: var(--white);
}
.card:hover { 
  transform: translateY(-12px); 
  box-shadow: 0 20px 40px rgba(11, 44, 107, 0.15); 
}
.service-img { 
  height: 220px; 
  object-fit: cover; 
  transition: transform 0.45s ease; 
}
.card:hover .service-img { 
  transform: scale(1.08); 
}
.card-title {
  color: var(--navy);
}

/* ========== About Image ========== */
.about-img { 
  width: 100%; 
  height: 600px;  
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(11, 44, 107, 0.12);
}

/* ========== Text Primary ========== */
.text-primary {
  color: var(--navy) !important;
}
.abt {
  position: relative;
  display: inline-block;
}
.abt::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

/* ========== Footer ========== */
footer { 
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white); 
  padding: 50px 0 30px; 
}
.footer-column h5 { 
  color: var(--primary); 
  margin-bottom: 18px; 
  font-weight: 700;
  letter-spacing: 0.5px;
}
.footer-column a { 
  color: rgba(255,255,255,0.85); 
  margin-bottom: 10px; 
  display: block;
  transition: all 0.3s ease;
}
.footer-column a:hover { 
  color: var(--primary);
  padding-left: 6px;
}
.footer-column p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}
footer hr {
  border-color: rgba(255,255,255,0.15);
}

/* ========== Animations ========== */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ========== Popup ========== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 44, 107, 0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  animation: fadeIn 0.35s ease;
}
.popup-overlay .card {
  overflow-y: visible;
  border-radius: 16px;
  border: 3px solid var(--primary) !important;
}
body.popup-open {
  overflow: hidden;
}
.popup-overlay .container {
  max-width: auto;
  overflow-y: visible;
}
@media (max-width: 768px) {
  .popup-overlay {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .popup-overlay .container {
    width: 95%;
    max-width: 95%;
  }
}

/* ========== WhatsApp Floating Button ========== */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 62px;
  height: 62px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  animation: whatsappPulse 2s infinite;
  transition: transform 0.3s ease;
}
.whatsapp-float:hover {
  background-color: #1ebe5d;
  color: #fff;
  transform: scale(1.1);
}
@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ========== Visa Page ========== */
.hero-v {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--primary) 150%);
  color: #fff;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.hero-v::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(232,185,35,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.service-card-v,
.service-card {
  border: none;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(11, 44, 107, 0.1);
  transition: all 0.4s ease;
  background: var(--white);
}
.service-card-v:hover,
.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(11, 44, 107, 0.18);
}
.service-card-v i,
.service-card i {
  color: var(--primary) !important;
  transition: transform 0.3s ease;
}
.service-card-v:hover i,
.service-card:hover i {
  transform: scale(1.15);
}
.phone-box-v {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 35px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(11, 44, 107, 0.25);
  position: relative;
  overflow: hidden;
}
.phone-box-v::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--primary);
  opacity: 0.15;
  border-radius: 50%;
}

/* ========== Tours Page ========== */
.hero-s {
  background: url('img/1.png') center/cover no-repeat;
  position: relative;
  color: #fff;
  padding: 130px 0;
}
.hero-s::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,44,107,0.85) 0%, rgba(11,44,107,0.6) 60%, rgba(232,185,35,0.35) 100%);
}
.hero-s .container { position: relative; }
.tour-card {
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 12px 30px rgba(11, 44, 107, 0.12);
  border: none;
}
.tour-card:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 20px 40px rgba(11, 44, 107, 0.2);
}
.tour-card img {
  transition: transform 0.5s ease;
}
.tour-card:hover img {
  transform: scale(1.08);
}

/* ========== Blog Cards ========== */
.blog-content {
  color: var(--dark);
}
.card .btn-primary {
  border-radius: 50px;
  padding: 8px 22px;
  font-size: 0.9rem;
}

/* ========== Extra Polish ========== */
section {
  position: relative;
}
.bg-light {
  background-color: var(--light-bg) !important;
}
.shadow {
  box-shadow: 0 10px 30px rgba(11, 44, 107, 0.08) !important;
}
.rounded {
  border-radius: 12px !important;
}

/* Smooth image loading */
img {
  max-width: 100%;
}

/* Selection color */
::selection {
  background: var(--primary);
  color: var(--navy-dark);
}
