/* ==========================================================================
   CSS Variables & Base Styles
   ========================================================================== */
:root {
    /* Colors */
    --primary: #15803d;     /* Deep Green */
    --primary-light: #22c55e;
    --primary-dark: #166534;
    --secondary: #f59e0b;   /* Warm Gold/Orange */
    --secondary-dark: #d97706;
    --text-main: #1f2937;
    --text-muted: #4b5563;
    --text-light: #9ca3af;
    --bg-main: #ffffff;
    --bg-light: #f9fafb;
    --bg-dark: #111827;
    --white: #ffffff;
    --black: #000000;
    
    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Shadows & Transitions */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-header: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

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

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

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

/* ==========================================================================
   Layout & Utilities
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

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

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

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

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

.bg-primary-dark {
    background-color: var(--primary-dark);
}

.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-primary);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(21, 128, 61, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21, 128, 61, 0.4);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

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

/* Section Headers */
.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 15px auto 0;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    padding: 20px 0;
    transition: all var(--transition-normal);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-header);
    border-bottom: none;
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--white);
    transition: color var(--transition-normal);
}

.site-header.scrolled .logo a {
    color: var(--primary-dark);
}

.logo-icon {
    color: var(--secondary);
    font-size: 1.8rem;
}

.logo-text span {
    color: var(--secondary);
    font-weight: 400;
}

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

.main-nav a {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.site-header.scrolled .main-nav a {
    color: var(--text-main);
}

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

.site-header.scrolled .main-nav a:hover, .site-header.scrolled .main-nav a.active {
    color: var(--primary);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--secondary);
    transition: width var(--transition-normal);
}

.site-header.scrolled .main-nav a::after {
    background-color: var(--primary);
}

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

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

.site-header.scrolled .mobile-menu-toggle {
    color: var(--primary-dark);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

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

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

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05); /* Slight zoom effect initially */
    transition: transform 6s ease;
}

.slide.active img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-fast);
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: var(--secondary);
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .prev-btn { left: 15px; }
    .next-btn { right: 15px; }
    .slider-dots { bottom: 20px; gap: 10px; }
    .dot { width: 10px; height: 10px; }
}

.hero-content {
    text-align: center;
    color: var(--white);
    padding-top: 80px; /* Offset for header */
}

.hero-title {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto 30px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-btn {
    font-size: 1.1rem;
    padding: 15px 35px;
    animation: fadeInUp 1s ease 0.6s both;
}

/* Search Form */
.quick-search {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-top: 50px;
    animation: fadeInUp 1s ease 0.8s both;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
}

.form-group {
    flex: 1;
    min-width: 200px;
    text-align: left;
}

.form-group.btn-group {
    flex: 0 0 auto;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--white);
}

.form-group label i {
    color: var(--secondary);
    margin-right: 5px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.3);
    background-color: var(--white);
    color: var(--text-main);
    font-family: var(--font-primary);
    font-size: 1rem;
    outline: none;
    transition: all var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.2);
}

.search-btn {
    width: 100%;
    padding: 12px 25px;
    border-radius: var(--radius-md);
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ==========================================================================
   Destinations Section
   ========================================================================== */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.destination-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    cursor: pointer;
}

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

.dest-thumb {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.dest-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.destination-card:hover .dest-thumb img {
    transform: scale(1.1);
}

.dest-thumb::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.dest-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    color: var(--white);
    z-index: 2;
}

.dest-content h3 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.dest-content p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-normal);
}

.destination-card:hover .dest-content p {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Packages Section
   ========================================================================== */
.packages-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.package-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

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

.pkg-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.package-card:hover .pkg-image img {
    transform: scale(1.05);
}

.pkg-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.pkg-details {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pkg-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.pkg-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pkg-meta i {
    color: var(--primary);
    margin-right: 5px;
}

.pkg-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--bg-light);
}

.pkg-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

.price-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

