﻿:root {
    --vet-primary: #0f766e;
    --vet-secondary: #16a085;
    --vet-dark: #123c3a;
    --vet-light: #f0fdfa;
    --vet-soft: #e8f7f5;
    --vet-accent: #f59e0b;
    --vet-danger: #dc3545;
    --vet-text: #334155;
    --vet-muted: #64748b;
    --white: #ffffff;
    --shadow: 0 15px 45px rgba(15, 118, 110, .12);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

.pet-travel-page {
    font-family: Arial, sans-serif;
    color: var(--vet-text);
    overflow: hidden;
}

/* =========================
       HERO
    ========================= */

.travel-hero {
    min-height: 560px;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(6, 53, 49, .94) 0%, rgba(15, 118, 110, .82) 48%, rgba(15, 118, 110, .25) 100%), url('@Url.Content("~/Content/Services/PetTravel.jpg")');
    background-size: cover;
    background-position: center;
}

    .travel-hero::after {
        content: "✈";
        position: absolute;
        right: 8%;
        top: 15%;
        font-size: 150px;
        color: rgba(255,255,255,.08);
        transform: rotate(-15deg);
    }

.travel-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 80px 0;
}

.travel-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 18px;
    border-radius: 50px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
}

.travel-hero h1 {
    color: #fff;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.08;
    font-weight: 800;
    margin: 0 0 22px;
}

    .travel-hero h1 span {
        display: block;
        color: #a7f3d0;
    }

.travel-hero p {
    color: rgba(255,255,255,.9);
    font-size: 19px;
    line-height: 1.8;
    max-width: 680px;
    margin-bottom: 32px;
}

.travel-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.travel-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 25px;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 700;
    transition: .3s ease;
}

.travel-btn-primary {
    background: #fff;
    color: var(--vet-primary);
}

    .travel-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 25px rgba(0,0,0,.15);
        color: var(--vet-primary);
    }

.travel-btn-outline {
    border: 1px solid rgba(255,255,255,.6);
    color: #fff;
    background: rgba(255,255,255,.06);
}

    .travel-btn-outline:hover {
        background: #fff;
        color: var(--vet-primary);
    }

/* =========================
       INTRO
    ========================= */

.travel-intro {
    padding: 90px 0;
}

.section-label {
    color: var(--vet-primary);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    color: var(--vet-dark);
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 18px;
}

.section-description {
    color: var(--vet-muted);
    font-size: 17px;
    line-height: 1.8;
    max-width: 720px;
    margin: auto;
}

.intro-image {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.intro-content {
    padding-left: 35px;
}

    .intro-content p {
        color: var(--vet-muted);
        line-height: 1.8;
        font-size: 16px;
    }

.travel-points {
    margin-top: 25px;
    padding: 0;
    list-style: none;
}

    .travel-points li {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 14px;
        font-weight: 600;
    }

    .travel-points i {
        width: 30px;
        height: 30px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--vet-soft);
        color: var(--vet-primary);
    }

/* =========================
       SERVICES
    ========================= */

.travel-services {
    padding: 90px 0;
    background: var(--vet-light);
}

.travel-service-card {
    height: 100%;
    padding: 35px 28px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(15,118,110,.07);
    transition: .35s ease;
}

    .travel-service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 55px rgba(15,118,110,.18);
    }

.travel-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: var(--vet-soft);
    color: var(--vet-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    margin-bottom: 22px;
}

