/* =========================================================
   TOGETHER INDIA
   CANCELLATION & REFUND POLICY
========================================================= */

.ti-refund-page {
    overflow: hidden;
    background: #f7f8f5;
}


/* =========================================================
   HERO
========================================================= */

.ti-refund-hero {
    position: relative;
    min-height: 540px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #172d20;
}

.ti-refund-hero-bg {
    position: absolute;
    inset: 0;

    background:
        url("../images/refund.jpg")
        center / cover no-repeat;

    animation: refundZoom 15s ease-in-out infinite alternate;
}

@keyframes refundZoom {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }

}

.ti-refund-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(12,34,20,.96),
            rgba(18,48,29,.78),
            rgba(18,48,29,.30)
        );
}

.ti-refund-hero-content {
    position: relative;
    z-index: 2;

    max-width: 850px;

    padding: 130px 0 95px;
}

.ti-refund-label {
    display: inline-flex;

    align-items: center;
    gap: 12px;

    color: #d5aa55;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2.3px;
}

.ti-refund-label span {
    width: 38px;
    height: 1px;

    background: #d5aa55;
}

.ti-refund-hero h1 {
    margin: 25px 0;

    color: #fff;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(50px, 7vw, 88px);

    line-height: .98;

    letter-spacing: -3px;
}

.ti-refund-hero h1 em {
    display: block;

    color: #d5aa55;

    font-style: italic;
}

.ti-refund-hero p {
    max-width: 620px;

    color: rgba(255,255,255,.70);

    font-size: 14px;

    line-height: 1.9;
}

.ti-refund-date {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 20px;

    padding: 10px 14px;

    border: 1px solid rgba(255,255,255,.15);
    border-radius: 4px;

    color: rgba(255,255,255,.60);

    font-size: 9px;
}


/* =========================================================
   QUICK CARDS
========================================================= */

.ti-refund-quick {
    position: relative;

    margin-top: -55px;

    z-index: 5;
}

.ti-refund-cards {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 18px;
}

.ti-refund-card {
    display: flex;

    gap: 18px;

    padding: 25px;

    border: 1px solid #e2e7e1;

    border-radius: 7px;

    background: #fff;

    box-shadow:
        0 18px 45px rgba(31,55,39,.08);

    transition: .35s ease;
}

.ti-refund-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 25px 55px rgba(31,55,39,.13);
}

.ti-refund-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #edf3ed;

    color: #42664b;

    transition: .35s ease;
}

.ti-refund-card:hover .ti-refund-icon {
    background: #42664b;

    color: #fff;

    transform: rotate(8deg);
}

.ti-refund-card span {
    display: block;

    margin-bottom: 5px;

    color: #9aa29c;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.ti-refund-card h3 {
    margin: 0 0 8px;

    color: #283a2e;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 19px;
}

.ti-refund-card p {
    margin: 0;

    color: #7b847d;

    font-size: 10px;

    line-height: 1.7;
}


/* =========================================================
   CONTENT
========================================================= */

.ti-refund-content {
    padding: 100px 0;

    background: #f7f8f5;
}

.ti-refund-layout {
    display: grid;

    grid-template-columns: 240px minmax(0,1fr);

    gap: 70px;

    align-items: start;
}


/* =========================================================
   SIDEBAR
========================================================= */

.ti-refund-sidebar {
    position: sticky;

    top: 105px;
}

.ti-refund-nav {
    padding: 22px;

    border-radius: 7px;

    background: #21382a;

    box-shadow:
        0 18px 40px rgba(31,55,39,.12);
}

.ti-refund-nav > span {
    display: block;

    margin-bottom: 14px;

    color: rgba(255,255,255,.42);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 2px;
}

.ti-refund-nav a {
    display: block;

    padding: 10px 0;

    border-bottom: 1px solid rgba(255,255,255,.08);

    color: rgba(255,255,255,.65);

    font-size: 10px;

    text-decoration: none;

    transition: .25s ease;
}

.ti-refund-nav a:last-child {
    border-bottom: 0;
}

.ti-refund-nav a:hover {
    padding-left: 8px;

    color: #d5aa55;
}


/* =========================================================
   ARTICLE
========================================================= */