/* ==========================================================================
   Features Section (Why Choose Us)
   ========================================================================== */
.features-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0,0,0,0.03);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(21, 128, 61, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(21, 128, 61, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    transition: all var(--transition-normal);
}

.feature-item:hover .feature-icon {
    background-color: var(--primary);
    color: var(--white);
    transform: rotateY(180deg);
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.client-rating {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.review-text {
    color: var(--white);
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary);
}

.client-details h4 {
    color: var(--white);
    margin-bottom: 2px;
    font-family: var(--font-primary);
    font-size: 1.1rem;
}

.client-details span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.site-footer {
    background-color: var(--bg-dark);
    color: var(--white);
    padding-top: 80px;
}

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

.footer-widget h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.company-info p {
    color: var(--text-light);
}

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

.quick-links a {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-links a i {
    font-size: 0.8rem;
    color: var(--primary);
    transition: transform var(--transition-fast);
}

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

.quick-links a:hover i {
    transform: translateX(3px);
}

.contact-info ul li {
    color: var(--text-light);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-info ul li i {
    color: var(--primary);
    margin-top: 5px;
}

.contact-info a {
    color: var(--text-light);
}

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

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

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

.social-icons a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #0d131e;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

/* ==========================================================================
   Destinations Page Specific Styles
   ========================================================================== */

/* Page Banner */
.page-banner {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px; /* Header offset */
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
    z-index: -1;
}

.banner-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.breadcrumbs {
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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

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

.breadcrumbs i {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
}

.breadcrumbs span {
    color: rgba(255,255,255,0.8);
}

/* Filter Section */
.section-padding-sm {
    padding: 40px 0;
}

.filter-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-md);
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.filter-form .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-group {
    flex: 1;
}

.filter-group.col-search { flex: 2; min-width: 250px; }
.filter-group.col-category { flex: 1.5; min-width: 200px; }
.filter-group.col-btn { flex: 0 0 150px; }

.align-self-end {
    display: flex;
    align-items: flex-end;
}

.filter-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.input-with-icon .form-control {
    padding-left: 40px;
    background-color: var(--bg-light);
    border-color: #e5e7eb;
}

.btn-block {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Destinations Main Grid */
.results-meta {
    font-size: 0.95rem;
    color: var(--text-muted);
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 15px;
}

.grid-destinations {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.grid-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
}

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

.card-thumb {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.grid-card:hover .card-thumb img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.card-body {
    padding: 25px;
    flex: 1;
}

.card-body h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.location-tag {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.card-footer {
    padding: 20px 25px;
    border-top: 1px solid #f3f4f6;
    background: var(--bg-light);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
    width: 100%;
}

/* Modern Premium Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    position: relative;
    padding-top: 35px;
}

.pagination-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    border-radius: 50%; /* Circle for numbers */
    background: var(--white);
    border: 1px solid #e5e7eb;
    color: var(--text-main);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-normal);
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.page-link:hover:not(.disabled) {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(21, 128, 61, 0.2);
}

.page-link.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(21, 128, 61, 0.3);
}

.page-link.prev, 
.page-link.next {
    border-radius: 30px; /* Pill shape for navigation */
    padding: 0 25px;
    gap: 10px;
    font-size: 0.95rem;
}

.page-link.disabled {
    color: #cbd5e1;
    border-color: #f1f5f9;
    background: #f8fafc;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.cta-banner-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* ==========================================================================
   Destination Details Page Specific Styles
   ========================================================================== */

.details-banner {
    height: 50vh;
    min-height: 400px;
}

.banner-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

/* Two-Column Layout */
.details-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.details-main {
    flex: 1;
    min-width: 0; /* Prevents flex flex-grow issues */
    width: 70%;
}

.details-sidebar {
    width: 380px;
    flex-shrink: 0;
}

.sidebar-inner {
    position: sticky;
    top: 100px; 
}

/* Content Blocks */
.content-block {
    margin-top: 50px;
}

.content-block:first-child {
    margin-top: 0;
}

.content-block h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.content-block:first-child h2 {
    margin-top: 0;
}

.content-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

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

/* Highlights List */
.highlights-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

.highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--bg-light);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-main);
    border: 1px solid #e5e7eb;
}

.highlights-list i {
    font-size: 1.2rem;
    color: var(--primary);
    margin-top: 3px;
}

/* Details Gallery */
.details-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    display: block;
    box-shadow: var(--shadow-sm);
}

.gallery-item::after {
    content: '\f00e';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(21, 128, 61, 0.7);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    opacity: 0;
    transition: all var(--transition-normal);
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

/* Sidebar Widgets */
.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid #f3f4f6;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
}

.sidebar-widget h3 i {
    color: var(--secondary);
}

.facts-list li {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f3f4f6;
}

.facts-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.fact-icon {
    width: 45px;
    height: 45px;
    background: rgba(21, 128, 61, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.fact-details {
    display: flex;
    flex-direction: column;
}

.fact-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 3px;
    font-weight: 500;
}

.fact-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
}

/* Mobile Responsiveness for Details Layout */
@media (max-width: 991px) {
    .details-layout {
        flex-direction: column;
    }
    
    .details-main, 
    .details-sidebar {
        width: 100%;
    }
    
    .sidebar-inner {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .sidebar-widget {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .details-banner {
        height: 60vh;
    }
    
    .sidebar-inner {
        grid-template-columns: 1fr;
    }
    
    .highlights-list {
        grid-template-columns: 1fr;
    }
    
    .details-gallery {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}

/* ==========================================================================
   Tour Packages Page Specific Styles
   ========================================================================== */

.packages-banner {
    height: 45vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    padding-top: 80px; 
}

.advanced-filter-bar {
    padding: 25px 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.advanced-filter-form .filter-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
}

.advanced-filter-form .filter-field {
    flex: 1;
    min-width: 200px;
}

.advanced-filter-form label {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.advanced-filter-form label i {
    color: var(--secondary);
    margin-right: 5px;
}

.advanced-filter-form .form-control {
    width: 100%;
    height: 45px;
    padding: 10px 15px;
    border-radius: var(--radius-md);
    border: none;
    background: rgba(255, 255, 255, 0.95);
}

.filter-actions {
    display: flex;
    gap: 10px;
    flex: 0 0 auto;
    width: auto;
}

.filter-submit-btn {
    height: 45px;
    padding: 0 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.reset-btn {
    height: 45px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--white);
    border-radius: 50px;
    transition: all var(--transition-fast);
}

.reset-btn:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-color: var(--white);
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Using existing .package-card, adding new internal styles */
.pkg-badge.badge-special {
    background-color: #ef4444; /* Red for special */
}

.pkg-details {
    display: flex;
    flex-direction: column;
}

.pkg-features {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pkg-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pkg-feature i {
    color: var(--primary);
    margin-top: 4px;
    font-size: 0.85rem;
}

/* No Results State */
.no-results-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f3f4f6;
}

.no-results-icon i {
    font-size: 4rem;
    color: #cbd5e1 !important;
    margin-bottom: 20px;
    display: block;
}

/* Packages Responsive */
@media (max-width: 991px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-actions {
        width: 100%;
        margin-top: 10px;
    }
    
    .filter-submit-btn, .reset-btn {
        flex: 1;
        justify-content: center;
    }
}

/* ==========================================================================
   Package Details Page Specific Styles
   ========================================================================== */

.package-banner {
    height: 60vh;
    min-height: 450px;
}

.banner-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.badge-bg {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
}

.badge-bg i {
    color: var(--secondary);
    margin-right: 5px;
}

.package-route {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 15px;
    color: rgba(255,255,255,0.9);
}

/* Typography & Layout */
.package-main .article-text p {
    font-size: 1.1rem;
    color: var(--text-main);
}

.package-highlights li {
    background: var(--white);
    border-left: 3px solid var(--primary);
}

/* Accordion Styling */
.itinerary-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background: var(--bg-light);
    transition: background var(--transition-fast);
}

.accordion-header:hover {
    background: #f1f5f9;
}

.acc-day-badge {
    background: var(--primary);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.acc-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.acc-icon {
    font-size: 1rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.accordion-item.open .accordion-header {
    background: var(--primary);
    color: var(--white);
}

.accordion-item.open .acc-title,
.accordion-item.open .acc-icon {
    color: var(--white);
}

.accordion-item.open .acc-day-badge {
    background: var(--white);
    color: var(--primary);
}

.accordion-body {
    background: var(--white);
    border-top: 1px solid #e5e7eb;
}

.acc-content-inner {
    padding: 25px;
}

.day-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #e5e7eb;
}

.day-meta span {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.day-meta i {
    color: var(--secondary);
    margin-right: 5px;
}

.acc-content-inner p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-main);
    margin: 0;
}

/* Inclusions & Exclusions */
.inc-exc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.inc-box, .exc-box {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--radius-md);
    border: 1px solid #e5e7eb;
}

.inc-box h3, .exc-box h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.inc-list, .exc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inc-list li, .exc-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.inc-list li:last-child, .exc-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.inc-list i {
    color: #15803d; /* Green */
    margin-top: 4px;
}

.exc-list i {
    color: #ef4444; /* Red */
    margin-top: 4px;
}

/* Sidebar Inquiry Form & Pricing */
.pricing-widget {
    background: #f8fafc;
    border-bottom: 4px solid var(--secondary);
}

.price-header {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.price-amount span {
    font-size: 1rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 500;
}

.price-disclaimer {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 10px;
}

.inquiry-widget {
    background: var(--white);
}

.booking-form label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
    display: block;
}

.booking-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    background: #f9fafb;
    transition: all var(--transition-fast);
}

.booking-form .form-control:focus {
    background: var(--white);
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.1);
}

/* Responsive Package Details */
@media (max-width: 991px) {
    .inc-exc-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .banner-badges {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .day-meta {
        flex-direction: column;
        gap: 10px;
    }
}

/* ==========================================================================
   About Us Page Specific Styles
   ========================================================================== */

.about-banner {
    height: 50vh;
    min-height: 400px;
}

/* Our Story Layout */
.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
}

.story-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    color: var(--white);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(21, 128, 61, 0.3);
    border: 8px solid var(--white);
    animation: pulse 3s infinite;
}

.exp-number {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-heading);
}

