/* ===================================
   Modern Touring Website - Maasai Mara
   Inspired by Iceland Design
   =================================== */

/* Root Variables */
:root {
    --primary-color: #2d5016;
    --secondary-color: #4a7c2c;
    --dark-color: #1a2e1a;
    --darker-color: #0f1a0f;
    --light-color: #f8f8f8;
    --white-color: #ffffff;
    --text-light: #999999;
    --text-muted: #666666;
    --border-radius: 4px;
    --box-shadow: 0 10px 40px rgba(26, 46, 26, 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

/* Accessibility - Skip to Content Link */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--dark-color);
    color: var(--white-color);
    padding: 10px 20px;
    text-decoration: none;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 0;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--dark-color);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Enable momentum scrolling on iOS */
    -webkit-overflow-scrolling: touch;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-color);
}

main {
    min-height: calc(100vh - 200px);
}

/* Navigation - Fixed & Transparent */
.navbar {
    padding: 1.5rem 0;
    transition: var(--transition);
    background-color: transparent !important;
}

.navbar.scrolled {
    background-color: rgba(45, 80, 22, 0.95) !important;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(45, 80, 22, 0.3);
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white-color) !important;
    text-transform: uppercase;
    transition: var(--transition);
}

.navbar-logo {
    height: 50px;
    width: auto;
    border-radius: 4px;
    object-fit: contain;
}

.navbar-brand-text {
    display: inline-block;
}

.navbar-brand:hover {
    color: var(--primary-color) !important;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active {
    color: var(--white-color) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.2rem;
    right: 1.2rem;
    height: 2px;
    background-color: var(--primary-color);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--white-color);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background-color: var(--white-color);
    border-color: var(--white-color);
    color: var(--dark-color);
}

/* Book Now Button in Navigation */
.btn-book-now {
    display: inline-flex;
    align-items: center;
    padding: 10px 28px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white-color);
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-book-now:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

/* Hero Section - Full Screen with Overlay */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(45, 80, 22, 0.3), rgba(45, 80, 22, 0.5)),
        url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1920') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay .container {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 8px;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 400;
    color: var(--white-color);
    letter-spacing: 20px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(26, 46, 26, 0.3);
    line-height: 1;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    background-color: transparent;
    color: var(--white-color);
    text-decoration: none;
    transition: var(--transition);
}

.btn-hero:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.btn-hero i {
    font-size: 1.2rem;
    transition: var(--transition);
}

.btn-hero:hover i {
    transform: translateX(5px);
}

/* Scroll Indicator with Dashed Circles */
.scroll-indicator-wrapper {
    position: absolute;
    bottom: -16%;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 10;
}

.scroll-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px dashed rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: pulse-rotate 20s linear infinite;
}

.scroll-circle-outer {
    width: 200px;
    height: 200px;
}

.scroll-circle-middle {
    width: 150px;
    height: 150px;
    animation-duration: 15s;
    animation-direction: reverse;
}

.scroll-circle-inner {
    width: 100px;
    height: 100px;
    animation-duration: 10s;
}

.scroll-text {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
    line-height: 1.3;
}

@keyframes pulse-rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.scroll-indicator-wrapper:hover .scroll-circle {
    border-color: rgba(255, 255, 255, 0.6);
}

/* Section Spacing */
section {
    padding: 6rem 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-modern {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-title-modern span {
    color: var(--primary-color);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Modern Tour Cards */
.tour-card-modern {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--white-color);
    margin-bottom: 2rem;
}

.tour-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 400px;
    background-color: var(--dark-color);
}

.tour-image-modern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: grayscale(10%);
}

