* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==============================
   NAVIGATION BAR - SOLID STYLE
============================== */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  background: #f9f9f9;
  color: #333;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}

/* Navbar container */
.navbar {
  background: lch(100% 0.01 296.81); /* Dark navy */
  width: 100%;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  position: relative;
  padding-bottom: -15px;
}

/* Add subtle line under navbar content */
.navbar .container::after {
  content: "";
  position: absolute;
  bottom: 0; /* stays inside the navbar */
  left: 4%; /* aligns with padding */
  width: 90%; /* same inner width */
  height: 0.5px;
  background-color: #2b2a2a76; /* gold line */
  border-radius: 2px;
   bottom: 10px;
}



/* Logo */
.logo a {
  color: #f30b23;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  margin-left: auto;
}

.nav-links li a {
  color: #000;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #f7c04a;
}

/* Booking button */
.booking-btn {
  padding: 10px 6px !important;
  background: #f7c04a;
  color: #000 !important;
  border-radius: 7px;
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: none !important; /* force normal text */
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.booking-btn:hover {
  background: #eab308;
}

/* Mobile menu icon */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  transition: transform 0.4s ease;
}

.menu-toggle span {
  width: 28px;
  height: 4.5px;
  background: #f7c04a;
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
    transition: all 0.1s ease;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  /* ============================
   HAMBURGER TO X ANIMATION
============================ */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .menu-toggle span {
    transition: all 0.3s ease;
  }
}


/* ---------- Global Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #111;
  background-color: #fff;
  line-height: 1.6;
}

/* ---------- Header ---------- */
.page-header {
  background: #000;
  color: #fff;
  padding: 1rem 0;
}

.page-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  margin: auto;
}

.page-header .logo {
  font-weight: 700;
  color: #f7c04a;
  text-decoration: none;
  font-size: 1.5rem;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 1.5rem;
  font-weight: 500;
}

.main-nav a.active,
.main-nav a:hover {
  color: #f7c04a;
}
/* Gallery Page Styles */
.gallery-hero {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(52, 152, 219, 0.8) 100%), 
                url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 60px 0 40px;
}

.gallery-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.gallery-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* ==============================
   GALLERY PAGE STYLES
============================== */

/* Gallery Hero Section */
.gallery-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../images/WhatsApp\ Image\ 2025-10-18\ at\ 14.23.00_28da0d29.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 90px 0 100px;
    margin-top: 80px;
}

.gallery-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.gallery-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Tab Navigation */
.gallery-tabs {
    background: #f8f9fa;
    padding: 40px 0;
    border-bottom: 1px solid #e9ecef;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.tab-btn {
    padding: 15px 40px;
    background: white;
    border: 2px solid #f7c04a;
    color: #000;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
}

.tab-btn:hover {
    background: #f7c04a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(247, 192, 74, 0.3);
}

.tab-btn.active {
    background: #f7c04a;
    color: #000;
    box-shadow: 0 5px 15px rgba(247, 192, 74, 0.3);
}

/* Tab Content */
.tab-content {
    display: none;
    padding: 80px 0;
    background: #f1efef55;
}

.tab-content.active {
    display: block;
}

/* Photos Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 0 10px; /* Added side padding for mobile */
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 3/3; /* Changed to 4/3 for better proportions */
    background: #f8f9fa;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure images fill container properly */
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px 12px 12px;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .image-overlay {
    transform: translateY(0);
    opacity: 1;
}

.image-caption {
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
        padding: 0 15px; /* More padding on mobile */
    }
    
    .gallery-item {
        border-radius: 8px;
        aspect-ratio: 3/3; /* Maintain aspect ratio */
    }
    
    .gallery-item:hover {
        transform: translateY(-3px); /* Less lift on mobile */
    }
    
    .image-overlay {
        padding: 15px 10px 10px;
    }
    
    .image-caption {
        font-size: 0.9rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr; /* Single column on very small screens */
        gap: 12px;
        padding: 0 10px;
    }
    
    .gallery-item {
        aspect-ratio: 4/3;
    }
    
    .image-overlay {
        padding: 12px 8px 8px;
    }
    
    .image-caption {
        font-size: 1rem;
    }
}


/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 25px;
    text-align: center;
}