.exp-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    opacity: 0.9;
}

.story-text-col {
    padding-left: 20px;
}

.story-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    border-top: 1px solid #e5e7eb;
    padding-top: 30px;
}

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

.feature-item i {
    font-size: 2rem;
    color: var(--secondary);
    background: rgba(245, 158, 11, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Mission & Vision Cards */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.mv-card:hover::before {
    transform: scaleY(1);
}

.mv-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.mv-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.mv-content p {
    color: var(--text-main);
    line-height: 1.7;
}

/* Milestones/Counters */
.milestones-counter {
    background: var(--primary);
    color: var(--white);
    position: relative;
}

/* Slight dark overlay for contrast */
.milestones-counter::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.counter-item {
    text-align: center;
    padding: 20px;
}

.counter-item i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 15px;
    opacity: 0.9;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 10px;
}

.counter-title {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all var(--transition-normal);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-img {
    height: 350px;
    position: relative;
    overflow: hidden;
}

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

.team-card:hover .team-img img {
    transform: scale(1.05);
}

.team-socials {
    position: absolute;
    bottom: -50px; /* Hidden initially */
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.9);
    padding: 15px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: bottom 0.3s ease;
}

.team-card:hover .team-socials {
    bottom: 0; /* Slide up on hover */
}

.team-socials a {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.team-socials a:hover {
    background: var(--secondary);
}

.team-info {
    padding: 25px;
}

.team-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.team-role {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.team-bio {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Trust Badges */
.trust-badges {
    border-top: 1px solid #f1f5f9;
    background: var(--white);
}

.padding-top-small { padding-top: 40px; }
.padding-bottom-small { padding-bottom: 40px; }

.partners-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.partner-logo {
    opacity: 0.5; /* Grayscale/faded imitation */
    filter: grayscale(100%);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.partner-logo img {
    max-height: 50px;
    max-width: 150px;
    object-fit: contain;
}

.text-logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive About Us */
@media (max-width: 991px) {
    .story-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-text-col {
        padding-left: 0;
    }
    
    .experience-badge {
        right: 20px;
        bottom: -20px;
        width: 100px;
        height: 100px;
        border-width: 5px;
    }
    
    .exp-number { font-size: 1.5rem; }
    .exp-text { font-size: 0.7rem; }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .counter-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .counter-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-features {
        grid-template-columns: 1fr;
    }
    
    .partners-row {
        gap: 30px;
    }
}

/* ==========================================================================
   Contact Us Page Specific Styles
   ========================================================================== */

.contact-banner {
    height: 40vh;
    min-height: 300px;
}

/* Specific spacing requirement from User */
h2.contact-heading {
    margin-top: 40px !important;
    margin-bottom: 30px !important;
    font-size: 2rem;
    position: relative;
    padding-bottom: 12px;
}

h2.contact-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

/* Two-Column Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 50px;
    margin-top: 20px; /* Separates from banner visually */
}

/* Left Contact Info */
.contact-info-col {
    background: var(--white);
    padding: 20px 30px 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    height: hmax-content;
}

.contact-methods {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-methods li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cm-icon {
    width: 55px;
    height: 55px;
    background: rgba(21, 128, 61, 0.1); /* Primary color low opacity */
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.contact-methods li:hover .cm-icon {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.cm-details strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-main);
}

.cm-details span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Social Icons Area */
.social-heading {
    font-size: 1.5rem;
    margin-top: 40px !important;
    margin-bottom: 30px !important;
}

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

.social-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-5px);
    color: var(--white);
}

.social-btn.facebook { background: #1877f2; }
.social-btn.instagram { background: #e4405f; }
.social-btn.whatsapp { background: #25D366; }
.social-btn.youtube { background: #ff0000; }

/* Right Contact Form */
.contact-form-col {
    background: var(--bg-light);
    padding: 50px;
    border-radius: var(--radius-lg);
    border: 1px solid #e5e7eb;
}

.main-contact-form label {
    font-weight: 600;
    margin-bottom: 8px;
    display: inline-block;
    color: var(--text-main);
}

.main-contact-form .form-control {
    background: var(--white);
    border: 1px solid #d1d5db;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.main-contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.1);
    outline: none;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid #bbf7d0;
    margin-bottom: 25px;
}

/* Maps Integration */
.contact-map-section {
    width: 100%;
    margin-top: 30px;
}

.map-container {
    width: 100%;
}

.map-container iframe {
    display: block; /* Removes bottom space */
}

/* Responsive Contact Us */
@media (max-width: 991px) {
    .contact-layout {
        grid-template-columns: 1fr; /* Stacks to 1 column */
        gap: 40px;
    }
    
    .contact-info-col {
        padding: 30px 20px;
    }
    
    .contact-form-col {
        padding: 40px 20px;
    }
}

@media (max-width: 576px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group.w-50 {
        width: 100% !important;
    }
}

/* ==========================================================================
   Animations & Keyframes
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 991px) {
    .hero-title { font-size: 3.5rem; }
    .section-title { font-size: 2rem; }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
    }
    
    .main-nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--shadow-header);
        padding: 20px;
    }
    
    .main-nav .nav-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav a {
        color: var(--text-main);
        display: block;
        padding: 10px 0;
    }
    
    .main-nav a::after {
        display: none;
    }
    
    /* Hero & Slider Adjustments */
    .hero-section {
        height: auto;
        min-height: 500px;
        padding-bottom: 50px;
    }
    
    .hero-content {
        padding-top: 100px;
    }
    
    .hero-title { 
        font-size: 2.2rem; 
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }
    
    .slider-dots { 
        bottom: 15px; 
        gap: 10px; 
    }
    
    .dot { 
        width: 10px; 
        height: 10px; 
    }
    
    /* Search Form Adjustments */
    .quick-search {
        padding: 15px;
        margin-top: 30px;
        backdrop-filter: blur(10px);
        background: rgba(255, 255, 255, 0.15);
    }
    
    .search-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-group.btn-group {
        width: 100%;
        margin-top: 5px;
    }
    
    .search-btn {
        height: 44px;
    }
    
    .dest-content p {
        opacity: 1;
        transform: none;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .slider-btn {
        display: none; /* Hide arrows on very small screens, rely on dots/drag */
    }
    .quick-search {
        margin-top: 20px;
    }
}

/* ==========================================================================
   Why Choose Us — Premium Redesign
   ========================================================================== */
.why-us-section {
    background: linear-gradient(160deg, #f0fdf4 0%, #ffffff 50%, #fffbeb 100%);
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(21,128,61,0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.why-us-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem 1.75rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(21,128,61,0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.why-us-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(21,128,61,0.13);
}

.why-icon-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.why-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(21,128,61,0.08);
    line-height: 1;
    font-family: var(--font-heading);
    transition: color 0.3s ease;
    min-width: 60px;
}

.why-us-card:hover .why-number {
    color: rgba(21,128,61,0.18);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(21,128,61,0.12), rgba(34,197,94,0.18));
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.why-us-card:hover .why-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    transform: rotate(-6deg) scale(1.1);
}

.why-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.why-content p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.why-bar {
    height: 3px;
    border-radius: 99px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    width: 0%;
    transition: width 0.5s ease;
}

.why-us-card:hover .why-bar {
    width: 100%;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 12px 40px rgba(21,128,61,0.25);
}

.stat-bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
    border-right: 1px solid rgba(255,255,255,0.15);
    padding: 0 1rem;
}

.stat-bubble:last-child {
    border-right: none;
}

.stat-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--secondary);
    font-family: var(--font-heading);
    line-height: 1;
}

.stat-label {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Responsive: Why Us */
@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-bubble {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        padding-bottom: 1.25rem;
    }
    .stat-bubble:nth-child(even) {
        border-left: 1px solid rgba(255,255,255,0.15);
    }
    .stat-bubble:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .stats-row {
        grid-template-columns: 1fr 1fr;
        padding: 1.5rem 1rem;
    }
    .stat-num {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   Fleet / Car Rental Section (Home Page)
   ========================================================================== */
.fleet-section {
    background: var(--bg-light);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 2.5rem;
}

.fleet-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.fleet-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f3f4f6;
}

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

.fleet-card:hover .fleet-card-img img {
    transform: scale(1.06);
}

.fleet-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}

.fleet-card-body {
    padding: 1.25rem 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fleet-car-name {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.fleet-specs {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.fleet-specs span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: var(--bg-light);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.fleet-specs i {
    color: var(--primary);
    font-size: 0.75rem;
}

.fleet-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.85rem;
    border-top: 1px solid var(--bg-light);
}

.fleet-price {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.fleet-price small {
    font-size: 0.72rem;
    color: var(--text-light);
}

.fleet-price strong {
    font-size: 1.35rem;
    color: var(--primary);
    font-weight: 700;
}

.fleet-price strong span {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
}

.fleet-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25d366;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.fleet-book-btn:hover {
    background: #128c4f;
    color: var(--white);
    transform: scale(1.04);
}

@media (max-width: 768px) {
    .fleet-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
    .fleet-card-img { height: 180px; }
}