.ti-refund-article {
    max-width: 880px;

    padding: 60px;

    border-radius: 8px;

    background: #fff;

    box-shadow:
        0 18px 55px rgba(30,55,38,.06);
}

.ti-refund-article section {
    padding-bottom: 55px;

    margin-bottom: 55px;

    border-bottom: 1px solid #e7ebe6;

    scroll-margin-top: 100px;
}

.ti-refund-article section:last-of-type {
    margin-bottom: 0;

    border-bottom: 0;
}


/* NUMBER */

.ti-refund-number {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-bottom: 18px;

    border-radius: 8px;

    background: #d5aa55;

    color: #fff;

    font-size: 11px;
    font-weight: 800;

    box-shadow:
        0 8px 20px rgba(213,170,85,.20);
}


/* HEADING */

.ti-refund-article h2 {
    margin: 0 0 20px;

    color: #24382a;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 34px;
}

.ti-refund-article h2::after {
    content: "";

    display: block;

    width: 35px;
    height: 2px;

    margin-top: 12px;

    background: #42664b;
}


/* TEXT */

.ti-refund-article p {
    margin: 0 0 17px;

    color: #707b73;

    font-size: 14px;

    line-height: 1.95;
}


/* LIST */

.ti-refund-article ul {
    margin: 20px 0;

    padding-left: 0;

    list-style: none;
}

.ti-refund-article li {
    position: relative;

    margin-bottom: 12px;

    padding-left: 27px;

    color: #707b73;

    font-size: 13px;

    line-height: 1.8;
}

.ti-refund-article li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 2px;

    width: 17px;
    height: 17px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #edf3ed;

    color: #42664b;

    font-size: 9px;
    font-weight: 800;
}


/* =========================================================
   ALERT BOX
========================================================= */

.ti-refund-alert {
    display: flex;

    gap: 18px;

    margin-top: 28px;

    padding: 22px;

    border-left: 4px solid #d5aa55;

    background: #faf7ed;
}

.ti-refund-alert > i {
    color: #c59a48;

    font-size: 22px;
}

.ti-refund-alert strong {
    display: block;

    margin-bottom: 5px;

    color: #3a443d;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 18px;
}

.ti-refund-alert p {
    margin: 0;

    font-size: 11px;
}


/* =========================================================
   CHECKLIST
========================================================= */

.ti-refund-checklist {
    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 12px;

    margin: 25px 0;
}

.ti-refund-checklist div {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 16px;

    border: 1px solid #e3e9e2;

    border-radius: 5px;

    background: #fafcfa;

    transition: .3s ease;
}

.ti-refund-checklist div:hover {
    transform: translateY(-4px);

    border-color: #cddbcf;

    box-shadow:
        0 10px 25px rgba(35,60,42,.06);
}

.ti-refund-checklist i {
    color: #42664b;

    font-size: 12px;
}

.ti-refund-checklist span {
    color: #68736b;

    font-size: 11px;

    line-height: 1.6;
}


/* =========================================================
   TIMELINE
========================================================= */

.ti-refund-timeline {
    display: flex;

    align-items: center;

    margin-top: 30px;

    padding: 25px;

    border-radius: 6px;

    background: #f1f5f0;
}

.ti-refund-step {
    display: flex;

    align-items: center;

    gap: 12px;

    min-width: 150px;
}

.ti-refund-step > strong {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    border-radius: 50%;

    background: #42664b;

    color: #fff;

    font-size: 9px;
}

.ti-refund-step b {
    display: block;

    color: #2b3e31;

    font-size: 11px;
}

.ti-refund-step small {
    display: block;

    margin-top: 3px;

    color: #8b948e;

    font-size: 8px;

    line-height: 1.5;
}

.ti-refund-line {
    flex: 1;

    height: 1px;

    margin: 0 10px;

    background: #cbd5ca;
}


/* =========================================================
   CONTACT
========================================================= */

.ti-refund-contact {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 25px;

    padding: 24px;

    border-radius: 6px;

    background: #21382a;
}

.ti-refund-contact-icon {
    width: 50px;
    height: 50px;

    flex: 0 0 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.08);

    color: #d5aa55;
}

