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

:root {
    --primary-color: #09713D;
    --primary-dark: #0a8547;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f9f9f9;
    --white: #ffffff;
}

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

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

.mt-2 {
    margin-top: 1rem;
}

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

/* Header Styles (Same as Home) */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-link {
    color: #000;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

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

.btn-contact {
    background-color: var(--primary-color);
    color: #fff !important;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(9, 113, 61, 0.3);
}

.bar {
    width: 25px;
    height: 3px;
    background: #000;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    margin-top: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 150px 20px 100px;
    /* Matched Home */
    position: relative;
    text-align: center;
    min-height: 800px;
    /* Matched Home */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

.wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
}

/* Main Content Layout */
.main-content {
    padding: 4rem 20px;
}

.guide-section {
    margin-bottom: 5rem;
}

.section-heading {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 0.5rem;
}

.section-intro {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.sub-heading {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

/* Checklist Generator Styles */
.checklist-generator-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.country-selector-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2.5rem;
    border-radius: 12px;
}

.selector-row {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.selector-group {
    flex: 1;
    min-width: 250px;
}

.selector-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.country-select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    background: white;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.country-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(9, 113, 61, 0.1);
}

.selector-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.btn-generate {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: inherit;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(9, 113, 61, 0.3);
}

.btn-generate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(9, 113, 61, 0.4);
}

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

.checklist-display {
    margin-top: 2rem;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.checklist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 12px 12px 0 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.checklist-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.btn-print {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-print:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.checklist-content {
    padding: 2rem;
    background: white;
    border-radius: 0 0 12px 12px;
}

.checklist-section {
    margin-bottom: 2.5rem;
}

.checklist-section:last-child {
    margin-bottom: 0;
}

.checklist-section h4 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--bg-light);
}

.quick-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.fact-item {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.fact-label {
    font-weight: 600;
    color: var(--primary-dark);
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.fact-value {
    color: var(--text-color);
    line-height: 1.5;
}

.checklist-items {
    list-style: none;
    padding: 0;
}

.checklist-items li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}

.checklist-items li:last-child {
    border-bottom: none;
}

.checklist-items li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

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

.food-item,
.place-item {
    background: var(--bg-light);
    padding: 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.food-item:hover,
.place-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.food-item h5,
.place-item h5 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.food-item p,
.place-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.insights-list {
    list-style: none;
    padding: 0;
}

.insights-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}

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

.insights-list li:before {
    content: "💡";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.alert-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.2rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.alert-box h5 {
    color: #856404;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.alert-box p,
.alert-box ul {
    color: #856404;
    margin: 0;
    font-size: 0.95rem;
}

.alert-box ul {
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}


/* Tabbed Interface */
.tabs-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.tabs-header {
    display: flex;
    background: #f1f3f5;
    overflow-x: auto;
    padding: 0.5rem 0.5rem 0;
    gap: 0.5rem;
}

.tab-btn {
    padding: 1rem 2rem;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-btn:hover {
    background: rgba(9, 113, 61, 0.1);
    color: var(--primary-color);
}

.tab-btn.active {
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.tabs-content {
    padding: 2rem;
    background: #fff;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.region-group {
    margin-bottom: 2.5rem;
}

.region-group h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.country-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: var(--bg-light);
    border-radius: 8px;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.country-link:hover {
    background: #fff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    color: var(--primary-color);
}

.country-link.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #f8f9fa;
}

.flag {
    font-size: 1.4rem;
}

.info-box {
    background: #e8f5e9;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

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

.tip-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tip-card h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tip-card ul {
    padding-left: 1.2rem;
}

/* 3. Airlines */
.airline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.airline-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

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

.airline-card a {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: underline;
}

.airline-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.airline-list span {
    background: #eee;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* 4. Hotel Categories */
.hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.hotel-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.stars {
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
}

/* 5. Visa Free */
.visa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
}

.region-col h4 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.5rem;
}

.region-col ul {
    list-style: none;
}

.region-col li {
    margin-bottom: 0.5rem;
}

.note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* 6. Checklists */
.checklist-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    background: #fff;
    border: 2px dashed #ddd;
    padding: 2rem;
    border-radius: 15px;
}

.checklist-col label {
    display: block;
    margin-bottom: 0.8rem;
    cursor: pointer;
}

.checklist-col input {
    margin-right: 10px;
    transform: scale(1.2);
}

/* 7. Safety */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.safety-card {
    background: #fff5f5;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #e74c3c;
}

.safety-card h4 {
    color: #c0392b;
    margin-bottom: 1rem;
}

.safety-card ul {
    padding-left: 1.2rem;
}

/* Footer (Consistent with Home) */
.footer {
    background: #09713D;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
}

.footer-section {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    align-self: flex-start;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    width: 16px;
}

.footer-social {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

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

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

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

    /* Checklist Generator Responsive */
    .selector-row {
        flex-direction: column;
        gap: 1rem;
    }

    .selector-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    .selector-group {
        min-width: 100%;
    }

    .country-selector-box {
        padding: 1.5rem;
    }

    .checklist-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .checklist-header h3 {
        font-size: 1.2rem;
    }

    .quick-facts-grid {
        grid-template-columns: 1fr;
    }

    .food-grid,
    .places-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .checklist-content {
        padding: 1rem;
    }

    .country-selector-box {
        padding: 1rem;
    }
}
/* Visa Overview Grid Styles */
.visa-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.visa-overview-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.visa-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.visa-overview-card h4 {
    color: var(--primary-dark);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--bg-light);
}

.visa-overview-card ul {
    padding-left: 1.5rem;
    margin: 0;
}

.visa-overview-card li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .visa-overview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