.tour-card-modern:hover .tour-image-modern {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(26, 46, 26, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tour-card-modern:hover .tour-overlay {
    opacity: 1;
}

.tour-overlay .btn {
    background-color: var(--white-color);
    color: var(--dark-color);
    border: none;
    padding: 0.75rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.tour-card-modern:hover .tour-overlay .btn {
    transform: translateY(0);
}

.tour-overlay .btn:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.tour-info {
    padding: 1.5rem 0;
}

.tour-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.tour-details-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-detail {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.tour-detail i {
    color: var(--primary-color);
    margin-right: 0.3rem;
}

.tour-price-modern {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.tour-image-placeholder {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-color);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: var(--white-color);
    padding: 1rem 3rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white-color);
}

.btn-outline-dark {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1rem 3rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    transition: var(--transition);
}

.btn-outline-dark:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* About Section */
.about-section {
    background-color: var(--dark-color);
    color: var(--white-color);
}

.about-content h3 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.about-intro {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-box {
    text-align: center;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-description {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.about-gallery {
    position: relative;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: grayscale(20%);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.gallery-large {
    height: 400px;
}

.gallery-medium {
    height: 250px;
}

.gallery-small {
    height: 150px;
}

/* CTA Section */
.cta-section-modern {
    position: relative;
    height: 500px;
    background: linear-gradient(rgba(45, 80, 22, 0.4), rgba(45, 80, 22, 0.6)),
        url('https://images.unsplash.com/photo-1523805009345-7448845a9e53?w=1920') center center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-overlay {
    width: 100%;
    text-align: center;
}

.cta-section-modern h2 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 1.5rem;
}

.cta-section-modern p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.cta-section-modern .btn {
    padding: 1rem 3rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    border: 2px solid var(--white-color);
    background-color: transparent;
    color: var(--white-color);
    transition: var(--transition);
}

.cta-section-modern .btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

/* Footer */
.footer-modern {
    background-color: var(--darker-color);
    color: var(--white-color);
    padding: 5rem 0 0;
}

.footer-top {
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-img {
    height: 60px;
    width: auto;
    border-radius: 4px;
    object-fit: contain;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white-color);
    text-transform: uppercase;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white-color);
    text-transform: uppercase;
}

.footer-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--white-color);
    border-color: var(--white-color);
    color: var(--dark-color);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    margin-top: 3px;
}

.footer-bottom {
    padding: 2rem 0;
}

.footer-copyright {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-admin-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-admin-link:hover {
    color: var(--white-color);
}

/* Forms */
.form-control,
.form-select {
    border-radius: 0;
    border: 2px solid #e0e0e0;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--dark-color);
    box-shadow: none;
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

/* Alerts */
.alert {
    border-radius: 0;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
}

/* Admin Panel Styles */
.admin-sidebar {
    background-color: var(--darker-color);
    min-height: calc(100vh - 56px);
    padding: 2rem 0;
}

.admin-sidebar .nav-link {
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 20px;
    margin-bottom: 5px;
    border-radius: 0;
    transition: var(--transition);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background-color: var(--primary-color);
    color: white;
}

.admin-card {
    border: none;
    border-radius: 0;
    box-shadow: 0 2px 20px rgba(26, 46, 26, 0.08);
    transition: var(--transition);
}

.admin-card:hover {
    box-shadow: 0 5px 30px rgba(26, 46, 26, 0.12);
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 0;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(45, 80, 22, 0.15);
}

.stat-card h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white-color);
}

.stat-card p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Tables */
.table-responsive {
    border-radius: 0;
    box-shadow: 0 2px 20px rgba(26, 46, 26, 0.08);
}

.table {
    margin-bottom: 0;
}

.table thead {
    background-color: var(--primary-color);
    color: white;
}

.table thead th {
    border: none;
    font-weight: 600;
    padding: 15px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.table tbody tr {
    transition: var(--transition);
}

.table tbody tr:hover {
    background-color: var(--light-color);
}

.table tbody td {
    padding: 15px;
    vertical-align: middle;
}

/* Loading Spinner */
.spinner-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.empty-state h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

/* Smooth scrolling with easing - only for non-admin pages */
html:not(.admin-page) {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Account for fixed navbar */
}

/* Enhanced smooth scrolling for all scrollable elements */
html:not(.admin-page) * {
    scroll-behavior: smooth;
}

/* Disable smooth scroll for admin pages */
html.admin-page,
html.admin-page * {
    scroll-behavior: auto !important;
}

/* Selection */
::selection {
    background-color: var(--primary-color);
    color: var(--white-color);
}

::-moz-selection {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* Responsive Design */

/* Tablet Devices (768px - 991px) */
@media (max-width: 991px) {
    .hero-title {
        font-size: 5rem;
        letter-spacing: 15px;
    }

    .section-title-modern {
        font-size: 2.5rem;
    }

    .stats-row {
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .navbar.scrolled {
        background-color: rgba(45, 80, 22, 0.98) !important;
    }

    .scroll-circle-outer {
        width: 120px;
        height: 120px;
    }

    .scroll-circle-middle {
        width: 95px;
        height: 95px;
    }

    .scroll-circle-inner {
        width: 70px;
        height: 70px;
    }

    .gallery-large {
        height: 350px;
    }

    .gallery-medium {
        height: 220px;
    }

    .gallery-small {
        height: 130px;
    }

    /* Touch-friendly button sizes for tablets */
    .btn,
    .btn-primary,
    .btn-outline-dark,
    .btn-hero {
        min-height: 48px;
        padding: 0.875rem 2rem;
    }

    /* Improved navigation for tablets */
    .navbar-toggler {
        padding: 0.5rem 0.75rem;
        font-size: 1.5rem;
    }

    /* Better spacing for tablet forms */
    .form-control,
    .form-select {
        min-height: 48px;
        font-size: 1rem;
    }
}

/* Mobile Devices (320px - 767px) */
@media (max-width: 767px) {
    .hero-section {
        height: 100vh;
        min-height: 600px;
    }

    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 10px;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 5px;
    }

    .hero-description {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .btn-hero {
        padding: 0.85rem 2rem;
        font-size: 0.85rem;
        min-height: 48px;
    }

    .scroll-circle-outer {
        width: 100px;
        height: 100px;
    }

    .scroll-circle-middle {
        width: 80px;
        height: 80px;
    }

    .scroll-circle-inner {
        width: 60px;
        height: 60px;
    }

    .scroll-text {
        width: 50px;
        height: 50px;
        font-size: 0.6rem;
    }

    .scroll-indicator-wrapper {
        bottom: 40px;
    }

    /* Responsive images */
    .tour-image-wrapper,
    .tour-image-placeholder {
        height: 300px;
    }

    .tour-image-modern,
    .adventure-image,
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .section-title-modern {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .stats-row {
        flex-direction: column;
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-box {
        text-align: left;
    }

    .gallery-large,
    .gallery-medium {
        height: 200px;
    }

    .gallery-small {
        height: 120px;
    }

    .cta-section-modern {
        height: 400px;
    }

    section {
        padding: 4rem 0;
    }

    .nav-link.active::after {
        display: none;
    }

    .navbar {
        background-color: rgba(45, 80, 22, 0.95) !important;
        padding: 1rem 0;
    }

    /* Mobile navigation improvements */
    .navbar-collapse {
        background-color: rgba(45, 80, 22, 0.98);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 8px;
    }

    .nav-link {
        padding: 0.75rem 1rem !important;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .navbar-toggler {
        padding: 0.5rem;
        font-size: 1.5rem;
        border: 2px solid rgba(255, 255, 255, 0.5);
        min-width: 48px;
        min-height: 48px;
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    }

    /* Touch-friendly buttons for mobile */
    .btn,
    .btn-primary,
    .btn-outline-dark,
    .btn-outline-light {
        min-height: 48px;
        min-width: 48px;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-see-more {
        min-height: 48px;
        padding: 0.875rem 1.5rem;
    }

    /* Form elements touch-friendly */
    .form-control,
    .form-select {
        min-height: 48px;
        font-size: 16px;
        /* Prevents zoom on iOS */
        padding: 0.875rem 1rem;
    }

    textarea.form-control {
        min-height: 120px;
    }

    .form-label {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    /* Better spacing for mobile */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Card improvements for mobile */
    .adventure-card,
    .tour-card-modern {
        margin-bottom: 1.5rem;
    }

    /* Table responsive improvements */
    .table-responsive {
        font-size: 0.875rem;
    }

    .table td,
    .table th {
        padding: 0.75rem 0.5rem;
    }

    /* Footer improvements */
    .footer-modern {
        padding: 3rem 0 0;
    }

    .footer-top {
        padding-bottom: 2rem;
    }

    .social-link {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
}

/* Extra Small Mobile Devices (320px - 575px) */
@media (max-width: 575px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 5px;
    }

    .hero-subtitle {
        letter-spacing: 4px;
        font-size: 0.7rem;
    }

    .hero-description {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .btn-hero {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
        gap: 0.75rem;
        min-height: 48px;
    }

    .btn-primary,
    .btn-outline-dark,
    .cta-section-modern .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
        min-height: 48px;
    }

    .tour-name {
        font-size: 1.1rem;
    }

    .tour-price-modern {
        font-size: 1.3rem;
    }

    .about-section h2 {
        font-size: 2rem;
    }

    .stat-number,
    .stat-value {
        font-size: 2.5rem;
    }

    /* Smaller hero on very small screens */
    .hero-section {
        min-height: 500px;
    }

    /* Compact section titles */
    .section-title-modern,
    .section-title-adventures,
    .section-title-experiences {
        font-size: 1.75rem;
    }

    /* Smaller images for performance */
    .tour-image-wrapper,
    .tour-image-placeholder,
    .adventure-image-wrapper {
        height: 250px;
    }

    /* Compact cards */
    .adventure-content,
    .tour-info {
        padding: 1rem;
    }

    /* Smaller scroll indicator */
    .scroll-circle-outer {
        width: 80px;
        height: 80px;
    }

    .scroll-circle-middle {
        width: 65px;
        height: 65px;
    }

    .scroll-circle-inner {
        width: 50px;
        height: 50px;
    }

    .scroll-text {
        width: 40px;
        height: 40px;
        font-size: 0.55rem;
    }

    /* Compact navigation */
    .navbar-brand {
        font-size: 1.25rem;
        letter-spacing: 1px;
    }

    .navbar-logo {
        height: 40px;
    }

    .navbar-brand-text {
        font-size: 1rem;
    }

    /* Better mobile table display */
    .table {
        font-size: 0.8rem;
    }

    .table td,
    .table th {
        padding: 0.5rem 0.25rem;
    }

    /* Compact footer */
    .footer-brand {
        font-size: 1.25rem;
    }

    .footer-logo-img {
        height: 50px;
    }

    .footer-logo {
        font-size: 1rem;
    }

    .footer-text,
    .footer-links a,
    .footer-contact li {
        font-size: 0.875rem;
    }

    /* Admin panel mobile improvements */
    .admin-sidebar {
        min-height: auto;
        padding: 1rem 0;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-card h3 {
        font-size: 2rem;
    }
}

/* Responsive Image Utilities */
.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Ensure all images scale properly */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive video embeds */
.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-responsive iframe,
.video-responsive object,
.video-responsive embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {

    /* Remove hover effects on touch devices */
    .tour-card-modern:hover .tour-overlay {
        opacity: 0;
    }

    /* Make overlay always visible on touch devices */
    .tour-card-modern .tour-overlay {
        opacity: 1;
        background: linear-gradient(to bottom, transparent 0%, rgba(26, 46, 26, 0.5) 100%);
    }

    .tour-overlay .btn {
        transform: translateY(0);
    }

    /* Larger tap targets */
    a,
    button,
    .btn,
    input[type="submit"],
    input[type="button"] {
        min-height: 44px;
        min-width: 44px;
    }

    /* Remove hover animations on touch */
    * {
        transition-duration: 0.1s !important;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-section {
        min-height: 400px;
        height: 100vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .scroll-indicator-wrapper {
        display: none;
    }

    section {
        padding: 3rem 0;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    /* Optimize for retina displays */
    .navbar-brand,
    .hero-title,
    .section-title-modern {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    line-height: 60px;
}

/* WhatsApp button animation */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-float {
    animation: whatsapp-pulse 2s infinite;
}

/* Mobile adjustments for WhatsApp button */
@media (max-width: 767px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}

/* Hide WhatsApp button on admin pages */
html.admin-page .whatsapp-float {
    display: none;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .scroll-circle {
        animation: none;
    }
    
    .whatsapp-float {
        animation: none;
    }
}

/* Print Styles */
@media print {

    .navbar,
    footer,
    .btn,
    .scroll-indicator-wrapper,
    .navbar-toggler {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #1a2e1a;
    }

    .hero-section {
        height: auto;
        min-height: auto;
        page-break-after: always;
    }

    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
}

/* Feat
ured Adventures Section */
.featured-tours {
    background-color: #f5f5f5;
}

.section-title-adventures {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-tagline {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 0;
}

.section-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    padding-top: 0.5rem;
}

.btn-see-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark-color);
    background-color: white;
    border: 2px solid #ddd;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-see-more:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-see-more i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(26, 46, 26, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-see-more:hover i {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(3px);
}

/* Adventure Cards */
.adventure-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(26, 46, 26, 0.08);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.adventure-card:hover {
    box-shadow: 0 8px 24px rgba(26, 46, 26, 0.12);
    transform: translateY(-4px);
}

.adventure-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.adventure-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.adventure-card:hover .adventure-image {
    transform: scale(1.05);
}

.adventure-image-placeholder {
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(26, 46, 26, 0.1);
}

.wishlist-btn:hover {
    background-color: #ff4757;
    color: white;
}

.wishlist-btn i {
    font-size: 1rem;
}

.adventure-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.adventure-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
    line-height: 1.3;
}

.adventure-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.meta-item i {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.meta-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.meta-label {
    font-size: 0.75rem;
    color: var(--secondary-color);
    text-transform: capitalize;
}

.meta-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-color);
}

.adventure-footer {
    margin-top: auto;
}

.rating-price {
    margin-bottom: 1rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}

.rating i {
    font-size: 0.85rem;
    color: #ffc107;
}

.rating-value {
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 0.5rem;
    color: var(--dark-color);
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.price-label {
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.reviews-count {
    font-size: 0.75rem;
    color: var(--secondary-color);
    margin: 0;
}

.btn-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
    background-color: transparent;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-details:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-details i {
    font-size: 1rem;
    transition: var(--transition);
}

.btn-details:hover i {
    transform: translateX(5px);
}

/* Responsive for Adventure Cards */
@media (max-width: 991px) {
    .section-title-adventures {
        font-size: 2.5rem;
    }

    .section-description {
        margin-bottom: 1.5rem;
    }

    /* 2-column layout on tablets */
    .adventure-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767px) {
    .adventure-image-wrapper {
        height: 220px;
    }

    .section-title-adventures {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .section-description {
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
    }

    .btn-see-more {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
        min-height: 48px;
    }

    .featured-tours .row.mb-5 {
        margin-bottom: 2rem !important;
    }

    /* Single column layout on mobile */
    .adventure-card {
        margin-bottom: 1.5rem;
    }

    .adventure-content {
        padding: 1.25rem;
    }

    .adventure-title {
        font-size: 1.15rem;
    }

    .meta-item {
        gap: 0.5rem;
    }

    .meta-item i {
        font-size: 1rem;
    }

    .wishlist-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 575px) {
    .adventure-image-wrapper {
        height: 200px;
    }

    .adventure-content {
        padding: 1rem;
    }

    .adventure-title {
        font-size: 1.05rem;
        margin-bottom: 0.75rem;
    }

    .price-value {
        font-size: 1.35rem;
    }
}

/* Traveler's Experiences Section */
.experiences-section {
    background-color: #f5f5f5;
}

.section-title-experiences {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.testimonial-nav {
    display: flex;
    gap: 0.5rem;
}

.nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    min-width: 48px;
    min-height: 48px;
}

.nav-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.nav-btn i {
    font-size: 1.2rem;
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1rem);
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(26, 46, 26, 0.08);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(26, 46, 26, 0.12);
    transform: translateY(-4px);
}

.testimonial-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-placeholder i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

/* Tour Details Page Styles */
.tour-header-section {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 8rem 0 4rem;
}

.tour-header-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 46, 26, 0.4), rgba(26, 46, 26, 0.6));
}

.tour-header-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(26, 46, 26, 0.3);
}

.breadcrumb-light {
    background: transparent;
}

.breadcrumb-light .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-light .breadcrumb-item.active {
    color: var(--white-color);
}

.breadcrumb-light .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* Tour Info Card in Header */
.tour-info-card-header {
    background: white;
    border-radius: 12px;
    padding: 0;
    border: none;
    position: relative;
    z-index: 10;
}

.tour-info-card-header .card-body {
    padding: 2rem;
}

.tour-price-section {
    text-align: left;
}

.tour-price-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.tour-price-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.tour-price-per {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.tour-meta-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.tour-meta-item-inline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tour-meta-item-inline i {
    font-size: 1.5rem;
}

.tour-meta-item-inline small {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-meta-item-inline strong {
    font-size: 0.9rem;
}

/* Tour Details Section */
.tour-details-section {
    background-color: white;
}

.tour-section {
    margin-bottom: 3rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-color);
}

.tour-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.highlight-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.highlight-item i {
    font-size: 1.2rem;
}

.highlight-item span {
    font-size: 0.95rem;
    color: var(--dark-color);
}

/* Itinerary Styles */
.itinerary-container {
    padding-left: 1rem;
}

.itinerary-day {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.itinerary-day-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.itinerary-day-content {
    flex: 1;
}

.itinerary-day-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.itinerary-item {
    display: flex;
    align-items: flex-start;
    padding: 0.5rem 0;
    padding-left: 1rem;
}

.itinerary-item i {
    font-size: 1rem;
    margin-top: 0.2rem;
}

.itinerary-item span {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Tour Gallery */
.tour-gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.tour-gallery .gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tour-gallery .gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.tour-gallery .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 80, 22, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tour-gallery .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.tour-gallery .gallery-overlay i {
    font-size: 2rem;
    color: white;
}

/* Tour CTA Section */
.tour-cta-section {
    margin-top: 3rem;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(45, 80, 22, 0.95);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    user-select: none;
    z-index: 10000;
}

.lightbox-close {
    top: 20px;
    right: 40px;
    font-size: 3rem;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary-color);
}

.lightbox-caption {
    text-align: center;
    color: white;
    padding: 20px;
    font-size: 1rem;
}

/* Responsive Tour Details */
@media (max-width: 991px) {
    .tour-header-title {
        font-size: 2.5rem;
    }

    .tour-info-card-header {
        margin-top: 2rem;
    }

    .tour-meta-row {
        gap: 1rem;
    }
}

@media (max-width: 767px) {
    .tour-header-section {
        padding: 6rem 0 2rem;
        min-height: auto;
    }

    .tour-header-title {
        font-size: 2rem;
    }

    .tour-price-value {
        font-size: 2rem;
    }

    .tour-meta-row {
        flex-direction: column;
        gap: 0.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--dark-color);
}

.testimonial-location {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.2rem;
}

.testimonial-rating i {
    font-size: 0.9rem;
    color: #ffc107;
}

.testimonial-body {
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Responsive for Testimonials */
@media (max-width: 991px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .section-title-experiences {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .testimonial-card {
        flex: 0 0 100%;
    }

    .section-title-experiences {
        font-size: 1.75rem;
    }

    .testimonial-nav {
        margin-top: 1rem;
    }
}


/* ===================================
   Tours Listing Page Styles
   =================================== */

/* Tours Hero Section with Background Image */
.tours-hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(rgba(45, 80, 22, 0.4), rgba(45, 80, 22, 0.6)),
        url('https://images.unsplash.com/photo-1549366021-9f761d450615?w=1920') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title-tours {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 400;
    color: var(--white-color);
    letter-spacing: 20px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(45, 80, 22, 0.3);
    line-height: 1;
}

/* Tours Section */
.tours-section {
    background-color: #f5f5f5;
}

/* Responsive for Tours Page */
@media (max-width: 991px) {
    .hero-title-tours {
        font-size: 4.5rem;
        letter-spacing: 15px;
    }

    .tours-hero-section {
        height: 60vh;
        min-height: 450px;
    }
}

@media (max-width: 767px) {
    .hero-title-tours {
        font-size: 3rem;
        letter-spacing: 10px;
    }

    .tours-hero-section {
        height: 50vh;
        min-height: 400px;
    }
}

@media (max-width: 575px) {
    .hero-title-tours {
        font-size: 2.2rem;
        letter-spacing: 5px;
    }

    .tours-hero-section {
        min-height: 350px;
    }
}


/* ===================================
   Tour Details Page Styles
   =================================== */

/* Ensure navbar is visible on tour details page */
body:has(.tour-details-section) .navbar {
    background-color: rgba(45, 80, 22, 0.95) !important;
    box-shadow: 0 2px 20px rgba(45, 80, 22, 0.3);
}

/* Tour Details Section */
.tour-details-section {
    background-color: var(--light-color);
    min-height: 100vh;
}

/* Breadcrumb */
.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--dark-color);
}

/* Tour Image Container */
.tour-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.tour-main-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 500px;
    transition: var(--transition);
}

.tour-image-placeholder {
    width: 100%;
    height: 500px;
    background-color: #e9ecef;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Tour Info Card */
.tour-info-card {
    border: none;
    border-radius: 8px;
    background-color: var(--white-color);
}

.tour-detail-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.tour-price-section {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.tour-price-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tour-price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-display);
}

.tour-price-per {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.tour-meta-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.tour-meta-item i {
    font-size: 1.2rem;
}

/* Tour Sections */
.tour-section {
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(45, 80, 22, 0.05);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.section-title i {
    color: var(--primary-color);
}

.tour-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Highlights */
.highlight-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 1rem;
}

.highlight-item i {
    font-size: 1.2rem;
}

/* Itinerary Styles */
.itinerary-container {
    position: relative;
}

.itinerary-day {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.itinerary-day-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-right: 1.5rem;
    box-shadow: 0 4px 10px rgba(45, 80, 22, 0.3);
}

.itinerary-day-content {
    flex: 1;
    padding-top: 0.5rem;
}

.itinerary-day-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.itinerary-item {
    display: flex;
    align-items: flex-start;
    padding: 0.5rem 0;
    padding-left: 65px;
    font-size: 1rem;
    color: var(--text-muted);
}

.itinerary-item i {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Included/Bring Lists */
.included-list,
.bring-list {
    list-style: none;
    padding: 0;
}

.included-list li,
.bring-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--text-muted);
}

.included-list i,
.bring-list i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

/* Tour CTA Section */
.tour-cta-section {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.05), rgba(74, 124, 44, 0.05));
}

.tour-cta-section h4 {
    color: var(--dark-color);
    font-weight: 700;
}

/* Tour Gallery Styles */
.tour-gallery {
    margin-top: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 4/3;
    background-color: #e9ecef;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #e9ecef;
    color: var(--text-muted);
}

.gallery-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 46, 26, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    color: var(--white-color);
    font-size: 2rem;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Lightbox Modal Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 46, 26, 0.95);
    overflow: hidden;
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(26, 46, 26, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--white-color);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white-color);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: var(--transition);
    z-index: 10000;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary-color);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-caption {
    text-align: center;
    color: var(--white-color);
    padding: 15px;
    font-size: 1rem;
    margin-top: 10px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .tour-info-card {
        position: static !important;
        margin-bottom: 2rem;
    }

    .tour-detail-title {
        font-size: 1.5rem;
    }

    .tour-price-value {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .tour-section {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .itinerary-day-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 1rem;
    }

    .itinerary-item {
        padding-left: 55px;
    }

    .tour-main-image {
        max-height: 300px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 30px;
        padding: 10px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 35px;
    }
}

/* Tour Details Header with Background Image */
.tour-header-section {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 2rem 0 3rem;
}

.tour-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(45, 80, 22, 0.3) 0%, rgba(45, 80, 22, 0.6) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem 0 3rem;
}

.tour-header-overlay .container {
    position: relative;
    z-index: 2;
}

.breadcrumb-light {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-light .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-light .breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-light .breadcrumb-item.active {
    color: white;
}

.breadcrumb-light .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

.tour-header-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 8px rgba(45, 80, 22, 0.5);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.tour-info-card-header {
    background: white;
    border-radius: 12px;
    border: none;
}

.tour-info-card-header .card-body {
    padding: 1.5rem;
}

.tour-price-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.tour-price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
}

.tour-price-per {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.tour-meta-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tour-meta-item-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 120px;
}

.tour-meta-item-inline i {
    font-size: 1.2rem;
}

.tour-meta-item-inline small {
    font-size: 0.75rem;
    line-height: 1;
}

.tour-meta-item-inline strong {
    font-size: 0.9rem;
    line-height: 1;
}

/* Tour Details Content */
.tour-details-section {
    background-color: white;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.tour-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.highlight-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.itinerary-day {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.itinerary-day-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.itinerary-day-content {
    flex: 1;
}

.itinerary-day-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.itinerary-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0;
    margin-left: 3.5rem;
}

/* Responsive */
@media (max-width: 991px) {
    .tour-header-title {
        font-size: 2.5rem;
    }

    .tour-header-section {
        min-height: 400px;
    }

    .tour-info-card-header {
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .tour-header-title {
        font-size: 2rem;
    }

    .tour-header-section {
        min-height: 350px;
    }

    .tour-meta-row {
        flex-direction: column;
        gap: 0.75rem;
    }

    .tour-meta-item-inline {
        min-width: 100%;
    }
}

/* Global Button Styles with Circular Icons */
.btn-primary {
    background-color: var(--dark-color);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 46, 26, 0.3);
}

.btn-primary i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-primary:hover i {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateX(3px);
}

.btn-outline-dark {
    border: 2px solid var(--dark-color);
    color: var(--dark-color);
    background-color: transparent;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.btn-outline-dark:hover {
    background-color: var(--dark-color);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-dark i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(26, 46, 26, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-outline-dark:hover i {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(3px);
}

.btn-light {
    background-color: white;
    color: var(--dark-color);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.btn-light:hover {
    background-color: #f8f9fa;
    color: var(--dark-color);
    transform: translateY(-2px);
}

.btn-light i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(26, 46, 26, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-light:hover i {
    background-color: rgba(26, 46, 26, 0.15);
    transform: translateX(3px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
}

.btn-lg i {
    width: 36px;
    height: 36px;
}

/* Additional spacing for featured section */
.featured-tours.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.featured-tours .row.mb-5 {
    margin-bottom: 4rem !important;
    min-height: 120px;
}

.featured-tours .col-lg-4,
.featured-tours .col-lg-5,
.featured-tours .col-lg-3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Contact Page Styles */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--darker-color) 100%);
    color: var(--white-color);
    text-align: center;
}

.page-header h1 {
    color: var(--white-color);
    margin-bottom: 1rem;
}

.page-header .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.page-header-image {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(rgba(26, 46, 26, 0.5), rgba(26, 46, 26, 0.6)),
        url('https://images.unsplash.com/photo-1534759926787-89fa60f35848?w=1920') center center/cover no-repeat;
    color: var(--white-color);
    text-align: center;
}

.page-header-overlay {
    position: relative;
    z-index: 2;
}

.page-header-image h1 {
    color: var(--white-color);
    margin-bottom: 1rem;
    font-family: var(--font-display);
    text-shadow: 0 2px 10px rgba(26, 46, 26, 0.3);
}

.page-header-image .lead {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    text-shadow: 0 1px 5px rgba(26, 46, 26, 0.3);
}

.contact-info-card {
    background-color: var(--white-color);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(26, 46, 26, 0.08);
}

.contact-info-card h3 {
    font-family: var(--font-display);
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.contact-item {
    padding: 1rem 0;
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-item h5 {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-form-card {
    background-color: var(--white-color);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(26, 46, 26, 0.08);
}

.contact-form-card h3 {
    font-family: var(--font-display);
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border-radius: 4px;
    border: 2px solid #e0e0e0;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(45, 80, 22, 0.25);
}

.contact-form-card textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contact-form-card .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
    padding: 0.875rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition);
}

.contact-form-card .btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 46, 26, 0.15);
}

.social-links .btn {
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Form Validation Styles */
.was-validated .form-control:valid,
.form-control.is-valid {
    border-color: #28a745;
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    display: none;
    font-size: 0.875rem;
    color: #dc3545;
    margin-top: 0.25rem;
}

.was-validated .form-control:invalid~.invalid-feedback,
.form-control.is-invalid~.invalid-feedback {
    display: block;
}

/* Responsive Contact Page */
@media (max-width: 991px) {

    .page-header,
    .page-header-image {
        padding: 120px 0 60px;
    }

    .page-header h1,
    .page-header-image h1 {
        font-size: 2.5rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 2rem;
    }
}

@media (max-width: 767px) {

    .page-header,
    .page-header-image {
        padding: 100px 0 50px;
    }

    .page-header h1,
    .page-header-image h1 {
        font-size: 2rem;
    }

    .page-header .lead,
    .page-header-image .lead {
        font-size: 1rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .icon-box {
        width: 45px;
        height: 45px;
    }

    .icon-box i {
        font-size: 1.3rem;
    }
}

/* ===================================
   About Page Styles
   =================================== */

/* Page Header */
.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(rgba(26, 46, 26, 0.6), rgba(26, 46, 26, 0.7)),
        url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1920') center center/cover no-repeat;
    text-align: center;
    position: relative;
}

.page-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

/* About Content Section */
.about-content-section {
    background-color: var(--white-color);
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-text {
    padding-left: 2rem;
}

.section-heading {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.about-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark-color);
    line-height: 1.8;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Info Cards */
.info-card {
    padding: 2.5rem;
    background-color: var(--light-color);
    border-radius: 8px;
    transition: var(--transition);
}

.info-card:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.info-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.info-card:hover .info-icon {
    color: var(--white-color);
}

.info-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.info-card:hover .info-title {
    color: var(--white-color);
}

.info-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
}

.info-card:hover .info-text {
    color: rgba(255, 255, 255, 0.9);
}

/* Feature Cards */
.feature-card {
    padding: 2rem 1.5rem;
    background-color: var(--white-color);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(26, 46, 26, 0.08);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    box-shadow: 0 8px 24px rgba(26, 46, 26, 0.12);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

/* Statistics Section */
.stats-section {
    background-color: var(--light-color);
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Values Section */
.values-section {
    background-color: var(--white-color);
}

.value-card {
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 8px;
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    background-color: var(--white-color);
    box-shadow: 0 8px 24px rgba(26, 46, 26, 0.12);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.value-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.value-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white-color);
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn {
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition);
}

.cta-section .btn-light {
    background-color: var(--white-color);
    color: var(--dark-color);
    border: 2px solid var(--white-color);
}

.cta-section .btn-light:hover {
    background-color: transparent;
    color: var(--white-color);
}

.cta-section .btn-outline-light {
    background-color: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
}

.cta-section .btn-outline-light:hover {
    background-color: var(--white-color);
    color: var(--dark-color);
}

/* Responsive Styles for About Page */
@media (max-width: 991px) {
    .page-title {
        font-size: 2.5rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .about-text {
        padding-left: 0;
        margin-top: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 120px 0 60px;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .section-heading {
        font-size: 1.75rem;
        text-align: center;
    }

    .about-text .lead {
        font-size: 1.1rem;
    }

    .info-card,
    .feature-card,
    .value-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-section .btn {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .page-title {
        font-size: 1.75rem;
    }

    .section-heading {
        font-size: 1.5rem;
    }

    .feature-icon,
    .value-icon {
        font-size: 2rem;
    }

    .info-icon {
        font-size: 2.5rem;
    }
}


/* Responsive Testimonials */
@media (max-width: 991px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .section-title-experiences {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .testimonial-card {
        flex: 0 0 100%;
        padding: 1.5rem;
    }

    .section-title-experiences {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .testimonials-track {
        gap: 1rem;
    }

    .testimonial-nav {
        justify-content: center;
        margin-top: 1.5rem;
    }

    .nav-btn {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 575px) {
    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-avatar img,
    .avatar-placeholder {
        width: 50px;
        height: 50px;
    }

    .avatar-placeholder i {
        font-size: 2rem;
    }
}

/* Additional Mobile Navigation Enhancements */
@media (max-width: 767px) {

    /* Ensure mobile menu is accessible */
    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    /* Better spacing for mobile nav items */
    .nav-item {
        margin: 0;
    }

    .nav-item .btn {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }

    /* Improve mobile menu animation */
    .navbar-collapse {
        transition: all 0.3s ease-in-out;
    }
}

/* Responsive Grid Improvements */
@media (max-width: 767px) {

    /* Ensure proper column stacking */
    .row>[class*='col-'] {
        margin-bottom: 1rem;
    }

    .row>[class*='col-']:last-child {
        margin-bottom: 0;
    }
}

/* Form Responsive Enhancements */
@media (max-width: 767px) {

    /* Better form layout on mobile */
    .form-group,
    .mb-3 {
        margin-bottom: 1.25rem;
    }

    /* Larger checkboxes and radios for touch */
    .form-check-input {
        width: 1.25rem;
        height: 1.25rem;
        margin-top: 0.125rem;
    }

    .form-check-label {
        padding-left: 0.5rem;
        font-size: 0.95rem;
    }

    /* Better file input styling */
    .form-control[type="file"] {
        padding: 0.75rem;
    }
}

/* Admin Panel Responsive Improvements */
@media (max-width: 991px) {
    .admin-sidebar {
        position: static;
        width: 100%;
        min-height: auto;
        margin-bottom: 2rem;
    }

    .admin-sidebar .nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .admin-sidebar .nav-link {
        flex: 1 1 auto;
        text-align: center;
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 767px) {
    .admin-sidebar .nav {
        flex-direction: column;
    }

    .admin-sidebar .nav-link {
        width: 100%;
    }

    .stat-card {
        margin-bottom: 1rem;
    }

    /* Better table display on mobile */
    .table-responsive {
        border: 0;
    }

    .table thead {
        display: none;
    }

    .table tbody tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid #dee2e6;
        border-radius: 8px;
        padding: 1rem;
        background-color: white;
    }

    .table tbody td {
        display: block;
        text-align: right;
        padding: 0.5rem 0;
        border: none;
        border-bottom: 1px solid #f0f0f0;
    }

    .table tbody td:last-child {
        border-bottom: none;
    }

    .table tbody td::before {
        content: attr(data-label);
        float: left;
        font-weight: 600;
        color: var(--dark-color);
    }
}

/* Accessibility Improvements for Mobile */
@media (max-width: 767px) {

    /* Ensure focus states are visible */
    a:focus,
    button:focus,
    input:focus,
    select:focus,
    textarea:focus {
        outline: 3px solid var(--primary-color);
        outline-offset: 2px;
    }

    /* Skip to content link for keyboard navigation */
    .skip-to-content {
        position: absolute;
        top: -40px;
        left: 0;
        background: var(--dark-color);
        color: white;
        padding: 8px;
        text-decoration: none;
        z-index: 100;
    }

    .skip-to-content:focus {
        top: 0;
    }
}

/* Performance Optimizations for Mobile */
@media (max-width: 767px) {

    /* Reduce animation complexity on mobile */
    .tour-card-modern:hover .tour-image-modern,
    .adventure-card:hover .adventure-image,
    .gallery-item:hover img {
        transform: scale(1.02);
    }

    /* Simplify transitions */
    * {
        transition-duration: 0.2s;
    }
}


/* ===================================
   News & Articles Section
   =================================== */

.articles-section {
    background-color: var(--light-color);
    padding: 5rem 0;
}

.section-title-articles {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

/* Article Cards */
.article-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(26, 46, 26, 0.08);
    transition: var(--transition);
    background-color: var(--white-color);
    height: 100%;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 46, 26, 0.15);
}

.article-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.article-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 66.67%;
    /* 3:2 aspect ratio */
    overflow: hidden;
}

.article-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .article-image {
    transform: scale(1.08);
}

.article-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Article Overlay with Gradient */
.article-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top,
            rgba(26, 46, 26, 0.85) 0%,
            rgba(26, 46, 26, 0.6) 50%,
            rgba(26, 46, 26, 0.2) 80%,
            transparent 100%);
    color: var(--white-color);
    transition: var(--transition);
}

.article-card:hover .article-overlay {
    background: linear-gradient(to top,
            rgba(26, 46, 26, 0.9) 0%,
            rgba(26, 46, 26, 0.7) 50%,
            rgba(26, 46, 26, 0.3) 80%,
            transparent 100%);
}

/* Article Meta */
.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
}

.article-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(212, 165, 116, 0.9);
    color: var(--white-color);
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
}

.article-date {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.article-date i {
    font-size: 0.9rem;
}

/* Article Title */
.article-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--white-color);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive Adjustments for Articles */
@media (max-width: 991px) {
    .section-title-articles {
        font-size: 2.5rem;
    }

    .article-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .articles-section {
        padding: 3rem 0;
    }

    .section-title-articles {
        font-size: 2rem;
    }

    .article-overlay {
        padding: 1.5rem 1rem;
    }

    .article-title {
        font-size: 1.1rem;
    }

    .article-meta {
        font-size: 0.8rem;
        gap: 0.75rem;
    }
}

/* ===================================
   News & Articles Section Styles
   =================================== */

/* Articles Section on Homepage */
.articles-section {
    background-color: var(--light-color);
    padding: 6rem 0;
}

.articles-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.articles-section .section-title-modern {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.articles-section .section-title-modern .text-primary {
    color: var(--primary-color);
    font-size: 3.5rem;
    margin-right: 0.5rem;
}

.articles-section .section-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

/* Article Cards */
.article-card {
    background-color: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(26, 46, 26, 0.08);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(26, 46, 26, 0.15);
}

.article-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
    background-color: var(--dark-color);
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.article-card:hover .article-image {
    transform: scale(1.08);
}

.article-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(26, 46, 26, 0.85) 0%, rgba(26, 46, 26, 0.4) 60%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.article-category {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white-color);
    background-color: rgba(212, 165, 116, 0.9);
    padding: 0.4rem 0.8rem;
    border-radius: 3px;
}

.article-date {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

.article-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-excerpt {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-content .btn {
    align-self: flex-start;
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: var(--transition);
}

.article-content .btn i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.article-content .btn:hover i {
    transform: translateX(5px);
}

/* More Articles Button */
.btn-more-articles {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--dark-color);
    border-radius: 0;
    background-color: transparent;
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition);
}

.btn-more-articles:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
}

.btn-more-articles i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-more-articles:hover i {
    transform: translateX(5px);
}

/* Articles Listing Page */
.articles-page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.articles-page-header h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.articles-page-header h1 .text-primary {
    color: var(--primary-color);
    font-size: 4rem;
    margin-right: 0.5rem;
}

.articles-page-header .lead {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design for Articles */

/* Tablet Devices (768px - 991px) */
@media (max-width: 991px) {

    .articles-section .section-title-modern,
    .articles-page-header h1 {
        font-size: 2.5rem;
    }

    .articles-section .section-title-modern .text-primary,
    .articles-page-header h1 .text-primary {
        font-size: 3rem;
    }

    .article-image-wrapper {
        height: 250px;
    }

    .article-title {
        font-size: 1.3rem;
    }
}

/* Mobile Devices (320px - 767px) */
@media (max-width: 767px) {
    .articles-section {
        padding: 4rem 0;
    }

    .articles-section .section-header {
        margin-bottom: 3rem;
    }

    .articles-section .section-title-modern,
    .articles-page-header h1 {
        font-size: 2rem;
    }

    .articles-section .section-title-modern .text-primary,
    .articles-page-header h1 .text-primary {
        font-size: 2.5rem;
    }

    .articles-section .section-subtitle,
    .articles-page-header .lead {
        font-size: 1rem;
    }

    .article-card {
        margin-bottom: 1.5rem;
    }

    .article-image-wrapper {
        height: 220px;
    }

    .article-overlay {
        padding: 1rem;
    }

    .article-category {
        font-size: 0.7rem;
        padding: 0.35rem 0.7rem;
    }

    .article-date {
        font-size: 0.8rem;
    }

    .article-content {
        padding: 1.25rem;
    }

    .article-title {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .article-excerpt {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .article-content .btn {
        width: 100%;
        justify-content: center;
        min-height: 48px;
    }

    .btn-more-articles {
        width: 100%;
        justify-content: center;
        min-height: 48px;
        padding: 0.875rem 2rem;
    }
}

/* Extra Small Mobile Devices (320px - 575px) */
@media (max-width: 575px) {

    .articles-section .section-title-modern,
    .articles-page-header h1 {
        font-size: 1.75rem;
    }

    .articles-section .section-title-modern .text-primary,
    .articles-page-header h1 .text-primary {
        font-size: 2.25rem;
    }

    .article-image-wrapper {
        height: 200px;
    }

    .article-title {
        font-size: 1.1rem;
    }

    .article-excerpt {
        font-size: 0.875rem;
        -webkit-line-clamp: 2;
    }
}

/* Touch device optimizations for articles */
@media (hover: none) and (pointer: coarse) {
    .article-card:hover {
        transform: none;
    }

    .article-card:active {
        transform: scale(0.98);
    }
}


/* ===================================
   Article Details Page Styles
   =================================== */

/* Article Header */
.article-header {
    background-color: var(--light-color);
}

.article-header .badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    letter-spacing: 1px;
}

.article-header h1 {
    font-family: var(--font-display);
    line-height: 1.2;
}

/* Article Content */
.article-content {
    background-color: var(--white-color);
}

.article-image {
    overflow: hidden;
    border-radius: var(--border-radius);
}

.article-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 600px;
}

.article-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-color);
}

.article-text p {
    margin-bottom: 1.5rem;
}

/* Comments Section */
.comments-section {
    margin-top: 3rem;
}

.comments-section h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.comments-list {
    margin-bottom: 3rem;
}

.comment-item {
    background-color: var(--light-color);
    border: 1px solid #e0e0e0 !important;
    transition: var(--transition);
}

.comment-item:hover {
    box-shadow: 0 2px 10px rgba(26, 46, 26, 0.05);
}

.comment-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.comment-header strong {
    font-weight: 600;
    font-size: 1rem;
}

.comment-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Comment Form */
.comment-form {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.comment-form h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.comment-form .form-control,
.comment-form .form-select {
    background-color: var(--white-color);
}

.comment-form .btn {
    min-width: 150px;
}

/* Responsive adjustments for article page */
@media (max-width: 767px) {
    .article-header {
        padding: 3rem 0 !important;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .article-image img {
        max-height: 300px;
    }

    .article-text {
        font-size: 1rem;
    }

    .comments-section h3 {
        font-size: 1.5rem;
    }

    .comment-form {
        padding: 1.5rem;
    }

    .comment-form h4 {
        font-size: 1.25rem;
    }
}

/* ===================================
   Social Moments Section
   =================================== */
.social-moments-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.section-title-moments {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.btn-show-more {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-show-more:hover {
    background-color: var(--dark-color);
    color: #fff;
    transform: translateX(5px);
}

.moments-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
    margin-top: 40px;
}

.moment-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(26, 46, 26, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.moment-card:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 0 8px 25px rgba(26, 46, 26, 0.15);
}

.moment-card-1 {
    grid-column: 1 / 4;
    grid-row: 1 / 2;
    transform: rotate(-2deg);
}

.moment-card-2 {
    grid-column: 4 / 7;
    grid-row: 1 / 3;
    transform: rotate(1deg);
}

.moment-card-3 {
    grid-column: 7 / 10;
    grid-row: 1 / 2;
    transform: rotate(-1deg);
}

.moment-card-4 {
    grid-column: 10 / 13;
    grid-row: 1 / 2;
    transform: rotate(2deg);
}

.moment-card-5 {
    grid-column: 1 / 4;
    grid-row: 2 / 3;
    transform: rotate(1deg);
}

.moment-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.moment-card:hover .moment-image {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 992px) {
    .moments-gallery {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(3, 250px);
    }

    .moment-card-1 {
        grid-column: 1 / 4;
        grid-row: 1 / 2;
    }

    .moment-card-2 {
        grid-column: 4 / 7;
        grid-row: 1 / 2;
    }

    .moment-card-3 {
        grid-column: 1 / 4;
        grid-row: 2 / 3;
    }

    .moment-card-4 {
        grid-column: 4 / 7;
        grid-row: 2 / 3;
    }

    .moment-card-5 {
        grid-column: 1 / 7;
        grid-row: 3 / 4;
    }
}

@media (max-width: 768px) {
    .section-title-moments {
        font-size: 2rem;
    }

    .moments-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
        gap: 15px;
    }

    .moment-card-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .moment-card-2 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .moment-card-3 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .moment-card-4 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .moment-card-5 {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
    }

    .moment-card {
        transform: rotate(0deg) !important;
    }
}

/* ===================================
   Social Moments Section
   =================================== */
.social-moments-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.section-title-moments {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.btn-show-more {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-show-more:hover {
    background-color: var(--dark-color);
    color: #fff;
    transform: translateX(5px);
}

.moments-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.moment-card {
    position: relative;
    width: 280px;
    height: 350px;
    background: #fff;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(26, 46, 26, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.moment-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(26, 46, 26, 0.25);
    z-index: 10;
}

.moment-card-1 {
    transform: rotate(-3deg);
    margin-top: 20px;
}

.moment-card-2 {
    transform: rotate(2deg);
    margin-top: -10px;
}

.moment-card-3 {
    transform: rotate(-1deg);
    margin-top: 30px;
}

.moment-card-4 {
    transform: rotate(3deg);
    margin-top: 10px;
}

.moment-card-5 {
    transform: rotate(-2deg);
    margin-top: 25px;
}

.moment-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .moments-gallery {
        gap: 20px;
    }

    .moment-card {
        width: 240px;
        height: 300px;
    }
}

@media (max-width: 992px) {
    .moments-gallery {
        gap: 15px;
    }

    .moment-card {
        width: 200px;
        height: 260px;
    }
}

@media (max-width: 768px) {
    .section-title-moments {
        font-size: 2rem;
    }

    .moments-gallery {
        flex-direction: column;
        gap: 20px;
    }

    .moment-card {
        width: 100%;
        max-width: 350px;
        height: 400px;
        transform: rotate(0deg) !important;
        margin-top: 0 !important;
    }
}


/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet Devices (768px - 991px) */
@media (max-width: 991px) {
    .gallery-slide[data-slide="1"] {
        width: 70%;
        height: 70%;
    }

    .gallery-slide[data-slide="2"] {
        width: 85%;
        height: 85%;
    }

    .gallery-title {
        font-size: 3rem;
    }

    .gallery-slide[data-slide="1"] .gallery-title {
        font-size: 2.5rem;
    }

    .gallery-slide[data-slide="2"] .gallery-title {
        font-size: 2.75rem;
    }

    .gallery-slide[data-slide="3"] .gallery-title {
        font-size: 3.5rem;
    }

    .gallery-description {
        font-size: 1.3rem;
    }

    .scroll-indicator {
        bottom: 40px;
        right: 40px;
        padding: 10px 16px;
    }

    .current-slide {
        font-size: 1.8rem;
    }
}

/* Mobile Devices (320px - 767px) */
@media (max-width: 768px) {
    .gallery-slide[data-slide="1"] {
        width: 80%;
        height: 50%;
    }

    .gallery-slide[data-slide="2"] {
        width: 90%;
        height: 70%;
    }

    .gallery-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .gallery-slide[data-slide="1"] .gallery-title {
        font-size: 2rem;
    }

    .gallery-slide[data-slide="2"] .gallery-title {
        font-size: 2.25rem;
    }

    .gallery-slide[data-slide="3"] .gallery-title {
        font-size: 2.75rem;
    }

    .gallery-description {
        font-size: 1.1rem;
    }

    .gallery-slide[data-slide="1"] .gallery-description {
        font-size: 1rem;
    }

    .gallery-slide[data-slide="2"] .gallery-description {
        font-size: 1.05rem;
    }

    .gallery-slide[data-slide="3"] .gallery-description {
        font-size: 1.2rem;
    }

    .scroll-indicator {
        bottom: 30px;
        right: 30px;
        font-size: 0.9rem;
        padding: 8px 14px;
    }

    .current-slide {
        font-size: 1.5rem;
    }

    .slide-separator {
        font-size: 1.2rem;
    }

    .total-slides {
        font-size: 1rem;
    }

    .gallery-scroll-progress {
        left: 20px;
    }

    .progress-dot {
        width: 10px;
        height: 10px;
    }

    .scale-indicator {
        top: 30px;
        font-size: 0.75rem;
        padding: 8px 16px;
    }
}

/* Extra Small Mobile (320px - 575px) */
@media (max-width: 575px) {
    .gallery-slide[data-slide="1"] {
        width: 85%;
        height: 45%;
    }

    .gallery-slide[data-slide="2"] {
        width: 95%;
        height: 65%;
    }

    .gallery-title {
        font-size: 2rem;
    }

    .gallery-slide[data-slide="1"] .gallery-title {
        font-size: 1.75rem;
    }

    .gallery-slide[data-slide="2"] .gallery-title {
        font-size: 1.85rem;
    }

    .gallery-slide[data-slide="3"] .gallery-title {
        font-size: 2.25rem;
    }

    .gallery-description {
        font-size: 1rem;
    }

    .gallery-slide[data-slide="1"] .gallery-description {
        font-size: 0.9rem;
    }

    .gallery-slide[data-slide="2"] .gallery-description {
        font-size: 0.95rem;
    }

    .gallery-slide[data-slide="3"] .gallery-description {
        font-size: 1.05rem;
    }

    .scroll-indicator {
        bottom: 20px;
        right: 20px;
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    .current-slide {
        font-size: 1.3rem;
    }

    .gallery-content {
        padding: 15px;
    }

    .scale-indicator {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
}

/* 
===================================
   Fullscreen Scroll Gallery Section
   Progressive Scaling Effect
   =================================== */

.scroll-gallery-section {
    height: 400vh;
    position: relative;
    background: #0d0d0d;
}

.scroll-gallery-sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.scroll-gallery-section .scroll-gallery-container {
    position: relative;
    width: 300px;
    height: 180px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 46, 26, 0.5);
    background: #1a2e1a;
}

.scroll-gallery-section .gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.scroll-gallery-section .gallery-slide.active {
    opacity: 1 !important;
    z-index: 2;
}

.scroll-gallery-section .gallery-slide .gallery-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    position: relative;
}

.scroll-gallery-sticky-wrapper .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white-color);
    z-index: 100;
    text-shadow: 0 2px 10px rgba(26, 46, 26, 0.5);
    pointer-events: none;
}

.scroll-indicator .current-slide {
    font-size: 1.5rem;
}

.scroll-indicator .slide-separator {
    opacity: 0.6;
}

.scroll-indicator .total-slides {
    opacity: 0.6;
    font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .scroll-gallery-section {
        height: 300vh;
    }

    .scroll-gallery-container {
        width: 250px;
        height: 150px;
    }

    .scroll-indicator {
        bottom: 30px;
        font-size: 1rem;
    }

    .scroll-indicator .current-slide {
        font-size: 1.2rem;
    }
}

/* ===================================
   Call to Action Section
   =================================== */

.cta-section-modern {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 20px;
}

.cta-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 46, 26, 0.4);
    z-index: 1;
}

.cta-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white-color);
    color: var(--dark-color);
    padding: 16px 40px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(26, 46, 26, 0.2);
}

.btn-cta:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(26, 46, 26, 0.3);
}

.btn-cta i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-cta:hover i {
    transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cta-section-modern {
        min-height: 300px;
        padding: 60px 20px;
        background-attachment: scroll;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .btn-cta {
        padding: 14px 32px;
        font-size: 0.95rem;
    }
}

/* ===================================
   Modern Footer Section
   =================================== */

.footer-modern {
    background: linear-gradient(rgba(26, 46, 26, 0.7), rgba(26, 46, 26, 0.7)),
        url('../images/1.jpg') center/cover no-repeat;
    background-attachment: fixed;
    color: var(--white-color);
    padding: 80px 0 30px;
    position: relative;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 46, 26, 0.5);
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--white-color);
    margin-bottom: 0;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white-color);
}

.footer-address {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--white-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.footer-credits {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-designer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-designer a:hover {
    color: var(--white-color);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-modern {
        padding: 60px 0 30px;
    }

    .footer-logo {
        font-size: 1.5rem;
        text-align: center;
    }

    .footer-heading {
        margin-top: 2rem;
    }

    .footer-bottom {
        margin-top: 40px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-credits {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
}

/* ===================================
   Article Cards Styles
   =================================== */

.article-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--white-color);
    transition: var(--transition);
    box-shadow: 0 2px 15px rgba(26, 46, 26, 0.08);
}

.article-card:hover {
    box-shadow: 0 5px 30px rgba(26, 46, 26, 0.15);
    transform: translateY(-5px);
}

.article-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
    background-color: var(--dark-color);
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.article-card:hover .article-image {
    transform: scale(1.05);
}

.article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(26, 46, 26, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1.5rem;
}

.article-category {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-date {
    color: var(--white-color);
    font-size: 0.85rem;
    font-weight: 500;
}

.article-content {
    padding: 1.5rem;
}

.article-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.article-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.article-card .btn {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.75rem 1.5rem;
}

/* Article Hero Header */
.article-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-overlay {
    z-index: 1;
}

.article-hero .container {
    z-index: 2;
}

.article-hero h1 {
    color: var(--white-color);
    text-shadow: 0 2px 10px rgba(26, 46, 26, 0.3);
}

/* Article Content */
.article-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-color);
}

.article-text p {
    margin-bottom: 1.5rem;
}

/* Comments Section */
.comments-section {
    margin-top: 3rem;
}

.comment-item {
    transition: var(--transition);
}

.comment-item:hover {
    background-color: var(--white-color) !important;
    box-shadow: 0 2px 10px rgba(26, 46, 26, 0.08);
}

.comment-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.comment-text {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Responsive Article Styles */
@media (max-width: 767px) {
    .article-image-wrapper {
        height: 250px;
    }

    .article-title {
        font-size: 1.2rem;
    }

    .article-hero {
        min-height: 50vh !important;
    }

    .article-hero .container {
        padding-top: 100px !important;
        padding-bottom: 50px !important;
    }

    .article-hero h1 {
        font-size: 2rem !important;
    }
}


/* ===================================
   Articles/News Section Styles
   =================================== */

/* Articles Section */
.articles-section {
    background-color: #f5f5f5;
}

.section-title-articles {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

/* Article Cards */
.article-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(26, 46, 26, 0.08);
    transition: var(--transition);
    height: 100%;
}

.article-card:hover {
    box-shadow: 0 8px 24px rgba(26, 46, 26, 0.12);
    transform: translateY(-4px);
}

.article-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.article-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover .article-image {
    transform: scale(1.05);
}

.article-image-placeholder {
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.article-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 46, 26, 0.85) 0%, rgba(26, 46, 26, 0.4) 60%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    color: white;
}

.article-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
}

.article-category {
    background-color: var(--primary-color);
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
}

.article-date {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.empty-state h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Responsive for Articles */
@media (max-width: 991px) {
    .section-title-articles {
        font-size: 2.5rem;
    }

    .article-image-wrapper {
        height: 280px;
    }
}

@media (max-width: 767px) {
    .section-title-articles {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .article-image-wrapper {
        height: 250px;
    }

    .article-title {
        font-size: 1.15rem;
    }

    .article-overlay {
        padding: 1.5rem 1.25rem 1.25rem;
    }
}

@media (max-width: 575px) {
    .article-image-wrapper {
        height: 220px;
    }

    .article-title {
        font-size: 1.05rem;
        margin-bottom: 0.75rem;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Article Hero Header */
.article-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
}

.hero-image-overlay {
    z-index: 1;
}

.article-hero .container {
    position: relative;
    z-index: 2;
}

.article-hero .badge {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.article-hero h1 {
    color: white;
    text-shadow: 2px 2px 8px rgba(26, 46, 26, 0.5);
}

/* Article Content */
.article-content {
    background-color: white;
}

.article-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

/* Comments Section */
.comments-section {
    margin-top: 3rem;
}

.comment-item {
    background-color: #f8f9fa;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comment-text {
    color: #555;
    line-height: 1.7;
}

/* Responsive for Article Detail */
@media (max-width: 767px) {
    .article-hero {
        min-height: 50vh;
    }

    .article-hero h1 {
        font-size: 2rem;
    }

    .article-text {
        font-size: 1rem;
    }
}


/* ===================================
   Articles Page Styles
   =================================== */

/* Article Cards */
.article-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(26, 46, 26, 0.08);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    box-shadow: 0 8px 24px rgba(26, 46, 26, 0.12);
    transform: translateY(-4px);
}

.article-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover .article-image {
    transform: scale(1.05);
}

.article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: linear-gradient(to bottom, rgba(26, 46, 26, 0.5) 0%, transparent 100%);
}

.article-category {
    background-color: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-date {
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
}

.article-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
    line-height: 1.3;
}

.article-excerpt {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex: 1;
}

.btn-article-read {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark-color);
    background-color: white;
    border: 2px solid #ddd;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-article-read:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-article-read i {
    font-size: 1rem;
    transition: var(--transition);
}

.btn-article-read:hover i {
    transform: translateX(3px);
}

/* Article Detail Page */
.article-hero {
    position: relative;
}

.article-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-muted);
}

.article-text p {
    margin-bottom: 1.5rem;
}

/* Comments Section */
.comments-section {
    margin-top: 3rem;
}

.comment-item {
    background-color: var(--light-color);
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.comment-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.comment-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Comment Form Button */
.btn-article-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 12px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-article-submit:hover {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
    color: white;
}

.btn-article-submit i {
    font-size: 1rem;
    transition: var(--transition);
}

.btn-article-submit:hover i {
    transform: translateX(3px);
}

/* Responsive Articles */
@media (max-width: 991px) {
    .article-image-wrapper {
        height: 220px;
    }
}

@media (max-width: 767px) {
    .article-image-wrapper {
        height: 200px;
    }

    .article-content {
        padding: 1.25rem;
    }

    .article-title {
        font-size: 1.15rem;
    }

    .btn-article-read,
    .btn-article-submit {
        width: 100%;
        justify-content: center;
        min-height: 48px;
    }

    .article-hero {
        min-height: 50vh !important;
    }
}

@media (max-width: 575px) {
    .article-content {
        padding: 1rem;
    }

    .article-title {
        font-size: 1.05rem;
        margin-bottom: 0.75rem;
    }

    .article-excerpt {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}



/* ===================================
   Contact Page Styles
   =================================== */

.contact-info-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.contact-item {
    padding: 0.5rem 0;
}

.icon-box {
    width: 45px;
    height: 45px;
    background-color: var(--light-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

/* WhatsApp icon special styling */
.icon-box i.bi-whatsapp {
    color: #25d366;
}

.contact-item a:hover {
    color: var(--primary-color) !important;
}

/* Contact form styling */
.contact-form-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
