 
/* =======================================================
   TERMS & CONDITIONS HERO SECTION
   PREMIUM MODERN UI STYLE (MATCHED WITH PRIVACY HERO)
========================================================= */

.terms-conditions-hero-section{
    position:relative;
    min-height:220px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:80px 20px;
    background-size:cover;
    background-position:center;
    overflow:hidden;
}

/* =========================================
   OVERLAY
========================================= */

.terms-conditions-hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.55)
        ),
        url('../images/ebony-black-carousel-far.webp') center/cover no-repeat;
    backdrop-filter:blur(5px);
    z-index:1;
}

/* =========================================
   CONTAINER
========================================= */

.terms-conditions-hero-container{
    width:100%;
    max-width:1200px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* =========================================
   CONTENT
========================================= */

.terms-conditions-hero-content{
    text-align:center;
    color:#ffffff;
    animation:termsConditionsFadeUp 1s ease forwards;
    opacity:0;
}

/* =========================================
   TITLE
========================================= */

.terms-conditions-hero-title{
    font-family:'Orbitron',sans-serif;
    font-size:46px;
    font-weight:900;
    text-transform:uppercase;
    margin-bottom:20px;
    line-height:1.3;
    letter-spacing:.5px;
    text-shadow:0 4px 20px rgba(0,0,0,.35);
}

/* =========================================
   DIVIDER
========================================= */

.terms-conditions-hero-divider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
}

/* =========================================
   LINE
========================================= */

.terms-conditions-hero-line{
    width:160px;
    height:14px;
    border-radius:20px;
    background:#ffffff;
    opacity:.7;
    position:relative;
    overflow:hidden;
}

.terms-conditions-hero-line::before{
    content:"";
    position:absolute;
    inset:0;
    background:#CE0F2C;
    animation:termsConditionsLineMove 2s linear infinite;
}

/* =========================================
   ICON
========================================= */

.terms-conditions-hero-icon{
    width:18px;
    height:18px;
    display:flex;
    animation:termsConditionsPulse 2s ease infinite;
}

.terms-conditions-hero-icon svg{
    width:100%;
    height:100%;
    fill:#CE0F2C;
    filter:drop-shadow(0 0 10px rgba(206,15,44,.5));
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes termsConditionsFadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

@keyframes termsConditionsLineMove{

    0%{
        transform:translateX(-100%);
    }

    100%{
        transform:translateX(100%);
    }

}

@keyframes termsConditionsPulse{

    0%,100%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.2);
    }

}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width:768px){

    .terms-conditions-hero-title{
        font-size:28px;
    }

    .terms-conditions-hero-section{
        padding:60px 15px;
    }

    .terms-conditions-hero-line{
        width:70px;
    }

}

@media (max-width:480px){

    .terms-conditions-hero-title{
        font-size:24px;
        line-height:1.4;
    }

    .terms-conditions-hero-line{
        width:40px;
    }

    .terms-conditions-hero-divider{
        gap:8px;
    }

}





/* =========================
   ROOT SYSTEM (MATCH PRIVACY UI)
========================= */
:root {
    --bg: #f6f8fc;
    --card: rgba(255, 255, 255, 0.78);
    --text: #CE0F2C;
    --muted: #374151;
    --border: rgba(0, 0, 0, 0.06);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 28px 70px rgba(0, 0, 0, 0.12);
    --radius: 18px;
}

/* =========================
   MAIN SECTION WRAPPER
========================= */
.terms-section {
    position: relative;
    padding: 60px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: radial-gradient(circle at top, #ffffff 0%, var(--bg) 100%);
    overflow: hidden;
}

/* overlay effect */
.terms-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(8px);
    pointer-events: none;
}

/* =========================
   CONTAINER
========================= */
.terms-conditions-container {
    position: relative;
    max-width: 1200px;
    margin: auto;
}

/* content spacing */
.terms-conditions-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* =========================
   CARD STYLE (IMPORTANT)
========================= */
.terms-block {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 30px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

/* hover effect */
.terms-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* =========================
   HEADINGS STYLE
========================= */
.terms-block h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
    position: relative;
    padding-left: 14px;
}

/* accent bar */
.terms-block h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, #CE0F2C, #b80c25);
}

/* =========================
   PARAGRAPH TEXT
========================= */
.terms-block p {
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 14px;
}

/* =========================
   LIST STYLE
========================= */
.terms-block ul {
    margin: 10px 0 0 18px;
}

.terms-block li {
    font-size: 15.5px;
    color: var(--muted);
    margin-bottom: 6px;
    line-height: 1.6;
}

/* =========================
   LINKS
========================= */
.terms-block a {
    color: #CE0F2C;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.terms-block a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background: #ff4d6d;
    transition: 0.3s ease;
}

.terms-block a:hover::after {
    width: 100%;
}

/* =========================
   STRONG TEXT
========================= */
.terms-block strong {
    color: #111;
    font-weight: 800;
}

/* =========================
   ANIMATION
========================= */
.terms-block {
    animation: fadeUp 0.5s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {
    .terms-section {
        padding: 80px 18px;
    }

    .terms-block {
        padding: 24px;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .terms-section {
        padding: 65px 14px;
    }

    .terms-block {
        padding: 20px;
        border-radius: 16px;
    }

    .terms-block h2 {
        font-size: 18px;
    }

    .terms-block p,
    .terms-block li {
        font-size: 14.5px;
    }

    .terms-block:hover {
        transform: none;
    }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
    .terms-section {
        padding: 55px 12px;
    }

    .terms-block {
        padding: 18px;
    }

    .terms-block h2 {
        font-size: 17px;
    }
}