.video-info h3 {
    color: #111;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.video-info p {
    color: #666;
    opacity: 0.8;
    line-height: 1.6;
}

/* Call to Action */
.gallery-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #111 0%, #333 100%);
    color: white;
    text-align: center;
}

.gallery-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.gallery-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    text-transform: none;
}

.btn-primary {
    background: #f7c04a;
    color: #000 !important;
    box-shadow: 0 5px 15px rgba(247, 192, 74, 0.3);
}

.btn-primary:hover {
    background: #eab308;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(247, 192, 74, 0.4);
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    display: block;
    color: white;
    text-align: center;
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #f7c04a;
}


/* Responsive Design */
@media (max-width: 768px) {
    .gallery-hero {
        padding: 150px 0 80px;
        margin-top: 70px;
    }
    
    .gallery-hero h1 {
        font-size: 2.5rem;
    }
    
    .gallery-hero p {
        font-size: 1.1rem;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .tab-btn {
        width: 200px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 55px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gallery-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 200px;
    }
}


/* Video Styles */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
    position: relative;
    background: #000;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    cursor: pointer;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px 15px 0 0;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
}

.video-play-overlay i {
    color: white;
    font-size: 4rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.video-wrapper:hover .video-play-overlay i {
    opacity: 1;
    transform: scale(1.1);
}

/* Hide overlay when video is playing */
.video-wrapper.playing .video-play-overlay {
    opacity: 0;
    pointer-events: none;
}

.video-info {
    padding: 25px;
    text-align: center;
}

.video-info h3 {
    color: #111;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.video-info p {
    color: #666;
    opacity: 0.8;
    line-height: 1.6;
}

/* Video Controls Customization */
.video-wrapper video::-webkit-media-controls-panel {
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.video-wrapper video::-webkit-media-controls-play-button {
    background-color: #f7c04a;
    border-radius: 50%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
        padding: 0 15px; /* Add some side padding */
    }
    
    .video-item {
        border-radius: 10px;
    }
    
    .video-wrapper {
        border-radius: 10px 10px 0 0;
        aspect-ratio: 16/9; /* Maintain widescreen aspect ratio */
    }
    
    .video-wrapper video {
        border-radius: 10px 10px 0 0;
    }
    
    .video-play-overlay i {
        font-size: 2.5rem; /* Smaller play button on mobile */
    }
    
    .video-info {
        padding: 15px;
    }
    
    .video-info h3 {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    
    .video-info p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
        gap: 20px;
    }
}

/* Minimal Parallax Call to Action */
.minimal-cta {
    padding: 60px 0;
    background: linear-gradient(#000000e2, rgba(241, 240, 186, 0.068)), 
                url('../images/WhatsApp\ Image\ 2025-10-18\ at\ 14.23.00_28da0d29.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    margin-bottom: 40px;
}

.cta-content {
    max-width: 500px;
    margin: 0 auto;
}

.minimal-cta h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-btn {
    display: inline-block;
    padding: 14px 35px;
    background: #f7c04a;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #eab308;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(247, 192, 74, 0.4);
}

/* Mobile - disable parallax for performance */
@media (max-width: 768px) {
    .minimal-cta {
        padding: 50px 0;
        background-attachment: scroll;
    }
    
    .minimal-cta h3 {
        font-size: 1.7rem;
    }
    
    .cta-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}


/* Modern Footer */
.footer-modern {
  background: #111827;
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo h3 {
  font-size: 1.8rem;
  color: #f30b23;
  margin-bottom: 10px;
  font-weight: 700;
}

.footer-logo p {
  color: #9CA3AF;
  line-height: 1.6;
}

.footer-contact h4,
.footer-social h4 {
  font-size: 1.2rem;
  color: #f7c04a;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #D1D5DB;
}

.footer-contact i {
  color: #f7c04a;
  width: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  background: rgba(247, 192, 74, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #f7c04a;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #9CA3AF;
  margin-bottom: 10px;
}

.footer-links a {
  color: #f7c04a;
  text-decoration: none;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-hero-modern {
    padding: 120px 0 80px;
    margin-top: 70px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .methods-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .form-container {
    padding: 30px;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .contact-hero-modern {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .method-card {
    padding: 25px;
  }
  
  .form-container {
    padding: 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-contact p {
    justify-content: center;
  }
}