:root {
    --primary-color: #1a365d;
    --secondary-color: #2c5282;
    --accent-color: #3182ce;
    --success-color: #38a169;
    --warning-color: #d69e2e;
    --danger-color: #e53e3e;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.2);
    --border-radius: 16px;
    --transition: all 0.3s ease;
}

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





/* Blog Content Sections */
.blog-section {
    padding: 60px 0;
    position: relative;
}

.blog-section:nth-child(even) {
    background: rgba(255, 255, 255, 0.5);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #718096;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Info Cards */
.info-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

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

.info-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
}

.info-icon.distance {
    background: var(--gradient-primary);
}

.info-icon.time {
    background: var(--gradient-secondary);
}

.info-icon.cost {
    background: var(--gradient-success);
}

.info-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.info-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.info-description {
    color: #718096;
    font-size: 1rem;
    line-height: 1.6;
}

/* Content Cards */
.content-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-soft);
    border-left: 5px solid var(--accent-color);
}

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

.content-card ul {
    list-style: none;
    padding: 0;
}

.content-card li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.content-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Route Visualization */
.route-visual {
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.route-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(49, 130, 206, 0.05) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-20px, -20px) rotate(180deg);
    }
}

.route-path {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 2rem 0;
    position: relative;
}

.route-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
}

.route-dot {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.route-dot.start {
    background: var(--success-color);
}

.route-dot.end {
    background: var(--warning-color);
}

.route-line {
    position: absolute;
    top: 12px;
    left: 50%;
    right: -50%;
    height: 3px;
    background: linear-gradient(to right, var(--success-color), var(--warning-color));
    z-index: 1;
    border-radius: 2px;
}

.route-point:last-child .route-line {
    display: none;
}

.route-label {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.route-details {
    font-size: 0.95rem;
    color: #718096;
}




.btn-cta {
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--border-radius);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
}

.btn-call {
    background: #ff6b35;
    color: white;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
    color: white;
    text-decoration: none;
}

/* FAQ Section */


.accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background: #f8fafc;
    border: none;
    padding: 1.5rem 2rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.accordion-body {
    padding: 2rem;
    background: white;
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.7;
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
        min-height: 60vh;
    }

    .blog-section {
        padding: 40px 0;
    }

    .info-card,
    .content-card,
    .route-visual,
    .cta-section,
    .faq-section {
        padding: 2rem;
    }

    .route-path {
        flex-direction: column;
        gap: 2rem;
    }

    .route-line {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
    }

    .search-card {
        padding: 1.5rem;
    }

    .distance-highlight {
        font-size: 1rem;
        padding: 15px 25px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

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

    .info-value {
        font-size: 1.8rem;
    }

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

/* Utility Classes */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-box {
    background: linear-gradient(135deg, #667eea22, #764ba222);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
    margin: 1.5rem 0;
}

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

.feature-item {
    background: rgba(49, 130, 206, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}


.destination-intro {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem 0;
    margin: 2rem 0;
    border-radius: 15px;
}

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

.attraction-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 4px solid #007bff;
    transition: transform 0.3s ease;
}

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

.route-comparison {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.pricing-table {
    background: linear-gradient(135deg, #a56dee 0%, #fecfef 100%);
    border-radius: 15px;
    padding: 2rem;
    color: #333;
    margin: 2rem 0;
}

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

.weather-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #e9ecef;
}

.capacity-info {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: #e8f4f8;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
}

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

.capacity-item i {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 0.5rem;
}