/* ============================
   Auvisa - Australia Landing Page
   Page-specific styles only
   ============================ */

/* --- Hero overrides --- */
.hero {
    background-image: url('/assets/images/australia/hero.webp');
}

/* --- Visa Information (2-column layout) --- */
.visa-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.visa-info__image {
    display: none;
    text-align: center;
}

.visa-info__image img {
    max-width: 60%;
    height: auto;
    border-radius: 12px;
}

.visa-info__title {
    font-size: 28px;
    font-weight: 700;
    color: #1f5184;
    margin-bottom: 20px;
}

.visa-info__text p {
    font-size: 15px;
    color: #212529;
    line-height: 1.7;
    margin-bottom: 16px;
}

.visa-info__text h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f5184;
    margin-top: 28px;
    margin-bottom: 12px;
}

.visa-info__list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.visa-info__list > li {
    font-size: 15px;
    color: #212529;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.6;
}

.visa-info__list > li:last-child {
    border-bottom: none;
}

.visa-info__list strong {
    color: #1f5184;
}

.visa-info__list ul {
    margin: 8px 0 0;
    padding-left: 20px;
    list-style: disc;
}

.visa-info__list ul li {
    font-size: 14px;
    color: #6c757d;
    padding: 4px 0;
    line-height: 1.6;
}

.visa-info__link {
    color: #1f5184;
    text-decoration: underline;
    font-weight: 600;
}

.visa-info__link:hover {
    color: #183e65;
}

/* --- Passport image inside visa-info text --- */
.visa-info__passport-image {
    margin: 0 0 20px;
    border-radius: 12px;
    overflow: hidden;
}

.visa-info__passport-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* --- Steps hero image --- */
.steps__hero-image {
    text-align: center;
    margin-bottom: 32px;
    border-radius: 12px;
    overflow: hidden;
}

.steps__hero-image img {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* --- Features hero image --- */
.features__hero-image {
    text-align: center;
    margin-bottom: 32px;
    border-radius: 12px;
    overflow: hidden;
}

.features__hero-image img {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* --- Visa types destination image --- */
.visa-types__destination-image {
    text-align: center;
    margin-bottom: 32px;
    border-radius: 12px;
    overflow: hidden;
}

.visa-types__destination-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* --- CTA Banner with background image --- */
.cta-banner--australia {
    background-image: linear-gradient(rgba(31, 81, 132, 0.85), rgba(31, 81, 132, 0.9)), url('/assets/images/australia/sydney-harbour.jpg');
    background-size: cover;
    background-position: center;
}

/* --- Steps --- */
.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.step-card {
    text-align: center;
    padding: 32px 24px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.step-card__number {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
}

.step-card__number svg {
    width: 100%;
    height: 100%;
}

.step-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #1f5184;
    margin-bottom: 10px;
}

.step-card__text {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
}

.steps__cta {
    text-align: center;
    margin-top: 40px;
}

/* --- Visa Types Section --- */
.visa-types__grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.visa-type-item {
    padding: 20px 0;
    border-bottom: 1px solid #dee2e6;
}

.visa-type-item:last-child {
    border-bottom: none;
}

.visa-type-item__title {
    font-size: 20px;
    font-weight: 700;
    color: #1f5184;
    margin-bottom: 8px;
}

.visa-type-item__text {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
}

.visa-types__image {
    display: none;
    text-align: center;
}

.visa-types__image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.visa-types__cta {
    text-align: center;
    margin-top: 40px;
}

/* ============================
   Tablet (768px+)
   ============================ */
@media (min-width: 768px) {

    .visa-info {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .visa-info__image {
        display: block;
    }

    .visa-info__title {
        font-size: 34px;
    }

    .steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .visa-types__grid {
        flex-direction: row;
        align-items: center;
    }

    .visa-types__list {
        flex: 1;
    }

    .visa-types__image {
        display: block;
        flex: 0 0 45%;
    }
}

/* ============================
   Desktop (1024px+)
   ============================ */
@media (min-width: 1024px) {

    .features {
        grid-template-columns: repeat(4, 1fr);
    }
}
