/* ===== 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 {
  display: flex;
  gap: 20px;
}

.nav-menu ul li a {
color: #333;
text-decoration: none;
font-size: 15px;
transition: 0.3s;
}

.nav-menu ul li a:hover {
color: #00bcd4;
}

/* 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;
  }

  .nav-menu.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: 24px;
color: white;
cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
.nav-menu {
position: absolute;
top: 70px;
left: 0;
width: 100%;
background: #111;
display: none;
flex-direction: column;
}

.nav-menu ul {
flex-direction: column;
text-align: center;
padding: 20px 0;
}

.nav-menu ul li {
margin: 10px 0;
}

.menu-toggle {
display: block;
}

.cta {
display: none;
}

.nav-menu.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('https://images.unsplash.com/photo-1501785888041-af3ef285b470') 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 */
.whatsapp-float {
position: fixed;
bottom: 20px;
right: 20px;
background: #25D366;
color: white;
font-size: 24px;
padding: 15px;
border-radius: 50%;
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;
  }
}
