/* ===== HEADER ===== */
.main-header {
width: 100%;
background: rgba(255, 255, 255, 0.95);
position: fixed;
top: 0;
left: 0;
z-index: 999;
backdrop-filter: blur(8px);
border-bottom: 1px solid #eee;
}

.container {
max-width: 1200px;
margin: auto;
padding: 0 20px;
}

.nav-container {
display: flex;
justify-content: space-between;
align-items: center;
}

/* Right side group */
.right-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logo */
.logo a {
color: #111;
font-size: 22px;
font-weight: bold;
text-decoration: none;
}

/* Menu inline */
.nav-menu ul li a {
  position: relative;
  color: #222;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 5px 0;
  transition: 0.3s ease;
}

.nav-menu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #00bcd4;
  transition: width 0.3s ease;
}

.nav-menu ul li a:hover::after {
  width: 100%;
}

.nav-menu ul li a.active {
  color: #00bcd4;
}

.nav-menu ul {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* CTA Button */
.btn-primary {
background: #00bcd4;
color: #fff;
padding: 10px 18px;
border-radius: 25px;
text-decoration: none;
transition: 0.3s;
}

@media (max-width: 768px) {
  .right-section {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  ..right-section.active {
    display: flex;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    width: 100%;
    left: 0;
  }

  .nav-menu ul li a {
    color: #333;
  }
}

.btn-primary:hover {
background: #0097a7;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: #333;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  /* Hide right section initially */
  .right-section {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
  }

  /* Show when active */
  .right-section.active {
    display: flex;
  }

  /* Menu list */
  .nav-menu ul {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .nav-menu ul li {
    margin: 10px 0;
  }

  /* CTA button */
  .cta {
    margin-top: 15px;
    display: block;
  }
}

.right-section.active {
display: flex;
}
}

body {
  padding-top: 70px;
}

/* ===== FOOTER ===== */
.main-footer {
background: #0a0a0a;
color: #ccc;
margin-top: 60px;
}

.footer-container {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
padding: 50px 20px;
}

.footer-col h3,
.footer-col h4 {
color: #fff;
margin-bottom: 15px;
}

.footer-col p {
font-size: 14px;
line-height: 1.6;
}

.footer-col ul {
list-style: none;
padding: 0;
}

.footer-col ul li {
margin-bottom: 10px;
font-size: 14px;
}

.footer-col ul li a {
color: #ccc;
text-decoration: none;
transition: 0.3s;
}

.footer-col ul li a:hover {
color: #00bcd4;
}

/* Bottom */
.footer-bottom {
text-align: center;
padding: 15px;
border-top: 1px solid #222;
font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
.footer-container {
grid-template-columns: 1fr;
text-align: center;
}
}

/* HERO */
.hero {
height: 90vh;
background: url('images/services-hero.jpg') center/cover;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: #fff;
}

.hero h1 {
font-size: 48px;
}

.hero p {
margin: 15px 0;
}

/* SERVICES */
.services {
padding: 60px 20px;
text-align: center;
}

.service-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
margin-top: 30px;
}

.service-card {
padding: 25px;
background: #f7f7f7;
border-radius: 10px;
}

/* PACKAGES */
.packages {
padding: 60px 20px;
text-align: center;
}

.package-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
}

.package-card {
background: #fff;
border-radius: 10px;
}

.package-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* WHY US */
.why-us {
padding: 60px 20px;
background: #111;
color: #fff;
text-align: center;
}

.why-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
margin-top: 20px;
}

/* ENQUIRY */
.enquiry {
padding: 60px 20px;
text-align: center;
}

.enquiry-form {
max-width: 500px;
margin: auto;
display: flex;
flex-direction: column;
gap: 15px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
padding: 12px;
border: 1px solid #ccc;
border-radius: 5px;
}

.enquiry-form button {
background: #00bcd4;
color: #fff;
padding: 12px;
border: none;
cursor: pointer;
}

/* CTA */
.cta-banner {
background: #00bcd4;
color: #fff;
text-align: center;
padding: 50px 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
.service-grid,
.package-grid,
.why-grid {
grid-template-columns: 1fr;
}

.hero h1 {
font-size: 28px;
}
}

.hero {
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
}





/* HERO */
.hero {
height: 90vh;
background: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470') center/cover;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
position: relative;
color: #fff;
}

