/* ============================================
   DESTINATION SINGLE PAGE - REDESIGNED CSS
   Date: January 15, 2026
   Professional Travel Website Design
   ============================================ */

/* ============================================
   CSS VARIABLES - COLOR PALETTE
   ============================================ */
:root {
    /* Primary Colors */
    --primary-green: #16A34A;
    --primary-dark: #15803D;
    --primary-light: #22C55E;

    /* Accent Colors */
    --accent-orange: #F97316;
    --accent-yellow: #FCD34D;

    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F9FAFB;
    --light-gray: #F3F4F6;
    --gray: #6B7280;
    --dark-gray: #374151;
    --darker-gray: #1F2937;
    --black: #111827;

    /* Status Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition: all 0.3s ease;
}

/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--white);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

/* Hero Overlay - Gradient for better text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}
@media(min-width:992px){
   .hero-section {
    margin-top:30px;
}
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 40px 20px;
    animation: fadeInUp 1s ease-out;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.breadcrumb a:hover {
    color: var(--accent-yellow);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* Category Badge */
.category-badge {
    display: inline-block;
    background: rgba(22, 163, 74, 0.9);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

/* Hero Title */
.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Hero Stats - Glass Morphism Cards */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.stat-card i {
    font-size: 28px;
    color: var(--accent-yellow);
    flex-shrink: 0;
}

.stat-info {
    text-align: left;
}

.stat-number {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    cursor: pointer;
    animation: bounce 2s infinite;
    z-index: 3;
}

.scroll-indicator svg {
    width: 32px;
    height: 32px;
    opacity: 0.9;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

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

/* ============================================
   MAIN CONTENT AREA
   ============================================ */
.main-content {
    padding: 80px 0;
    background-color: var(--white);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
}

/* ============================================
   LEFT COLUMN - MAIN CONTENT
   ============================================ */
.left-column {
    min-width: 0;
}

.content-section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-light));
    border-radius: 2px;
}

.description {
    font-size: 16px;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.long-description {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
}

/* ============================================
   HIGHLIGHTS GRID
   ============================================ */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: var(--transition);
}

.highlight-card:hover {
    background: #E8F5E9;
    transform: translateX(4px);
}

.highlight-card i {
    color: var(--primary-green);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.highlight-card span {
    font-size: 15px;
    color: var(--dark-gray);
    font-weight: 500;
    line-height: 1.5;
}

/* ============================================
   BEST TIME TO VISIT CARD
   ============================================ */
.best-time-card {
    display: flex;
    gap: 24px;
    padding: 30px;
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
    border-radius: 16px;
    border-left: 4px solid var(--accent-orange);
    box-shadow: var(--shadow-md);
}

.best-time-icon {
    flex-shrink: 0;
}

.best-time-icon i {
    font-size: 48px;
    color: var(--accent-orange);
}

.best-time-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.best-time-months {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-orange);
    margin-bottom: 8px;
}

.weather-info {
    font-size: 15px;
    color: var(--gray);
    margin: 0;
}

/* ============================================
   TRIPS SECTION
   ============================================ */
.trip-count-badge {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-left: 12px;
}

.trips-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.trip-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid #E5E7EB;
}

.trip-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.trip-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

.trip-card:hover .trip-image img {
    transform: scale(1.08);
}

.urgent-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--danger);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.trip-content {
    padding: 24px;
}

.trip-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.4;
}

.trip-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.trip-duration,
.trip-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

.trip-meta i {
    color: var(--primary-green);
    font-size: 16px;
}

.trip-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #E5E7EB;
}

.trip-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-label {
    font-size: 12px;
    color: var(--gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-green);
}

.trip-btn {
    background: var(--primary-green);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 25px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.trip-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(22, 163, 74, 0.3);
}

/* No Trips Message */
.no-trips {
    text-align: center;
    padding: 60px 20px;
    background: var(--light-gray);
    border-radius: 16px;
}

.no-trips i {
    font-size: 48px;
    color: var(--gray);
    margin-bottom: 16px;
}

.no-trips p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 24px;
}

.custom-trip-btn {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

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

/* ============================================
   RIGHT COLUMN - SIDEBAR (STICKY)
   ============================================ */
.right-column {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.sidebar-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #E5E7EB;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
}

/* ============================================
   INQUIRY FORM
   ============================================ */
.inquiry-form {
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    border: 2px solid var(--primary-green);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

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

.submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-loading {
    display: none;
}

/* ============================================
   QUICK INFO CARD
   ============================================ */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
}

.info-item:hover {
    background: #E8F5E9;
}

.info-item i {
    font-size: 20px;
    color: var(--primary-green);
    margin-top: 2px;
}

.info-label {
    font-size: 12px;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.info-value {
    font-size: 15px;
    color: var(--dark-gray);
    font-weight: 600;
}

/* ============================================
   HELP CARD
   ============================================ */
.help-card {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border: 2px solid #3B82F6;
}

.help-card p {
    font-size: 15px;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.help-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.help-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.call-btn {
    background: #3B82F6;
    color: var(--white);
}

.call-btn:hover {
    background: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
}

.whatsapp-btn {
    background: #25D366;
    color: var(--white);
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

/* ============================================
   NEARBY DESTINATIONS SECTION
   ============================================ */
.nearby-section {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.nearby-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}

.nearby-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}

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

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

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

.nearby-content {
    padding: 20px;
}

.nearby-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.nearby-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.explore-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.explore-link:hover {
    gap: 10px;
    color: var(--primary-dark);
}

.explore-link i {
    font-size: 14px;
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
    position: fixed;
    bottom: -100px;
    right: 20px;
    background: var(--black);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 10px;
    box-shadow: var(--shadow-xl);
    z-index: 9999;
    transition: bottom 0.3s ease;
    max-width: 400px;
    font-size: 15px;
}

.toast.show {
    bottom: 20px;
}

.toast.success {
    background: var(--success);
}

.toast.error {
    background: var(--danger);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .right-column {
        position: static;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .nearby-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* Mobile (up to 767px) */
@media (max-width: 767px) {
    .hero-section {
        min-height: 60vh;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-tagline {
        font-size: 16px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        justify-content: center;
    }

    .main-content {
        padding: 50px 0;
    }

    .section-title {
        font-size: 26px;
    }

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

    .nearby-section {
        padding: 50px 0;
    }

    .best-time-card {
        flex-direction: column;
        text-align: center;
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 28px;
    }

    .breadcrumb {
        font-size: 12px;
    }

    .sidebar-card {
        padding: 20px;
    }

    .trip-content {
        padding: 20px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .hero-section,
    .inquiry-form,
    .help-card,
    .nearby-section {
        display: none;
    }
}