.travel-service-card h3 {
    color: var(--vet-dark);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

.travel-service-card p {
    color: var(--vet-muted);
    line-height: 1.7;
    margin: 0;
}

/* =========================
       TRAVEL PROCESS
    ========================= */

.travel-process {
    padding: 95px 0;
}

.process-card {
    position: relative;
    text-align: center;
    padding: 25px 18px;
}

.process-number {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vet-primary), var(--vet-secondary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(15,118,110,.25);
}

.process-card h4 {
    color: var(--vet-dark);
    font-weight: 800;
    margin-bottom: 10px;
}

.process-card p {
    color: var(--vet-muted);
    line-height: 1.7;
    margin: 0;
}

.process-line {
    position: absolute;
    top: 57px;
    left: 72%;
    width: 56%;
    border-top: 2px dashed #b7dfda;
}

.process-last .process-line {
    display: none;
}

/* =========================
       DOCUMENTS
    ========================= */

.documents-section {
    padding: 90px 0;
    background: var(--vet-soft);
}

.document-box {
    background: #fff;
    border-radius: 26px;
    padding: 38px;
    height: 100%;
    box-shadow: var(--shadow);
}

    .document-box h3 {
        color: var(--vet-dark);
        font-weight: 800;
        margin-bottom: 22px;
    }

.document-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

    .document-list li {
        display: flex;
        gap: 14px;
        padding: 15px 0;
        border-bottom: 1px solid #e2eeee;
    }

        .document-list li:last-child {
            border-bottom: 0;
        }

    .document-list i {
        color: var(--vet-primary);
        margin-top: 4px;
    }

    .document-list span {
        color: var(--vet-text);
        font-weight: 600;
    }

/* =========================
       CHECKLIST
    ========================= */

.checklist-section {
    padding: 90px 0;
}

.checklist-card {
    background: linear-gradient(145deg, #123c3a, #0f766e);
    border-radius: 30px;
    padding: 45px;
    color: #fff;
    box-shadow: 0 25px 60px rgba(15,118,110,.2);
}

    .checklist-card h2 {
        font-size: 35px;
        font-weight: 800;
        margin-bottom: 15px;
    }

    .checklist-card > p {
        color: rgba(255,255,255,.82);
        line-height: 1.7;
    }

.check-item {
    display: flex;
    gap: 14px;
    margin-top: 20px;
    align-items: flex-start;
}

    .check-item i {
        color: #a7f3d0;
        margin-top: 4px;
    }

    .check-item strong {
        display: block;
        margin-bottom: 3px;
    }

    .check-item span {
        color: rgba(255,255,255,.75);
        font-size: 14px;
    }

/* =========================
       FAQ
    ========================= */

.travel-faq {
    padding: 90px 0;
    background: var(--vet-light);
}

    .travel-faq .accordion-item {
        border: 0;
        margin-bottom: 14px;
        border-radius: 15px !important;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(15,118,110,.07);
    }

    .travel-faq .accordion-button {
        padding: 20px 24px;
        background: #fff;
        color: var(--vet-dark);
        font-weight: 700;
        font-size: 17px;
        box-shadow: none;
    }

        .travel-faq .accordion-button:not(.collapsed) {
            background: var(--vet-primary);
            color: #fff;
        }

    .travel-faq .accordion-body {
        background: #fff;
        color: var(--vet-muted);
        line-height: 1.8;
        padding: 22px 25px;
    }

/* =========================
       CTA
    ========================= */

.travel-cta {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 90% 20%, rgba(255,255,255,.13) 0 90px, transparent 91px), radial-gradient(circle at 10% 90%, rgba(255,255,255,.08) 0 120px, transparent 121px), linear-gradient(135deg, #0f766e, #123c3a);
}

    .travel-cta h2 {
        color: #fff;
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 15px;
    }

    .travel-cta p {
        color: rgba(255,255,255,.82);
        font-size: 17px;
        line-height: 1.8;
        max-width: 700px;
        margin: 0 auto 28px;
    }

/* =========================
       RESPONSIVE
    ========================= */

@media (max-width: 991px) {

    .travel-hero {
        min-height: 520px;
    }

    .intro-content {
        padding-left: 0;
        margin-top: 35px;
    }

    .process-line {
        display: none;
    }

    .section-title {
        font-size: 35px;
    }
}

@media (max-width: 767px) {

    .travel-hero {
        min-height: 600px;
        background-position: 65% center;
    }

    .travel-hero-content {
        padding: 60px 15px;
    }

    .travel-hero h1 {
        font-size: 43px;
    }

    .travel-hero p {
        font-size: 16px;
    }

    .intro-image {
        height: 300px;
    }

    .travel-intro,
    .travel-services,
    .travel-process,
    .documents-section,
    .checklist-section,
    .travel-faq {
        padding: 65px 0;
    }

    .document-box {
        padding: 28px;
    }

    .checklist-card {
        padding: 30px;
    }

    .travel-cta h2 {
        font-size: 32px;
    }
}