.hero::before {
content: "";
position: absolute;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.6);
}

.hero-content {
position: relative;
z-index: 2;
}

.hero h1 {
font-size: 42px;
}

.hero-btns {
margin-top: 20px;
}

.btn-secondary {
border: 1px solid #fff;
padding: 10px 18px;
margin-left: 10px;
color: #fff;
text-decoration: none;
}

/* TRUST */
.trust {
padding: 40px;
text-align: center;
background: #f5f5f5;
}

.trust-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
margin-top: 20px;
}

/* PACKAGES */
.package-card {
position: relative;
border-radius: 10px;
}

.package-info {
position: absolute;
bottom: 0;
color: #fff;
padding: 15px;
background: linear-gradient(transparent, rgba(0,0,0,0.8));
width: 100%;
}

/* TESTIMONIAL */
.testimonials {
padding: 60px;
background: #111;
color: #fff;
text-align: center;
}

.testimonial-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}

.testimonial-card {
background: #222;
padding: 20px;
border-radius: 10px;
}

/* WHATSAPP FLOAT */
/* FLOAT BUTTON */
.wa-button {
position: fixed;
bottom: 20px;
right: 20px;
background: #25D366;
color: #fff;
font-size: 24px;
width: 55px;
height: 55px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
z-index: 999;
}

/* POPUP */
.wa-popup {
position: fixed;
bottom: 90px;
right: 20px;
width: 300px;
background: #fff;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
display: none;
overflow: hidden;
z-index: 999;
}

/* HEADER */
.wa-header {
background: #25D366;
color: #fff;
padding: 12px;
display: flex;
justify-content: space-between;
align-items: center;
}

.wa-header button {
background: none;
border: none;
color: #fff;
font-size: 18px;
cursor: pointer;
}

/* BODY */
.wa-body {
padding: 15px;
font-size: 14px;
}

/* BUTTON */
.wa-chat-btn {
display: block;
background: #25D366;
color: #fff;
text-align: center;
padding: 12px;
text-decoration: none;
}


/* MOBILE */
@media (max-width: 768px) {
.trust-grid,
.testimonial-grid {
grid-template-columns: 1fr;
}

.hero h1 {
font-size: 26px;
}
}

.about-seo {
padding: 60px 20px;
background: #f9fbfc;
}

.about-seo h1 {
text-align: center;
font-size: 32px;
margin-bottom: 15px;
}

.about-seo .intro {
text-align: center;
max-width: 800px;
margin: auto;
color: #555;
font-size: 16px;
}

.about-grid {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 40px;
margin-top: 40px;
}

.about-content h2 {
margin-bottom: 10px;
}

.about-content h3 {
margin-top: 20px;
}

.about-content p {
margin-bottom: 15px;
line-height: 1.7;
color: #444;
}

