/* ===== CSS Variables ===== */
:root {
    --primary-color: #2d5016;
    --primary-dark: #1a3d0e;
    --secondary-color: #1e88e5;
    --accent-color: #f39c12;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 5px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== Navigation ===== */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu li a {
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
    background: var(--bg-light);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

/* Hero Carousel */
.hero-carousel .hero-carousel-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-carousel .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

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

.hero-carousel .hero-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.7);
    background: rgba(0,0,0,0.3);
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s;
}

.hero-carousel .hero-carousel-btn:hover {
    background: rgba(0,0,0,0.6);
    border-color: var(--white);
}

.hero-carousel-prev {
    left: 1.5rem;
}

.hero-carousel-next {
    right: 1.5rem;
}

.hero-carousel-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.8);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.2s;
}

.hero-dot:hover {
    background: rgba(255,255,255,0.5);
}

.hero-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.hero-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

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

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

/* ===== Section Styles ===== */
section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

/* ===== Province Section (Homepage) ===== */
.province-section {
    background: var(--white);
}

.province-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.province-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.province-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.province-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.province-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.province-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.province-highlight {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* ===== Featured Destinations ===== */
.featured-destinations {
    background: var(--bg-light);
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.destination-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.card-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

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

.card-content {
    padding: 1.5rem;
}

.card-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.card-category {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.card-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* ===== Driver & Vehicle Promotion ===== */
.driver-promo {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
    color: var(--white);
}

.driver-promo .section-title {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.driver-promo-subtitle {
    text-align: center;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.driver-promo-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
}

.driver-promo-content {
    flex: 1;
    min-width: 280px;
}

.driver-promo-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.driver-promo-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.driver-promo-content > p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.7;
}

.driver-promo-features {
    list-style: none;
    margin-bottom: 2rem;
}

.driver-promo-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    opacity: 0.95;
}

.driver-promo-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.9rem;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
}

.driver-promo-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.driver-promo-cta .btn-primary:hover {
    background: var(--bg-light);
    color: var(--primary-dark);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366 !important;
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
}

.btn-whatsapp:hover {
    background: #128C7E !important;
    transform: translateY(-2px);
}

.driver-promo-visual {
    flex-shrink: 0;
    text-align: center;
    padding: 2rem;
}

.driver-promo-icon {
    font-size: 5rem;
    margin-bottom: 0.5rem;
}

.driver-promo-vehicle {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.driver-promo-ready {
    font-size: 0.9rem;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .driver-promo-card {
        flex-direction: column;
        padding: 2rem 1.5rem;
    }
    .driver-promo-cta {
        flex-direction: column;
    }
    .driver-promo-cta .btn-primary,
    .driver-promo-cta .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

/* Floating WhatsApp Button */
@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 4px 14px rgba(37, 211, 102, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 4px 24px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.2);
        transform: scale(1.02);
    }
}

@keyframes whatsapp-icon-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.whatsapp-float {
    position: fixed;
    top: 5rem;
    right: max(1.25rem, env(safe-area-inset-right));
    z-index: 9999;
    padding: 0.6rem 1rem 0.6rem 0.75rem;
    border-radius: 50px;
    background: #25D366;
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    animation: whatsapp-pulse 2s ease-in-out infinite;
    transition: background 0.3s, transform 0.3s;
    min-height: 44px;
    min-width: 44px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.05);
    animation: none;
}

.whatsapp-float-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: whatsapp-icon-bounce 1.5s ease-in-out infinite;
}

.whatsapp-float:hover .whatsapp-float-icon {
    animation: none;
}

.whatsapp-float-text {
    display: inline-block;
}

