/* ============================================
   WISATA PENDIDIKAN - FRONTEND CSS
   Professional, Clean, SEO-Friendly
   ============================================ */

:root {
    --primary: #3182CE;
    --primary-dark: #2B6CB0;
    --primary-light: #63B3ED;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --dark: #1E293B;
    --gray-600: #4A5568;
    --gray-400: #94A3B8;
    --gray-200: #E2E8F0;
    --gray-100: #F1F5F9;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== HEADER ===== */
#header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: relative;
    z-index: 1000;
    transition: all 0.3s ease;
}

#header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-container {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-img img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo-text {
    margin-left: 0.75rem;
}

.logo-text .main {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
}

.logo-text .sub {
    font-size: 0.7rem;
    color: var(--gray-400);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.3s;
}

.nav-menu a:hover { color: var(--primary); }
.nav-menu li.active a { color: var(--primary); font-weight: 700; }

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    color: white !important;
}

.mobile-menu-btn {
    display: none;
    background: var(--primary);
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #F0F9FF, #E0F2FE);
    padding: 4rem 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-content h1 .highlight {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(49,130,206,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(49,130,206,0.4);
}

.btn-secondary {
    background: var(--gray-100);
    color: var(--dark);
}

.btn-accent {
    background: linear-gradient(135deg, var(--warning), #D97706);
    color: white;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-text {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ===== SECTIONS ===== */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.5rem;
}

.section-header h2 .highlight {
    color: var(--primary);
}

.section-header p {
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CATEGORIES ===== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.category-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-light);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.category-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.category-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
}

/* ===== DESTINATIONS ===== */
.filter-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.65rem 1.5rem;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.destination-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.destination-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.05);
}

.destination-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.promo-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--danger);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.destination-content {
    padding: 1.25rem;
}

.destination-title {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 0.5rem;
}

.destination-title h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.destination-title h3 a {
    color: var(--dark);
    text-decoration: none;
}

.destination-title h3 a:hover {
    color: var(--primary);
}

.destination-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--warning);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.destination-location {
    color: var(--gray-400);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.destination-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0.75rem;
}

.destination-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: 0.75rem;
}

.destination-price {
    margin-bottom: 1rem;
}

.destination-price .current-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
}