.ti-refund-contact span {
    display: block;

    margin-bottom: 5px;

    color: rgba(255,255,255,.40);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.ti-refund-contact a {
    display: block;

    color: #fff;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}

.ti-refund-contact a:hover {
    color: #d5aa55;
}

.ti-refund-contact small {
    display: block;

    margin-top: 5px;

    color: rgba(255,255,255,.45);

    font-size: 9px;
}


/* =========================================================
   NOTE
========================================================= */

.ti-refund-note {
    display: flex;

    gap: 18px;

    margin-top: 45px;

    padding: 25px;

    border: 1px solid #dce5dc;

    border-radius: 6px;

    background: #eef4ed;
}

.ti-refund-note > i {
    color: #42664b;

    font-size: 25px;
}

.ti-refund-note strong {
    color: #293e30;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 18px;
}

.ti-refund-note p {
    margin: 5px 0 0;

    font-size: 11px;
}


/* =========================================================
   CTA
========================================================= */

.ti-refund-cta {
    position: relative;

    min-height: 440px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: #20372a;
}

.ti-refund-cta-bg {
    position: absolute;

    inset: 0;

    background:
        url("../images/refund-cta.jpg")
        center / cover no-repeat;
}

.ti-refund-cta-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(18,43,26,.97),
            rgba(25,56,34,.82),
            rgba(25,56,34,.35)
        );
}

.ti-refund-cta-content {
    position: relative;

    z-index: 2;

    max-width: 750px;

    padding: 80px 0;
}

.ti-refund-cta-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 50%;

    background: rgba(213,170,85,.15);

    color: #d5aa55;

    font-size: 20px;
}

.ti-refund-cta-content > span {
    color: #d5aa55;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}

.ti-refund-cta h2 {
    margin: 15px 0;

    color: #fff;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(40px,5vw,65px);

    line-height: 1;
}

.ti-refund-cta h2 em {
    color: #d5aa55;

    font-style: italic;
}

.ti-refund-cta p {
    max-width: 550px;

    color: rgba(255,255,255,.65);

    font-size: 13px;

    line-height: 1.8;
}

.ti-refund-cta a {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 15px;

    padding: 15px 25px;

    border-radius: 4px;

    background: #d5aa55;

    color: #20372a;

    font-size: 10px;
    font-weight: 800;

    text-decoration: none;
    text-transform: uppercase;

    transition: .35s ease;
}

.ti-refund-cta a:hover {
    transform: translateY(-5px);

    background: #fff;

    box-shadow:
        0 15px 35px rgba(0,0,0,.2);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .ti-refund-layout {
        grid-template-columns: 210px minmax(0,1fr);

        gap: 35px;
    }

    .ti-refund-article {
        padding: 45px;
    }

}


@media (max-width: 850px) {

    .ti-refund-cards {
        grid-template-columns: 1fr;
    }

    .ti-refund-layout {
        grid-template-columns: 1fr;
    }

    .ti-refund-sidebar {
        position: static;
    }

    .ti-refund-nav {
        display: grid;

        grid-template-columns: repeat(2,1fr);

        gap: 0 20px;
    }

    .ti-refund-nav > span {
        grid-column: 1/-1;
    }

}


@media (max-width: 768px) {

    .ti-refund-hero-content {
        padding: 105px 20px 75px;
    }

    .ti-refund-hero h1 {
        font-size: 50px;

        letter-spacing: -2px;
    }

    .ti-refund-content {
        padding: 70px 0;
    }

    .ti-refund-article {
        padding: 38px 24px;
    }

    .ti-refund-article h2 {
        font-size: 29px;
    }

    .ti-refund-checklist {
        grid-template-columns: 1fr;
    }

    .ti-refund-timeline {
        flex-direction: column;

        align-items: stretch;

        gap: 15px;
    }

    .ti-refund-line {
        width: 1px;

        height: 20px;

        flex: none;

        margin-left: 19px;
    }

}


@media (max-width: 500px) {

    .ti-refund-hero h1 {
        font-size: 42px;
    }

    .ti-refund-hero p {
        font-size: 13px;
    }

    .ti-refund-nav {
        grid-template-columns: 1fr;
    }

    .ti-refund-article {
        padding: 30px 18px;
    }

    .ti-refund-alert,
    .ti-refund-contact,
    .ti-refund-note {
        padding: 18px;
    }

    .ti-refund-cta-content {
        padding: 70px 20px;
    }

}