.about-highlight {
background: #fff;
padding: 25px;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.about-highlight ul {
list-style: none;
padding: 0;
}

.about-highlight ul li {
margin-bottom: 10px;
font-size: 15px;
}

.cta-box {
margin-top: 20px;
text-align: center;
}

.closing-text {
text-align: center;
margin-top: 40px;
}

.closing-text h4 {
margin-top: 10px;
color: #00bcd4;
}

/* MOBILE */
@media (max-width: 768px) {
.about-grid {
grid-template-columns: 1fr;
}

.about-seo h1 {
font-size: 24px;
}
}

.flight-section {
padding: 60px 20px;
background: #ffffff;
}

.flight-grid {
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
gap: 40px;
}

/* LEFT CONTENT */
.flight-content h2 {
font-size: 28px;
margin-bottom: 15px;
}

.flight-content .intro {
font-size: 16px;
color: #555;
margin-bottom: 15px;
}

.flight-content p {
color: #444;
line-height: 1.7;
margin-bottom: 15px;
}

.flight-points {
list-style: none;
padding: 0;
margin: 20px 0;
}

.flight-points li {
margin-bottom: 10px;
font-size: 15px;
}

/* IMAGE */
.flight-image img {
width: 100%;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* MOBILE */
@media (max-width: 768px) {
.flight-grid {
grid-template-columns: 1fr;
}

.flight-content h2 {
font-size: 22px;
}
}

/* New */
/* HERO */
.services-hero {
padding: 100px 20px 60px;
text-align: center;
background: linear-gradient(to right, #00bcd4, #0097a7);
color: #fff;
}

/* BLOCK */
.service-block {
padding: 70px 20px;
}

.service-block.light {
background: #f7f7f7;
}

.grid-2 {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

/* CONTENT */
.content h2 {
margin-bottom: 10px;
}

.content p {
margin-bottom: 15px;
color: #444;
}

.content ul {
list-style: none;
padding: 0;
}

.content ul li {
margin-bottom: 8px;
}

/* IMAGE */
.image img {
width: 100%;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* CTA */
.services-cta {
text-align: center;
padding: 60px;
background: #111;
color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
.grid-2 {
grid-template-columns: 1fr;
}
}

.about-hero {
position: relative;
height: 80vh;
background: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470') center/cover no-repeat;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}

/* DARK OVERLAY */
.about-overlay {
position: absolute;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.6);
}

/* CONTENT */
.about-hero-content {
position: relative;
z-index: 2;
color: #fff;
max-width: 800px;
padding: 20px;
}

.about-hero-content h1 {
font-size: 42px;
margin-bottom: 15px;
}

.about-hero-content p {
font-size: 18px;
margin-bottom: 25px;
color: #ddd;
}

/* MOBILE */
@media (max-width: 768px) {
.about-hero-content h1 {
font-size: 26px;
}

.about-hero {
height: 60vh;
}
}

/* HERO */
.contact-hero {
position: relative;
height: 60vh;
background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') center/cover;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
margin-bottom: 40px;
}

.contact-hero .overlay {
position: absolute;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.6);
}

.contact-hero-content {
position: relative;
color: #fff;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-section {
  padding: 80px 20px;
}

/* INFO */
.contact-info h2 {
margin-bottom: 10px;
}

.info-box {
margin-top: 20px;
}

.info-box h4 {
margin-bottom: 5px;
}

/* FORM */
.contact-form-box {
background: #fff;
padding: 30px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form {
display: flex;
flex-direction: column;
gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
padding: 12px;
border: 1px solid #ccc;
border-radius: 6px;
}

.contact-form button {
background: #00bcd4;
color: #fff;
padding: 12px;
border: none;
cursor: pointer;
}

/* CTA */
.contact-cta {
text-align: center;
padding: 50px;
background: #111;
color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}


.services-hero {
position: relative;
height: 50vh;
background: url(images/services-hero.png) center/cover no-repeat;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}

/* DARK OVERLAY */
.services-overlay {
position: absolute;
width: 100%;
height: 100%;
background: linear-gradient(
to right,
rgba(0, 0, 0, 0.7),
rgba(0, 0, 0, 0.4)
);
}

/* CONTENT */
.services-hero-content {
position: relative;
z-index: 2;
color: #fff;
max-width: 800px;
padding: 20px;
}

.services-hero-content h1 {
font-size: 40px;
margin-bottom: 15px;
}

.services-hero-content p {
font-size: 18px;
color: #ddd;
margin-bottom: 25px;
line-height: 1.6;
}

/* BUTTONS */
.hero-buttons {
display: flex;
justify-content: center;
gap: 15px;
}

.btn-outline {
border: 1px solid #fff;
color: #fff;
padding: 10px 18px;
text-decoration: none;
border-radius: 25px;
transition: 0.3s;
}

.btn-outline:hover {
background: #fff;
color: #000;
}

/* MOBILE */
@media (max-width: 768px) {
.services-hero {
height: 60vh;
}

.services-hero-content h1 {
font-size: 26px;
}

.services-hero-content p {
font-size: 15px;
}

.hero-buttons {
flex-direction: column;
}
}




.social-links {
margin-top: 20px;
display: flex;
gap: 15px;
}

/* BASE STYLE */
.social {
width: 42px;
height: 42px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
text-decoration: none;
font-size: 18px;
color: #fff;
transition: 0.3s ease;
}

/* BRAND COLORS */
.facebook {
background: #1877f2;
}

.instagram {
background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.youtube {
background: #ff0000;
}

.whatsapp {
background: #25d366;
}

/* HOVER EFFECT (PREMIUM) */
.social:hover {
transform: translateY(-5px) scale(1.1);
box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}


.map-section iframe {
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.footer-social {
  width: 100%;
  display: flex;
  justify-content: center;   /* CENTER horizontally */
  align-items: center;
  margin: 30px 0;
}

/* Inner container */
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}