@media (max-width: 768px) {
    .whatsapp-float {
        top: auto;
        bottom: max(1rem, env(safe-area-inset-bottom));
        right: max(1rem, env(safe-area-inset-right));
        padding: 0.6rem 1rem 0.6rem 0.75rem;
        font-size: 0.9rem;
        min-height: 48px;
        min-width: 48px;
    }
    .whatsapp-float-text {
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        padding: 0.65rem 0.85rem;
        font-size: 0.85rem;
    }
    .whatsapp-float-text {
        max-width: 90px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 360px) {
    .whatsapp-float-text {
        display: none;
    }
    .whatsapp-float {
        padding: 0.75rem;
        border-radius: 50%;
    }
}

/* Driver Promo Dialog */
.driver-promo-dialog {
    width: 60%;
    height: 60%;
    max-width: 90vw;
    max-height: 90vh;
    margin: auto;
    padding: 0;
    border: none;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.driver-promo-dialog::backdrop {
    background: rgba(0, 0, 0, 0.5);
}

.driver-promo-dialog-inner {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 2rem;
    height: 100%;
    min-height: 300px;
    overflow-y: auto;
}

.driver-promo-dialog-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.driver-promo-dialog-close:hover {
    background: rgba(255, 255, 255, 0.35);
}

.driver-promo-dialog-content {
    color: var(--white);
    padding-right: 2rem;
}

.driver-promo-dialog-content .section-title {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.driver-promo-dialog-content .driver-promo-subtitle {
    margin-bottom: 1.5rem;
}

.driver-promo-card-modal {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .driver-promo-dialog {
        width: 95%;
        height: 85%;
        max-width: 95vw;
        max-height: 85vh;
    }
    .driver-promo-dialog-inner {
        padding: 1.5rem;
        padding-top: 3rem;
    }
    .driver-promo-dialog-close {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        top: 0.5rem;
        right: 0.5rem;
        -webkit-tap-highlight-color: transparent;
    }
    .driver-promo-dialog-content {
        padding-right: 0;
    }
}

/* ===== Why Visit Section ===== */
.why-visit {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-box {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: var(--bg-light);
    transition: var(--transition);
    display: block;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background: var(--white);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-box h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.feature-box p {
    color: var(--text-light);
}

/* ===== District Section ===== */
.district-section {
    padding: 3rem 0;
}

.district-section.alt-bg {
    background: var(--bg-light);
}

.province-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
}

.district-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.district-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.district-card.featured {
    border: 3px solid var(--accent-color);
}

.district-image {
    height: 200px;
    overflow: hidden;
}

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

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

.district-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.district-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.district-main {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.district-highlights {
    list-style: none;
    margin-bottom: 1.5rem;
    flex: 1;
}

.district-highlights li {
    padding: 0.3rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.district-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===== Filter Section ===== */
.filter-section {
    background: var(--bg-light);
    padding: 2rem 0;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

/* ===== Destination List ===== */
.destinations-list {
    padding: 3rem 0;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
    padding: 1rem 0;
    background: var(--bg-light);
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.breadcrumb-list li a {
    color: var(--primary-color);
    transition: var(--transition);
}

.breadcrumb-list li a:hover {
    text-decoration: underline;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: var(--text-light);
}

/* ===== District Detail Page ===== */
.district-hero {
    position: relative;
    height: 350px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.district-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.district-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
}

.district-hero-overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.district-hero-overlay p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.district-overview {
    padding: 2rem 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.overview-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.overview-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.overview-sidebar {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    height: fit-content;
}

.overview-sidebar h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-list {
    list-style: none;
}

.info-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

/* ===== Attractions Grid ===== */
.attractions-section {
    padding: 3rem 0;
    background: var(--bg-light);
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.attraction-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.attraction-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.attraction-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.attraction-tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

/* ===== Footer ===== */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

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

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

/* ===== Destination Detail Page ===== */
.destination-detail {
    padding: 3rem 0;
}

.destination-hero {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.destination-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-header {
    margin-bottom: 2rem;
}

.destination-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.destination-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.destination-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.destination-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.destination-description h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.destination-description p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.destination-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    height: fit-content;
}

.destination-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

.destination-gallery {
    margin-top: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
}

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

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

/* ===== About & Contact Pages ===== */
.content-page {
    padding: 3rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.content-page h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.content-page p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* ===== Activity List ===== */
.activity-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.activity-list-with-images {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.activity-list-with-images .activity-item {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    border-left: none;
}

.activity-item-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    flex-shrink: 0;
}

.activity-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.activity-item-content {
    padding: 1rem;
}

.activity-list-with-images .activity-item h5 {
    margin-bottom: 0.35rem;
}

.activity-item {
    background: var(--white);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.activity-item h5 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

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

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-carousel .hero-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    .hero-carousel-prev {
        left: 0.75rem;
    }
    .hero-carousel-next {
        right: 0.75rem;
    }
    .hero-carousel-dots {
        bottom: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .destination-grid {
        grid-template-columns: 1fr;
    }

    .district-grid {
        grid-template-columns: 1fr;
    }

    .destination-content {
        grid-template-columns: 1fr;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 60vh;
        min-height: 400px;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .filter-buttons {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .province-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Interactive Map Styles ===== */
.map-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #e8f5e9 0%, #fff8e1 50%, #e3f2fd 100%);
}

.map-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.map-container svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(2px 4px 8px rgba(0,0,0,0.1));
}

.district-path {
    stroke: #fff;
    stroke-width: 1.5;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.district-path:hover {
    filter: brightness(1.15) drop-shadow(0 4px 12px rgba(0,0,0,0.3));
    stroke-width: 2.5;
    stroke: #fff;
}

/* Province Colors */
.district-path[data-province="western"] { fill: #3498db; }
.district-path[data-province="southern"] { fill: #27ae60; }
.district-path[data-province="central"] { fill: #9b59b6; }
.district-path[data-province="north-central"] { fill: #e67e22; }
.district-path[data-province="eastern"] { fill: #1abc9c; }
.district-path[data-province="uva"] { fill: #e74c3c; }
.district-path[data-province="northwestern"] { fill: #f39c12; }
.district-path[data-province="northern"] { fill: #34495e; }
.district-path[data-province="sabaragamuwa"] { fill: #7f8c8d; }

/* Hover color override */
.district-path:hover {
    fill: #f39c12 !important;
}

.district-path.inactive {
    fill: #bdc3c7 !important;
    cursor: not-allowed;
    opacity: 0.7;
}

.district-path.inactive:hover {
    fill: #95a5a6 !important;
    filter: none;
}

/* Map Tooltip */
.map-tooltip {
    position: absolute;
    background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(30,30,30,0.95) 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 14px;
    pointer-events: none;
    z-index: 100;
    display: none;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.map-tooltip::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-right-color: rgba(0,0,0,0.9);
}

.map-tooltip h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #f39c12;
    font-weight: 600;
}

.map-tooltip p {
    margin: 0;
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.4;
}

/* Legend */
.map-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #eee;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.legend-item:hover {
    background: #f5f5f5;
    transform: scale(1.05);
}

.legend-color {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Map Instruction Badge */
.map-instruction {
    text-align: center;
    margin-bottom: 1.5rem;
}

.map-instruction span {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 6px 20px rgba(243, 156, 18, 0.6); }
}

/* District Labels on Map */
.map-container svg text {
    pointer-events: none;
    font-family: 'Poppins', sans-serif;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Mobile Map Responsive */
@media (max-width: 768px) {
    .map-container {
        padding: 1rem;
        margin: 0 1rem;
        border-radius: 15px;
    }
    
    .map-legend {
        gap: 0.5rem;
        padding-top: 1rem;
        margin-top: 1rem;
    }
    
    .legend-item {
        font-size: 0.75rem;
    }
    
    .legend-color {
        width: 14px;
        height: 14px;
    }
    
    .map-tooltip {
        font-size: 12px;
        padding: 10px 14px;
        min-width: 150px;
    }
    
    .map-tooltip h4 {
        font-size: 14px;
    }
    
    .map-section {
        padding: 2rem 0;
    }
    
    .map-instruction span {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}