.destination-price .old-price {
    font-size: 0.85rem;
    color: var(--gray-400);
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.destination-price .price-label {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.destination-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.feature {
    font-size: 0.8rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.feature i {
    color: var(--success);
    font-size: 0.7rem;
}

.destination-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-action {
    flex: 1;
    text-align: center;
    padding: 0.6rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.btn-detail {
    background: var(--gray-100);
    color: var(--dark);
}

.btn-detail:hover {
    background: var(--primary);
    color: white;
}

.btn-booking {
    background: var(--primary);
    color: white;
}

.btn-booking:hover {
    background: var(--primary-dark);
}

.view-more-container {
    text-align: center;
    margin-top: 2rem;
}

/* ===== ARTICLES ===== */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.article-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.article-image {
    position: relative;
    height: 160px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-category {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
}

.article-content {
    padding: 1rem;
}

.article-content h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.article-content h3 a {
    color: var(--dark);
    text-decoration: none;
}

.article-content h3 a:hover {
    color: var(--primary);
}

.article-content p {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 0.75rem;
}

.article-meta {
    font-size: 0.8rem;
    color: var(--gray-400);
    display: flex;
    gap: 1rem;
}

.view-all-container {
    text-align: center;
    margin-top: 2rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial-stars {
    color: var(--warning);
    margin-bottom: 0.75rem;
}

.testimonial-stars .empty {
    color: var(--gray-200);
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, #F0F9FF, #E0F2FE);
    text-align: center;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--gray-100);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--gray-600);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    color: white;
    padding: 4rem 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 50px;
    height: 50px;
}

.footer-logo-text .main {
    font-size: 1.2rem;
    font-weight: 800;
}

.footer-logo-text .sub {
    font-size: 0.65rem;
    opacity: 0.7;
}

.footer-about p {
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: white;
}

.footer-links ul li i {
    width: 20px;
    margin-right: 0.5rem;
}

.partners-section {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 2rem 0;
    text-align: center;
}

.partners-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.partners-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.partner-logo img {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.partner-logo img:hover {
    opacity: 1;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ===== FLOATING WHATSAPP ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--dark);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all 0.3s;
    position: relative;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.breadcrumb a {
    color: var(--gray-400);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb i {
    margin: 0 0.5rem;
    font-size: 0.6rem;
}

/* ===== BLOG LAYOUT ===== */
.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.article-card-horizontal {
    display: flex;
    gap: 1.5rem;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.article-card-horizontal:hover {
    transform: translateY(-3px);
}

.article-thumb {
    width: 250px;
    flex-shrink: 0;
}

.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-info {
    padding: 1.25rem;
}

.article-category-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.article-featured-image {
    margin: 1.5rem 0;
    border-radius: 12px;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
}

.article-content {
    line-height: 1.8;
}

.sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sidebar-widget h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.sidebar-list {
    list-style: none;
}

.sidebar-list li {
    margin-bottom: 0.75rem;
}

.sidebar-list li a {
    display: flex;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--dark);
    align-items: center;
}

.sidebar-list li a:hover {
    color: var(--primary);
}

/* ===== BOOKING STEPS ===== */
.booking-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.step.active .step-number {
    background: var(--primary);
    color: white;
}

.step.completed .step-number {
    background: var(--success);
    color: white;
}

.step-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-400);
}

.step.active .step-label {
    color: var(--primary);
}

.step.completed .step-label {
    color: var(--success);
}

.step-connector {
    width: 60px;
    height: 3px;
    background: var(--gray-200);
    margin: 0 0.5rem;
    margin-bottom: 1.5rem;
}

.step-connector.completed {
    background: var(--success);
}

/* ===== FORM ELEMENTS ===== */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-control, .form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Nunito', sans-serif;
    transition: border-color 0.3s;
}

.form-control:focus, .form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(49,130,206,0.1);
}

/* ===== DESTINATION DETAIL ===== */
.destination-hero {
    padding: 2rem 0;
}

.destination-hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
}

.main-image {
    border-radius: 16px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    border-radius: 16px;
}

.thumbnail-list {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.thumbnail-list img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.thumbnail-list img.active,
.thumbnail-list img:hover {
    border-color: var(--primary);
}

.destination-info-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.destination-info-card h1 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.destination-rating-big {
    font-size: 1.1rem;
    color: var(--warning);
    margin-bottom: 0.75rem;
}

.destination-price-big {
    margin: 1rem 0;
}

.destination-price-big .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.destination-price-big .per {
    color: var(--gray-400);
}

.destination-quick-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: 8px;
}

.destination-quick-info div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.destination-content-full h2 {
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.content-body {
    line-height: 1.8;
}

.itinerary-timeline {
    position: relative;
    padding-left: 2rem;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
}

.timeline-item {
    position: relative;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.65rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    border: 2px solid white;
    z-index: 1;
}

.timeline-time {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.feature-item i {
    color: var(--success);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-container { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .destinations-grid { grid-template-columns: repeat(2, 1fr); }
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .blog-layout { grid-template-columns: 1fr; }
    .destination-hero-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .mobile-menu-btn { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 5rem 1.5rem;
        gap: 0.5rem;
        display: none;
        z-index: 999;
        overflow-y: auto;
    }
    .nav-menu.active { display: flex; }
    .nav-menu li { width: 100%; }
    .nav-menu a { padding: 1rem; font-size: 1.1rem; border-bottom: 1px solid var(--gray-200); }
    .hero-content h1 { font-size: 1.8rem; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: 1fr 1fr; }
    .destinations-grid { grid-template-columns: 1fr; }
    .articles-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; }
    .destination-hero-grid { grid-template-columns: 1fr; }
    .article-card-horizontal { flex-direction: column; }
    .article-thumb { width: 100%; height: 200px; }
    .booking-steps { flex-wrap: wrap; }
    .step-connector { width: 30px; }
    .features-grid { grid-template-columns: 1fr; }
}

/* ===== HERO IMPROVEMENTS ===== */
.hero {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 30%, #BAE6FD 70%, #F0F9FF 100%);
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}

.hero-wave {
    position: relative;
    bottom: -2px;
    line-height: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(49,130,206,0.15);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-image {
    position: relative;
    z-index: 2;
}

.hero-main-image img {
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    width: 100%;
    height: auto;
}

.hero-floating-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.hero-floating-card.card-1 {
    top: 10%;
    left: -30px;
    animation-delay: 0s;
}

.hero-floating-card.card-2 {
    bottom: 15%;
    right: -20px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.card-1 .floating-icon {
    background: #FEF3C7;
    color: #F59E0B;
}

.card-2 .floating-icon {
    background: #DBEAFE;
    color: #3182CE;
}

.floating-text strong {
    display: block;
    font-size: 1rem;
    color: var(--dark);
}

.floating-text span {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.hero-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(49,130,206,0.05);
    top: -50px;
    right: -80px;
}

.hero-shape.shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(16,185,129,0.05);
    bottom: -30px;
    left: -50px;
}

.hero-dots {
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(#3182CE 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: 1;
    bottom: 5%;
    right: 10%;
    opacity: 0.3;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.stat-item:nth-child(1) .stat-icon-circle { background: #DBEAFE; color: #3182CE; }
.stat-item:nth-child(2) .stat-icon-circle { background: #D1FAE5; color: #10B981; }
.stat-item:nth-child(3) .stat-icon-circle { background: #FEF3C7; color: #F59E0B; }
.stat-item:nth-child(4) .stat-icon-circle { background: #FEE2E2; color: #EF4444; }

/* ===== SECTION IMPROVEMENTS ===== */
.section-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.35rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

/* ===== CATEGORY CARD IMPROVEMENTS ===== */
.category-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.category-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.category-icon {
    font-size: 2rem;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 0.75rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.category-card:hover .category-link {
    opacity: 1;
    transform: translateY(0);
}

/* ===== DESTINATION CARD IMPROVEMENTS ===== */
.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.destination-card:hover .destination-overlay {
    opacity: 1;
}

.btn-white {
    background: white;
    color: var(--dark);
    font-weight: 700;
}

.best-seller-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* ===== CTA IMPROVEMENTS ===== */
.cta-wrapper {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 24px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: center;
    color: white;
}

.cta-content h2 {
    font-size: 2rem;
    color: white;
}

.cta-content h2 .highlight {
    color: #FCD34D;
}

.cta-content p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-image img {
    border-radius: 16px;
    width: 100%;
}

/* ===== TESTIMONIAL IMPROVEMENTS ===== */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-text {
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--primary);
    font-family: serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.author-info strong {
    display: block;
    font-size: 0.9rem;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* ===== RESPONSIVE IMPROVEMENTS ===== */
@media (max-width: 992px) {
    .hero-floating-card {
        display: none;
    }
    .cta-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .cta-buttons {
        justify-content: center;
    }
    .cta-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 0 0;
    }
    .hero-stats {
        gap: 1rem;
    }
    .stat-item {
        flex: 1;
        min-width: 45%;
    }
    .hero-badge {
        font-size: 0.75rem;
    }
}

/* ===== 3D BUTTONS ===== */
.btn-3d {
    position: relative;
    font-weight: 700;
    border: none;
    cursor: pointer;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    transition: all 0.15s ease;
    box-shadow: 0 4px 0 rgba(0,0,0,0.2);
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
}

.btn-3d:active {
    transform: translateY(3px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.2);
}

.btn-3d.btn-lg {
    padding: 0.9rem 2rem;
    font-size: 1rem;
}

.btn-primary-3d {
    background: linear-gradient(180deg, #3182CE 0%, #2563EB 100%);
    color: white;
    box-shadow: 0 4px 0 #1E40AF;
}

.btn-primary-3d:hover {
    background: linear-gradient(180deg, #3B82F6 0%, #2563EB 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #1E40AF;
}

.btn-whatsapp-3d {
    background: linear-gradient(180deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 4px 0 #075E54;
}

.btn-whatsapp-3d:hover {
    background: linear-gradient(180deg, #2ECC71 0%, #128C7E 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #075E54;
}

.btn-accent-3d {
    background: linear-gradient(180deg, #F59E0B 0%, #D97706 100%);
    color: white;
    box-shadow: 0 4px 0 #92400E;
}

.btn-detail-3d {
    background: linear-gradient(180deg, #64748B 0%, #475569 100%);
    color: white;
    box-shadow: 0 4px 0 #334155;
    flex: 1;
    font-size: 0.8rem;
    padding: 0.55rem 0.8rem;
}

.btn-detail-3d:hover {
    background: linear-gradient(180deg, #94A3B8 0%, #64748B 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #334155;
    color: white;
}

.btn-booking-3d {
    background: linear-gradient(180deg, #3182CE 0%, #2563EB 100%);
    color: white;
    box-shadow: 0 4px 0 #1E40AF;
    flex: 1;
    font-size: 0.8rem;
    padding: 0.55rem 0.8rem;
}

.btn-booking-3d:hover {
    background: linear-gradient(180deg, #3B82F6 0%, #2563EB 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #1E40AF;
    color: white;
}

/* ===== MODERN CATEGORY CARD ===== */
.category-card-modern {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.category-card-modern:hover {
    transform: translateY(-8px);
}

.category-card-inner {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.category-card-modern:hover .category-card-inner {
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.category-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.category-card-inner h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.category-card-inner p {
    font-size: 0.85rem;
    color: #64748B;
    line-height: 1.5;
}

/* ===== MODERN DESTINATION CARD ===== */
.destination-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.destination-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.destination-image-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.destination-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card-modern:hover .destination-image-wrap img {
    transform: scale(1.08);
}

.destination-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.destination-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.destination-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
}

.destination-header h3 a {
    color: var(--dark);
    text-decoration: none;
}

.destination-header h3 a:hover {
    color: var(--primary);
}

.destination-body p {
    font-size: 0.85rem;
    color: #64748B;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
}

.destination-spacer {
    flex: 1;
}

.destination-actions-fixed {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

/* ===== MODERN ARTICLE CARD ===== */
.article-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.article-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.article-image-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.article-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card-modern:hover .article-image-wrap img {
    transform: scale(1.06);
}

.article-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: linear-gradient(135deg, #3182CE, #2563EB);
    color: white;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
}

.article-body {
    padding: 1.25rem;
}

.article-body h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.article-body h3 a {
    color: var(--dark);
    text-decoration: none;
}

.article-body h3 a:hover {
    color: var(--primary);
}

.article-body p {
    font-size: 0.85rem;
    color: #64748B;
    margin-bottom: 0.75rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .destination-actions-fixed {
        flex-direction: column;
    }
    .btn-detail-3d,
    .btn-booking-3d {
        width: 100%;
    }
}