
/* PAGINATION */
.pagination {
    display: flex;
    justify-content: center;
    margin: 40px 0;
    gap: 8px;
    flex-wrap: wrap;
}

.page-btn {
    padding: 10px 16px;
    background: #fff;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    font-size: 15px;
    color: #344054;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.page-btn:hover {
    background: #f0f4ff;
    border-color: #6366f1;
    color: #6366f1;
    transform: translateY(-2px);
}

.page-btn.active {
    background: linear-gradient(135deg, #38bdf8, #6366f1);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(99,102,241,0.4);
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .main-nav {
        display: none;
    }

    .hero {
        padding-top: 24px;
    }
}

 .pagination {
            display: flex;
            justify-content: center;
            margin: 40px 0;
            gap: 8px;
            flex-wrap: wrap;
        }
        .page-btn {
            padding: 10px 16px;
            background: #fff;
            border: 1px solid #d0d5dd;
            border-radius: 8px;
            font-size: 15px;
            color: #344054;
            text-decoration: none;
            transition: all 0.25s ease;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }
        .page-btn:hover {
            background: #f0f4ff;
            border-color: #6366f1;
            color: #6366f1;
            transform: translateY(-2px);
        }
        .page-btn.active {
            background: linear-gradient(135deg, #38bdf8, #6366f1);
            color: white;
            border-color: transparent;
            box-shadow: 0 4px 10px rgba(99,102,241,0.4);
        }
        a.country-card {
            text-decoration: none;
            color: inherit;
        }

    .coming-soon {
        margin-top: -10px;
        margin-bottom: 25px;
        font-size: 15px;
        color: #6366f1;
        font-weight: 600;
        text-align: center;
    }
    

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.city-card {
    display: block;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
    color: inherit;
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(99,102,241,0.15);
}

.city-img {
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center;
}

.city-info {
    padding: 15px;
    text-align: center;
}

.city-info h3 {
    font-size: 18px;
    margin: 0 0 6px;
    font-weight: 700;
}

.city-info p {
    font-size: 14px;
    color: #6b7280;
}


/* WRAPPER */
.calc-new-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 35px;
    max-width: 1100px;
    margin: auto;
}

.section-title-center {
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #111827;
}

.section-subtitle-center {
    text-align: center;
    color: #6b7280;
    margin-bottom: 40px;
    font-size: 16px;
}

/* CALCULATOR CARD */
.calc-new-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}

.calc-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1f2937;
}

.calc-input-group {
    margin-bottom: 20px;
}

.calc-input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
}

.calc-input-group input,
.calc-input-group select {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    font-size: 16px;
    background: #f9fafb;
}

/* BUTTON */
.calc-new-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #38bdf8, #6366f1);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.calc-new-btn:hover {
    transform: translateY(-3px);
}

/* RESULT */
.calc-new-result {
    margin-top: 20px;
    padding: 16px;
    border-radius: 12px;
    background: #eef2ff;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    display: none;
}

/* TIPS RIGHT CARD */
.tips-new-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}

.tips-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.tip-box {
    display: flex;
    align-items: center;
    padding: 14px;
    border-radius: 14px;
    background: #f9fafb;
}

.tip-icon {
    font-size: 26px;
    margin-right: 12px;
}

.tip-text {
    font-size: 15px;
    color: #374151;
}

.tips-footer {
    margin-top: 20px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
    font-style: italic;
}

/* MOBILE */
@media(max-width: 820px) {
    .calc-new-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


