/* ==========================================================================
   Voyagers Adventure - Global Design System & Stylesheet
   ========================================================================== */

/* 1. Root Variables & Theme Definition */
:root {
    /* Color Palette */
    --color-primary: #0d1b3e;       /* Brand Navy Dark */
    --color-primary-light: #162a5c; /* Brand Navy Mid */
    --color-secondary: #ff7a00;     /* Brand Orange Accent */
    --color-secondary-hover: #e06c00;
    --color-blue-btn: #0d1b3e;      /* Brand Navy Button */
    --color-blue-hover: #162a5c;
    
    --color-text: #2b354e;          /* Slate Dark Grey */
    --color-text-muted: #5e6d8a;    /* Cool Grey */
    --color-white: #ffffff;
    --color-bg-light: #f5f8fc;      /* Soft Light Blue-Grey */
    --color-bg-light-blue: #ebf2fa;  /* Light Blue Section Background */
    --color-bg-light-green: #eef9f2; /* Light Sage Green Section Background */
    --color-footer-bg: #111827;     /* Dark Charcoal */
    --color-border: #e2e8f0;
    
    /* Typography */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: all 0.2s ease-in-out;
    --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s ease-in-out;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* 2. Global Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

/* 3. Utility Layout & Spacing */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--color-bg-light-blue);
    color: var(--color-blue-btn);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.section-badge.bg-white-badge {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.25;
    margin-bottom: 10px;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.section-subtitle-text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.text-white {
    color: var(--color-white) !important;
}

.text-white-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.bg-light-blue {
    background-color: var(--color-bg-light-blue);
}

.bg-light-green {
    background-color: var(--color-bg-light-green);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition-normal);
    text-align: center;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-orange {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.btn-orange:hover {
    background-color: var(--color-secondary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-blue {
    background-color: var(--color-blue-btn);
    color: var(--color-white);
}

.btn-blue:hover {
    background-color: var(--color-blue-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-card {
    width: 100%;
    padding: 10px 15px;
    font-size: 0.95rem;
}

/* 4. Header Styles */
.site-header {
    background-color: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

/* Top bar */
.top-bar {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 500;
}

.top-bar-contact a:hover {
    color: var(--color-secondary);
}

.top-bar-socials {
    display: flex;
    gap: 15px;
}

.top-bar-socials a:hover {
    color: var(--color-secondary);
    transform: scale(1.1);
}

/* Navigation bar */
.main-navbar {
    padding: 15px 0;
}

.navbar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    max-height: 55px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-primary);
    padding: 6px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: var(--color-secondary);
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Hamburger button */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
}

.nav-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 3px;
    transition: var(--transition-normal);
}

/* 5. Hero Slider Section */
.hero-slider-section {
    position: relative;
    width: 100%;
    background-color: #000;
}

.slider-container {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 27, 62, 0.45);
    z-index: 2;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    color: var(--color-white);
    width: 80%;
    max-width: 800px;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.15;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out 0.4s;
}

.slide-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 400;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out 0.6s;
}

.btn-slider {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 14px 35px;
    font-size: 1.05rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out 0.8s;
}

.btn-slider:hover {
    background-color: var(--color-secondary-hover);
    transform: translateY(-2px);
}

.slide.active .slide-title,
.slide.active .slide-subtitle,
.slide.active .btn-slider {
    opacity: 1;
    transform: translateY(0);
}

/* Slider arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    backdrop-filter: blur(5px);
    transition: var(--transition-normal);
}

.slider-arrow:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* Indicators */
.slider-indicators {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-indicators .dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: var(--transition-normal);
}

.slider-indicators .dot.active {
    background-color: var(--color-secondary);
    width: 30px;
    border-radius: 10px;
}

/* 6. General Section Grid layout */
.about-section, .family-section, .specialized-section, .explore-section {
    padding: 90px 0;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Image Wrappers */
.about-image-wrapper, .family-image-wrapper, .specialized-image-wrapper, .explore-image-wrapper, .faq-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper img, .family-image-wrapper img, .specialized-image-wrapper img, .explore-image-wrapper img, .faq-image-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image-wrapper:hover img, .family-image-wrapper:hover img, .specialized-image-wrapper:hover img, .explore-image-wrapper:hover img, .faq-image-wrapper:hover img {
    transform: scale(1.05);
}

/* Features List styling */
.about-features, .family-features, .specialized-features, .explore-features {
    margin: 25px 0 35px 0;
}

.about-features li, .family-features li, .specialized-features li, .explore-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.about-features li i, .specialized-features li i {
    color: var(--color-blue-btn);
    font-size: 1.25rem;
    margin-top: 3px;
}

.family-features li i {
    color: var(--color-secondary);
    font-size: 1.25rem;
    margin-top: 3px;
}

.explore-features li i {
    color: var(--color-secondary);
    font-size: 1.25rem;
    margin-top: 3px;
}

/* 7. Packages Section & Card Styles */
.packages-section {
    padding: 90px 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.tour-card {
    background-color: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.tour-card-image {
    height: 230px;
    overflow: hidden;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.tour-card:hover .tour-card-image img {
    transform: scale(1.1);
}

.tour-card-content {
    padding: 25px;
    text-align: left;
}

.tour-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.tour-card-duration {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tour-card-duration i {
    color: var(--color-secondary);
}

/* 8. Family Section Stats Circles */
.stats-circles-container {
    display: flex;
    gap: 40px;
    margin-top: 35px;
}

.circle-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.circle-box {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 5px solid var(--color-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.circle-val {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-primary);
}

.circle-label {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* 9. Testimonials Slider Styles */
.testimonials-section {
    padding: 90px 0;
    background-color: var(--color-white);
}

.testimonials-slider-container {
    max-width: 950px;
    margin: 40px auto 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonials-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    background-color: var(--color-bg-light);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--color-border);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    color: var(--color-secondary); /* Matching Sky Blue */
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-text);
    font-style: italic;
    margin-bottom: 30px;
    max-width: 750px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.testimonial-avatar-initials {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

/* Custom Avatar Backgrounds */
.avatar-bg-pink { background-color: #ec4899; }
.avatar-bg-gold { background-color: #ef4444; } /* Red instead of gold */
.avatar-bg-purple { background-color: #8b5cf6; }
.avatar-bg-teal { background-color: #14b8a6; }

.testimonial-username {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary);
}

.testimonial-verified {
    font-size: 0.85rem;
    color: #10b981; /* Verified green */
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.testimonials-slider-container .slider-indicators {
    position: relative;
    bottom: 0;
    margin-top: 25px;
}

.testimonials-slider-container .slider-indicators .testimonial-dot {
    width: 12px;
    height: 12px;
    background-color: var(--color-border);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-normal);
}

.testimonials-slider-container .slider-indicators .testimonial-dot.active {
    background-color: var(--color-blue-btn);
    width: 25px;
    border-radius: 10px;
}

/* 10. Stats Counter Styles */
.stats-counter-section {
    background-image: linear-gradient(to right, rgba(13, 27, 62, 0.95), rgba(22, 42, 92, 0.95)), url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    color: var(--color-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-counter-card {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 40px 25px;
    border-radius: 10px;
    transition: var(--transition-normal);
}

.stat-counter-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.12);
    border-color: var(--color-white);
}

.stat-icon {
    font-size: 2.25rem;
    color: var(--color-white);
    margin-bottom: 15px;
    opacity: 0.9;
}

.counter-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 5px;
    line-height: 1;
}

.counter-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

/* 11. FAQ Accordion Styles */
.faq-section {
    padding: 90px 0;
}

.faq-grid {
    margin-top: 40px;
    align-items: flex-start;
}

.faq-img {
    height: 400px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--color-white);
    border-radius: 8px;
    border: 1px solid var(--color-border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-trigger {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    transition: var(--transition-normal);
}

.faq-trigger i {
    color: var(--color-secondary);
    transition: transform 0.3s ease;
}

.faq-trigger[aria-expanded="true"] {
    color: var(--color-secondary);
}

.faq-trigger[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    padding: 0 25px;
}

.faq-content p {
    color: var(--color-text-muted);
    font-size: 1rem;
    padding-bottom: 20px;
    line-height: 1.6;
}

/* 12. Bottom Gallery Grid Styles */
.gallery-section {
    padding: 90px 0 0 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    height: 280px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 27, 62, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-normal);
    color: var(--color-white);
    font-size: 2rem;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* 13. Footer Section Styles */
.site-footer {
    background-color: var(--color-footer-bg);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0 0;
    border-top: 4px solid var(--color-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-img {
    max-height: 55px;
    width: auto;
    object-fit: contain;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    transition: var(--transition-normal);
}

.footer-socials a:hover {
    background-color: var(--color-secondary);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-secondary);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer-contact-list li i {
    font-size: 1.25rem;
    color: var(--color-secondary);
    margin-top: 4px;
}

.footer-contact-list li div span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 2px;
}

.footer-contact-list li div a, .footer-contact-list li div p {
    font-size: 0.95rem;
    color: var(--color-white);
}

.footer-contact-list li div a:hover {
    color: var(--color-secondary);
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
}

.footer-bottom a {
    color: var(--color-white);
}

.footer-bottom a:hover {
    color: var(--color-secondary);
}

/* 14. Responsive Layout Styling (Breakpoints) */

@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-wrapper img, .family-image-wrapper img, .specialized-image-wrapper img, .explore-image-wrapper img, .faq-image-wrapper img {
        height: 350px;
    }
    
    /* Header toggle */
    .nav-toggle {
        display: flex;
        z-index: 120;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--color-primary);
        flex-direction: column;
        padding: 80px 40px;
        transition: var(--transition-normal);
        z-index: 110;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-link {
        color: var(--color-white);
        font-size: 1.2rem;
        display: block;
        padding: 10px 0;
    }
    
    .nav-link::after {
        background-color: var(--color-secondary);
    }
    
    /* Change bars on active */
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background-color: var(--color-white);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        background-color: var(--color-white);
    }
    
    .hero-slider-section .slider-container {
        height: 55vh;
        min-height: 400px;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-subtitle {
        font-size: 1.1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.85rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }
    
    .stats-circles-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

/* ==========================================================================
   14. About Us Page Styles
   ========================================================================== */

/* About Hero */
.about-hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    color: var(--color-white);
    text-align: center;
    position: relative;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.95;
    font-style: italic;
}

/* Section grids */
.section-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

/* Intro Section */
.about-intro-section {
    padding: 80px 0;
}

.about-intro-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-purple {
    background-color: #ddd6fe;
    color: #7c3aed;
}

.about-intro-protection {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
    padding: 15px;
    background-color: var(--color-bg-light);
    border-radius: 8px;
    width: 100%;
}

.protection-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.protection-text h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--color-primary);
}

.protection-text p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.about-intro-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
    flex-wrap: wrap;
    gap: 20px;
}

.intro-call {
    display: flex;
    align-items: center;
    gap: 12px;
}

.intro-call i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 122, 0, 0.1);
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.intro-call div {
    display: flex;
    flex-direction: column;
}

.intro-call div span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.intro-call div a {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* Feature 2x2 Grid */
.about-features-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-feature-card {
    background-color: var(--color-white);
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--color-border);
}

.about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

.feature-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.icon-cyan { background-color: rgba(6, 182, 212, 0.1); color: #06b6d4; }
.icon-orange { background-color: rgba(255, 122, 0, 0.1); color: var(--color-secondary); }
.icon-blue { background-color: rgba(37, 99, 235, 0.1); color: #2563eb; }
.icon-purple { background-color: rgba(124, 58, 237, 0.1); color: #7c3aed; }

.about-feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.about-feature-card p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

/* Opportunity Section */
.about-opportunity-section {
    padding: 80px 0;
}

/* Collage */
.about-collage-wrapper {
    position: relative;
    width: 100%;
}

.collage-grid {
    position: relative;
    width: 100%;
    height: 480px;
}

.collage-item {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.collage-item:hover {
    transform: scale(1.02);
    z-index: 10;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#coll-1 { width: 45%; height: 140px; top: 0; left: 0; }
#coll-2 { width: 50%; height: 140px; top: 0; right: 0; }
#coll-3 { width: 100%; height: 190px; top: 160px; left: 0; }
#coll-4 { width: 48%; height: 110px; bottom: 0; left: 0; }
#coll-5 { width: 48%; height: 110px; bottom: 0; right: 0; }

/* Timeline styling */
.about-timeline-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
    padding-left: 20px;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 15px;
    bottom: 15px;
    width: 2px;
    border-left: 2px dashed var(--color-border);
    z-index: 1;
}

.timeline-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.timeline-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--color-white);
    border: 2px solid var(--color-border);
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.timeline-item:hover .timeline-icon {
    border-color: var(--color-secondary);
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

/* Inquiry form banner section */
.about-inquiry-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 90px 0;
    color: var(--color-white);
}

.inquiry-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 30px;
}

.bg-white-badge {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
}

.inquiry-right {
    display: flex;
    justify-content: flex-end;
}

.inquiry-form-card {
    background-color: var(--color-white);
    color: var(--color-text);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 520px;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 25px;
    text-align: center;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.required {
    color: red;
}

.form-group input,
.form-group select {
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.15);
}

.flex-1 { flex: 1; }
.flex-2 { flex: 2; }
.flex-end { align-items: flex-end; }

.date-fields .date-selects {
    display: flex;
    gap: 8px;
}

.date-selects select {
    flex: 1;
    padding: 10px 6px;
    font-size: 0.85rem;
}

.btn-inquiry-submit {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    font-size: 1rem;
    background-color: var(--color-blue-btn);
}

.btn-inquiry-submit:hover {
    background-color: var(--color-blue-hover);
}

/* ==========================================================================
   15. About Us Responsive Styles
   ========================================================================== */
@media (max-width: 991px) {
    .section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-collage-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .inquiry-right {
        justify-content: center;
    }
    
    .inquiry-left {
        padding-right: 0;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .about-features-2x2 {
        grid-template-columns: 1fr;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .inquiry-form-card {
        padding: 25px 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .date-fields .date-selects {
        flex-wrap: wrap;
    }
    
    .collage-grid {
        height: 380px;
    }
    
    #coll-1 { height: 110px; }
    #coll-2 { height: 110px; }
    #coll-3 { height: 150px; top: 125px; }
    #coll-4 { height: 95px; }
    #coll-5 { height: 95px; }
}

/* ==========================================================================
   16. Gallery Page Styles
   ========================================================================== */
.gallery-section {
    padding: 60px 0;
    background-color: var(--color-bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.gallery-item-wrapper {
    width: 100%;
}

.gallery-card-inner {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    background-color: var(--color-white);
    cursor: pointer;
    transition: var(--transition-normal);
}

.gallery-card-inner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 27, 62, 0.6);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    z-index: 2;
}

.gallery-zoom-icon {
    color: var(--color-white);
    font-size: 1.75rem;
    transform: scale(0.8);
    transition: var(--transition-normal);
}

.gallery-card-inner:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.gallery-card-inner:hover img {
    transform: scale(1.08);
}

.gallery-card-inner:hover .gallery-hover-overlay {
    opacity: 1;
}

.gallery-card-inner:hover .gallery-zoom-icon {
    transform: scale(1);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(11, 15, 30, 0.95);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-close-btn {
    position: absolute;
    top: 25px;
    right: 35px;
    color: var(--color-white);
    font-size: 2.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10000;
}

.lightbox-close-btn:hover {
    color: var(--color-secondary);
    transform: scale(1.1);
}

.lightbox-content-wrapper {
    max-width: 85%;
    max-height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease-out;
}

.lightbox-caption {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 20px;
    text-align: center;
    letter-spacing: 0.5px;
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Responsive grid layouts */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .lightbox-close-btn {
        top: 15px;
        right: 20px;
        font-size: 2.25rem;
    }
}

/* ==========================================================================
   17. Contact Page Styles
   ========================================================================== */
.contact-breadcrumbs {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-top: 10px;
    font-weight: 500;
}

.contact-breadcrumbs a {
    color: var(--color-white);
}

.contact-breadcrumbs a:hover {
    color: var(--color-secondary);
}

.contact-breadcrumbs span {
    margin: 0 8px;
    opacity: 0.6;
}

.contact-breadcrumbs .active-crumb {
    color: rgba(255, 255, 255, 0.7);
}

.contact-cards-section {
    padding: 80px 0 60px 0;
}

.contact-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.contact-section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.3;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-detail-card {
    background-color: var(--color-white);
    padding: 45px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    transition: var(--transition-normal);
}

.contact-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
    border-color: var(--color-secondary);
}

.contact-detail-card .contact-card-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: rgba(255, 122, 0, 0.08);
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 25px auto;
    transition: var(--transition-normal);
}

.contact-detail-card:hover .contact-card-icon {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.contact-detail-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.contact-detail-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.contact-detail-card p a {
    color: var(--color-text);
    font-weight: 600;
    transition: var(--transition-fast);
}

.contact-detail-card p a:hover {
    color: var(--color-secondary);
}

/* Contact Grid Form */
.contact-form-section {
    padding: 85px 0;
}

.contact-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 20px;
}

.contact-heading-left {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-text-left {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

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

.social-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.social-circle:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* Contact Form Right */
.contact-form-right {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.contact-form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.contact-form-group input,
.contact-form-group textarea {
    padding: 11px 15px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: var(--transition-fast);
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.15);
}

.char-counter {
    text-align: right;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 5px;
}

.btn-contact-submit {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
    background-color: var(--color-blue-btn);
}

.btn-contact-submit:hover {
    background-color: var(--color-blue-hover);
}

/* Maps Integration */
.contact-map-wrapper {
    width: 100%;
    display: block;
    line-height: 0;
}

.contact-map-wrapper iframe {
    display: block;
}

/* ==========================================================================
   18. Contact Responsive Styles
   ========================================================================== */
@media (max-width: 991px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-left {
        padding-right: 0;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .contact-form-right {
        padding: 25px 20px;
    }
    
    .contact-heading-left {
        font-size: 1.85rem;
    }
    
    .contact-section-header h2 {
        font-size: 1.85rem;
    }
}

/* ==========================================================================
   19. Blog Index & Blog Details Page Styles
   ========================================================================== */
.blog-grid-section {
    padding: 80px 0;
    background-color: var(--color-bg-light);
}

.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.blog-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image-wrapper img {
    transform: scale(1.05);
}

.blog-date-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--color-primary);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 55px;
    font-weight: 700;
    border-bottom-left-radius: 6px;
    z-index: 2;
}

.blog-date-badge .day {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    line-height: 1;
}

.blog-date-badge .month {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-top: 4px;
}

.blog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-tag {
    display: inline-block;
    align-self: flex-start;
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.blog-meta .meta-item {
    margin-right: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-card-title a {
    color: var(--color-primary);
    transition: var(--transition-fast);
}

.blog-card-title a:hover {
    color: var(--color-secondary);
}

.blog-card-excerpt {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 25px;
    flex-grow: 1;
}

.blog-readmore-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.blog-readmore-link:hover {
    color: var(--color-secondary);
}

.blog-readmore-link i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.blog-readmore-link:hover i {
    transform: translateX(4px);
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
}

.page-num, .page-next {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    border: 1px solid var(--color-border);
    background-color: var(--color-white);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.page-num:hover, .page-next:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-white);
}

.page-num.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

/* ==========================================================================
   20. Blog Details Page Styles
   ========================================================================== */
.blog-details-banner {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.blog-details-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-details-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.blog-details-grid {
    display: grid;
    grid-template-columns: 2.3fr 1fr;
    gap: 50px;
    align-items: start;
}

.blog-post-full {
    display: flex;
    flex-direction: column;
}

.mb-10 {
    margin-bottom: 10px;
}

.blog-detail-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--color-primary);
    margin: 15px 0;
}

.blog-detail-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.blog-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-detail-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 22px;
}

.blog-detail-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 35px 0 15px 0;
}

.blog-detail-content ul {
    list-style-type: disc;
    margin-bottom: 22px;
    padding-left: 20px;
}

.blog-detail-content ul li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 10px;
}

/* Styled Table */
.table-container {
    width: 100%;
    overflow-x: auto;
    margin: 35px 0;
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.styled-table th {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 14px 18px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-align: left;
}

.styled-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
    line-height: 1.5;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: var(--color-bg-light);
}

.styled-table tbody tr:last-of-type td {
    border-bottom: 2px solid var(--color-primary);
}

/* Sidebar Widgets */
.blog-sidebar {
    display: flex;
    flex-direction: column;
}

.sidebar-widget {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-secondary);
}

.widget-recent-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.recent-post-thumb {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info {
    display: flex;
    flex-direction: column;
}

.recent-post-info .recent-date-badge {
    background-color: var(--color-bg-light);
    color: var(--color-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 3px;
    width: fit-content;
    margin-bottom: 6px;
}

.recent-post-info h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 6px;
}

.recent-post-info h4 a {
    color: var(--color-primary);
    transition: var(--transition-fast);
}

.recent-post-info h4 a:hover {
    color: var(--color-secondary);
}

.recent-post-info .recent-meta {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.widget-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-link {
    background-color: var(--color-bg-light);
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 4px;
    border: 1px solid var(--color-border);
    transition: var(--transition-fast);
}

.tag-link:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-white);
}

/* Related Packages Section */
.related-packages-section {
    padding: 80px 0;
}

.related-header {
    text-align: center;
    margin-bottom: 40px;
}

.related-header h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-primary);
}

.related-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* ==========================================================================
   21. Blog Responsive Styles
   ========================================================================== */
@media (max-width: 1200px) {
    .blog-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .related-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .blog-details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .blog-sidebar {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    .blog-details-banner {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .blog-cards-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .blog-detail-title {
        font-size: 1.85rem;
    }
    .blog-detail-content p, 
    .blog-detail-content ul li {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .related-grid-4 {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .blog-details-banner {
        height: 250px;
    }
    .styled-table th, 
    .styled-table td {
        padding: 10px;
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   22. Navbar Dropdown Styles
   ========================================================================== */
.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: none;
    min-width: 240px;
    padding: 8px 0;
    margin-top: 12px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    list-style: none;
    text-align: left;
    animation: dropdownFadeIn 0.2s ease-out;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: transparent;
}

@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translate(-50%, 10px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

.dropdown-menu li {
    border-bottom: 1px solid var(--color-border);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    display: block;
    padding: 14px 22px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.dropdown-menu li a:hover {
    color: var(--color-secondary);
    background-color: var(--color-bg-light);
    padding-left: 26px;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.nav-item.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-toggle i {
    margin-left: 4px;
    font-size: 0.78rem;
    transition: transform 0.25s ease;
}

/* Mobile Dropdown adjustment */
@media (max-width: 991px) {
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background-color: rgba(255, 122, 0, 0.03);
        margin-top: 0;
        width: 100%;
        display: none;
        animation: none;
    }
    
    .nav-item.dropdown.active .dropdown-menu {
        display: block;
    }
}

/* ==========================================================================
   23. Package Details Page Styles
   ========================================================================== */
.package-hero-section {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--color-white);
    text-align: center;
}

.package-hero-title {
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.package-hero-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Meta Boxes Floating Container */
.package-meta-boxes-container {
    margin-top: -35px;
    position: relative;
    z-index: 20;
}

.meta-boxes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.meta-box-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 25px -5px rgba(13, 27, 62, 0.08), 0 8px 10px -6px rgba(13, 27, 62, 0.05);
    font-size: 0.92rem;
    color: var(--color-primary);
}

.meta-box-item i {
    font-size: 1.35rem;
    color: #1a2a56;
    display: flex;
    align-items: center;
}

.meta-box-item span {
    font-weight: 500;
    color: #334155;
}

.meta-box-item span strong {
    font-weight: 700;
    color: #0f172a;
}

/* Details Layout */
.package-details-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.package-grid-2 {
    display: grid;
    grid-template-columns: 2.3fr 1fr;
    gap: 50px;
    align-items: start;
}

.package-left-details {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.package-main-image-card {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.package-featured-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.package-description-block h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 18px;
}

.package-description-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 20px;
}

.package-cta-group {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.btn-book-trek {
    padding: 12px 28px;
    font-size: 1rem;
}

.btn-outline-green {
    border: 2px solid #2ecc71;
    color: #2ecc71;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 10px 26px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.btn-outline-green:hover {
    background-color: #2ecc71;
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Upcoming Batches Calendar */
.package-batches-block h3,
.package-pricing-block h3,
.package-itinerary-block h3,
.package-gallery-block h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.package-batches-block .section-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.batches-calendar-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 10px;
}

.batch-date-card {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 8px 4px;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: var(--transition-fast);
    cursor: pointer;
}

.batch-date-card .batch-month {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.5px;
}

.batch-date-card .batch-day {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1.1;
    margin-top: 4px;
}

.batch-date-card:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.batch-date-card:hover .batch-month {
    color: var(--color-white);
}

.batch-date-card:hover .batch-day {
    color: var(--color-secondary);
}

/* Price block details */
.mt-15 { margin-top: 15px; }
.mt-10 { margin-top: 10px; }

.price-val {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-secondary);
}

/* Itinerary Accordion trigger */
.itinerary-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Photo Gallery Box */
.package-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-img-box {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-img-box:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.gallery-img-box:hover img {
    transform: scale(1.05);
}

/* Right Sidebar Inquiry Form */
.package-right-sidebar {
    position: sticky;
    top: 110px;
}

.shadow-card {
    box-shadow: 0 10px 30px rgba(0,0,0,0.06) !important;
}

.date-selects-group {
    flex: 2 !important;
}

.inline-selects {
    display: flex;
    gap: 8px;
}

.inline-selects select {
    padding: 10px !important;
    font-size: 0.85rem !important;
}

.select-d { flex: 1; }
.select-m { flex: 1.5; }

.w-100 { width: 100%; }

/* Bottom Recommended List */
.related-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ==========================================================================
   24. Package Details Responsive Styles
   ========================================================================== */
@media (max-width: 1200px) {
    .batches-calendar-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
    }
}

@media (max-width: 991px) {
    .package-grid-2 {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .package-right-sidebar {
        position: static;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .meta-bar-flex {
        justify-content: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .related-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .package-hero-title {
        font-size: 2.25rem;
    }
    
    .package-description-block h2 {
        font-size: 1.85rem;
    }
    
    .package-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .meta-bar-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .batches-calendar-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .package-cta-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-outline-green {
        justify-content: center;
    }
    
    .related-grid-3 {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   25. Full-Width Package Stacked Layout Styles
   ========================================================================== */
.package-intro-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.package-intro-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.intro-img-rounded {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

.package-intro-text h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 18px;
}

.btn-orange-solid {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition-fast);
}

.btn-orange-solid:hover {
    background-color: #e06b00;
    transform: translateY(-2px);
}

.btn-green-solid {
    background-color: #2ecc71;
    color: var(--color-white);
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition-fast);
}

.btn-green-solid:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
}

/* Calendar Batches v2 */
.batches-grid-header {
    margin-bottom: 25px;
}

.batches-calendar-8cols {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
}

.batch-date-box-v2 {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    cursor: pointer;
    text-align: center;
    border: 1px solid var(--color-border);
}

.batch-date-box-v2:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-secondary);
}

.batch-month-header {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 0;
    letter-spacing: 0.5px;
}

.batch-day-body {
    background-color: #f8fafc;
    color: var(--color-primary);
    font-size: 1.35rem;
    font-weight: 800;
    padding: 11px 0;
    line-height: 1.1;
    transition: var(--transition-fast);
}

.batch-date-box-v2:hover .batch-day-body {
    background-color: var(--color-white);
    color: var(--color-secondary);
}

/* Itinerary Rates Row */
.package-itinerary-rates-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.details-left-itinerary,
.details-right-rates {
    width: 100%;
}

.pricing-header h3,
.itinerary-header h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary);
}

.mt-60 { margin-top: 60px; }

/* Responsive adjustments */
@media (max-width: 991px) {
    .package-intro-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .batches-calendar-8cols {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .package-itinerary-rates-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .meta-boxes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .package-meta-boxes-container {
        margin-top: -45px;
    }
}

@media (max-width: 576px) {
    .batches-calendar-8cols {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .meta-boxes-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .package-meta-boxes-container {
        margin-top: -20px;
    }
    
    .meta-box-item {
        padding: 12px 18px;
    }
}

/* Active Date Box and Booking Panels */
.batch-date-box-v2.active {
    border-color: var(--color-secondary) !important;
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.batch-date-box-v2.active .batch-month-header {
    background-color: var(--color-secondary) !important;
}

.batch-date-box-v2.active .batch-day-body {
    background-color: var(--color-white) !important;
    color: var(--color-secondary) !important;
}

.event-booking-form-panel {
    animation: slideDownFade 0.4s ease forwards;
}

@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Booking Tickets Table Custom Premium Design */
.booking-tickets-table {
    width: 100%;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    margin: 20px 0;
    background-color: #ffffff;
    border: 1px solid #cbd5e1 !important;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.booking-tickets-table th {
    background-color: #0d1b3e !important;
    color: #ffffff !important;
    padding: 12px 20px !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border: none !important;
    text-align: left !important;
}

.booking-tickets-table td {
    padding: 12px 20px !important;
    border-bottom: 1px solid #e2e8f0 !important;
    vertical-align: middle !important;
    background-color: #ffffff !important;
    text-align: left !important;
}

/* Ensure no zebra stripes for the booking tickets table */
.booking-tickets-table tbody tr {
    background-color: #ffffff !important;
}

.booking-tickets-table tbody tr.participant-row {
    background-color: #f8fafc !important;
}

.booking-tickets-table tbody tr.participant-row td {
    background-color: #f8fafc !important;
    border-bottom: 1px solid #e2e8f0 !important;
    padding: 20px !important;
}

.booking-tickets-table tbody tr:last-child td {
    border-bottom: none !important;
}

/* Description label under ticket name */
.ticket-info-title {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #0d1b3e;
    margin-bottom: 2px;
}

.ticket-info-desc {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.3;
}

.ticket-price-col {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ff7a00;
}

.ticket-qty-col select {
    padding: 6px 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0d1b3e;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    outline: none;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ticket-qty-col select:focus {
    border-color: #ff7a00;
    box-shadow: 0 0 0 2px rgba(255, 122, 0, 0.15);
}
