/* ============================================================
   LevisPay — Main Stylesheet
   ============================================================
   Color Theme:
   #FFFFFF  — White (background)
   #5FBDFA  — Light Blue (accent)
   #FFC000  — Yellow/Gold (highlight)
   #3D7197  — Medium Blue
   #284E6A  — Dark Blue
   #142B3D  — Very Dark Blue (text)
   ============================================================ */

/* ---------- BASE ---------- */
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #142B3D;
    background: #FFFFFF;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }


/* ---------- REUSABLE COMPONENTS ---------- */

/* Section label tag (small uppercase text above titles) */
.label-tag {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #5DB7F1;
    margin-bottom: 12px;
}
.label-tag-light {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #003f7b;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #142B3D;
    margin-bottom: 15px;
    line-height: 1.2;
}
.section-desc {
    font-size: 1rem;
    color: #3D7197;
    margin-bottom: 50px;
    line-height: 1.7;
}

/* Badge (hero pill) */
.badge {
    display: inline-block;
    background: #e8f5fe;
    color: #3D7197;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid #c6e4f7;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: #5FBDFA;
    color: #FFFFFF;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}
.btn-primary:hover { background: #3D7197; }

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #284E6A;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid #284E6A;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-outline:hover { background: #284E6A; color: #FFFFFF; transform: none; }

.btn-cta {
    background: #5FBDFA;
    color: #FFFFFF !important;
    padding: 5px 14px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.7rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1.5px solid #5FBDFA;
    transition: background 0.3s;
}
.btn-cta:hover { background: #3D7197; border-color: #3D7197; }

/* Outline version of btn-cta */
.btn-outline-cta {
    background: transparent !important;
    color: #5FBDFA !important;
}
.btn-outline-cta:hover {
    background: #5FBDFA !important;
    color: #FFFFFF !important;
    border-color: #5FBDFA !important;
}

.btn-submit {
    width: 100%;
    background: #FFFFFF;
    color: #003f7b;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}
.btn-submit:hover { background: #003f7b; color: #FFFFFF; }


/* ---------- ANIMATIONS ---------- */

/* Fade in from bottom (default) */
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade in from left */
.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Fade in from right */
.fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}


/* ========================================
   HEADER
   ======================================== */
#header {
    background: #FFFFFF;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-img {
    width: 100px;
    height: auto;
    object-fit: contain;
}
.footer-logo-img {
    height: 40px;
    width: auto;
    display: block;
}
.logo strong {
    font-size: 1.2rem;
    color: #142B3D;
    display: block;
    line-height: 1.2;
}
.logo small {
    font-size: 0.65rem;
    color: #3D7197;
    font-weight: 400;
}

/* Desktop Nav */
.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}
.nav-links li:has(.btn-outline-cta) {
    margin-right: -18px;
}
.nav-links a {
    font-weight: 500;
    color: #284E6A;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.nav-links a:hover { color: #5FBDFA; }

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: #142B3D;
    margin: 5px 0;
    border-radius: 3px;
    transition: 0.3s;
}

.mobile-nav {
    display: none;
    background: #FFFFFF;
    border-top: 1px solid #e8e8e8;
    padding: 15px 20px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
    display: block;
    padding: 12px 0;
    color: #284E6A;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}
.mobile-nav a:hover { color: #5FBDFA; }


/* ========================================
   HERO
   ======================================== */
.hero {
    background: linear-gradient(to bottom, #c9e4f6, #fffded);
    padding: 70px 20px 80px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(to right, #002f4d, #5DB7F1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}
.hero-text > p {
    font-size: 1rem;
    color: #3D7197;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Stats row */
.hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.stat {
    border-left: 1px solid #5FBDFA;
    padding-left: 15px;
    text-align: center;
}
.stat:first-child {
    border-left: none;
    padding-left: 0;
}
.stat strong {
    display: block;
    font-size: 1.8rem;
    color: #142B3D;
}
.stat span {
    font-size: 0.92rem;
    color: #3D7197;
}

/* Hero image */
.hero-img {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-img img {
    max-width: 115%;
    height: auto;
    display: block;
}


/* ========================================
   PARTNERS
   ======================================== */
.partners {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #FFFFFF, #f8fbff);
    text-align: center;
}

.slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 20px auto 0;
    overflow: hidden;
}
.slider-track {
    display: flex;
    gap: 20px;
    animation: scroll-left 25s linear infinite;
    width: max-content;
}
.slider-track:hover { animation-play-state: paused; }

.partner-logo {
    flex: 0 0 auto;
    width: 210px;
    height: 95px;
    background: #f8fbff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.partner-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

/* Fade edges */
.slider-wrapper::before,
.slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 50px;
    z-index: 2;
    pointer-events: none;
}
.slider-wrapper::before { left: 0; background: linear-gradient(to right, #FFFFFF, transparent); }
.slider-wrapper::after { right: 0; background: linear-gradient(to left, #FFFFFF, transparent); }

@keyframes scroll-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Arrow buttons */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(93,183,241,0.2);
    border: none;
    border-radius: 50%;
    box-shadow: none;
    cursor: pointer;
    z-index: 3;
    font-size: 1rem;
    line-height: 1;
    color: #003f7b;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s;
}
.slider-arrow:hover { background: rgba(93,183,241,0.5); color: #003f7b; }
.slider-arrow.left { left: 5px; }
.slider-arrow.right { right: 5px; }


/* ========================================
   THE PROBLEM
   ======================================== */
.the-problem {
    padding: 80px 20px;
    background: #FFFFFF;
}

/* Problem bottom section */
.problem-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

/* Channel tags */
.channel-tags {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 10px;
}
.channel-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: #f4f7f8;
    border: none;
    padding: 40px 12px 20px;
    border-radius: 14px;
    font-size: 0.78rem;
    color: #284E6A;
    font-weight: 600;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    margin-top: 28px;
}
.channel-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.channel-tag i {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
}
/* Channel icon colors — blue tone */
.ch-blue   { background: #1a5276; color: #FFFFFF; }
.ch-pink   { background: #2874a6; color: #FFFFFF; }
.ch-teal   { background: #2e86c1; color: #FFFFFF; }
.ch-orange { background: #3498db; color: #FFFFFF; }
.ch-green  { background: #5dade2; color: #FFFFFF; }
.ch-purple { background: #85c1e9; color: #FFFFFF; }

/* Issue tags */
.problem-subtitle {
    font-size: 1.15rem;
    font-weight: 700;
    color: #003f7b;
    margin-top: 30px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}
.issue-tags {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.issue-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    padding: 30px 10px 20px;
    min-height: 220px;
    font-size: 1rem;
    color: #142B3D;
    background: none;
    border-radius: 0;
    text-align: center;
    position: relative;
}
.issue-tag::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, rgba(217,232,242,0), #d9e8f2, rgba(217,232,242,0));
}
.issue-tag:last-child::after {
    display: none;
}
.issue-circle {
    width: 90px;
    height: 90px;
    border: 3px solid #003f7b;
    border-radius: 50%;
    background: #b2feff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #007bf6;
}
.issue-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    display: block;
}
.issue-tag p {
    font-size: 1.1rem;
    color: #142B3D;
    line-height: 1.4;
    font-weight: 500;
    margin: 0;
    min-height: 70px;
    text-align: center;
}
.issue-tag strong {
    color: #007bf6;
    font-weight: 700;
    margin-right: 5px;
}

/* Result box */
.problem-result {
    background: none;
    border: none;
    padding: 0 20px;
    position: relative;
    text-align: center;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.result-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 10px;
}
.result-bg-icon {
    font-size: 2.5rem;
    color: rgba(0,63,123,0.3);
    position: static;
    transform: none;
    margin: 0;
}
.result-label {
    font-size: 2rem;
    font-weight: 800;
    color: #003f7b;
    letter-spacing: 0;
    margin: 0;
}
.problem-result p {
    font-size: 1.1rem;
    color: #142B3D;
    line-height: 1.6;
    font-weight: 500;
    margin: 0 auto;
    white-space: nowrap;
}
.problem-result strong {
    color: #007bf6;
    font-weight: 600;
}

/* ========================================
   THE SOLUTION
   ======================================== */
.the-solution {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #dbf4ff, #f8fbff);
    color: #FFFFFF;
}

.solution-title {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
    line-height: 1.2;
}
.solution-desc {
    font-size: 1rem;
    color: #3D7197;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 45px;
}

/* 3 column cards */
.solution-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.solution-card {
    background: none;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s;
}
.solution-card:hover {
    transform: none;
}
.solution-img {
    width: 250px;
    height: 250px;
    object-fit: contain;
    margin: 0 auto -20px;
    display: block;
}
.solution-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #142B3D;
    margin-bottom: 8px;
}
.solution-card p {
    font-size: 0.88rem;
    color: #3D7197;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .issue-tags {
        grid-template-columns: 1fr;
    }
    .issue-tag::after {
        display: none;
    }
    .solution-3col {
        grid-template-columns: 1fr;
    }
    .channel-tags {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat {
        border-left: none !important;
        padding-left: 0 !important;
    }
    .problem-result p {
        white-space: normal !important;
        font-size: 1rem !important;
    }
}

/* ========================================
   FEATURES (Key Features)
   ======================================== */
.features {
    padding: 80px 20px;
    background: #FFFFFF;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.features-5col {
    grid-template-columns: repeat(5, 1fr);
}

.feature-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 30px 22px;
    transition: transform 0.3s;
    border: 1px solid #d9e8f2;
}
.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #e8f5fe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.56rem;
    color: #3D7197;
    margin-bottom: 18px;
}

/* Icon color variants */
.icon-blue    { background: #e0f0ff; color: #2b7ec1; }
.icon-teal    { background: #e0f5f4; color: #00948f; }
.icon-amber   { background: #fff4dd; color: #d4930d; }
.icon-purple  { background: #eee5ff; color: #7c4dcc; }
.icon-red     { background: #fde8e8; color: #c0392b; }

.feature-card h3 {
    font-size: 1.05rem;
    color: #142B3D;
    margin-bottom: 10px;
    font-weight: 700;
}
.feature-card p {
    font-size: 0.88rem;
    color: #3D7197;
    line-height: 1.6;
}


/* ========================================
   WHY LEVIS PAY
   ======================================== */
.why-levispay {
    padding: 80px 20px;
    background: linear-gradient(to right, #dbf4ff, #fffded);
    color: #142B3D;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-levispay .label-tag { color: #003f7b; }
.why-levispay .section-title {
    color: #142B3D;
    font-size: 1.6rem;
    line-height: 1.4;
}

.why-intro {
    font-size: 1rem;
    color: #3D7197;
    margin-bottom: 25px;
}

/* Transform items — from > to */
.transform-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
}
.transform-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(to right, rgba(93,183,241,0.2), rgba(93,183,241,0));
    padding: 14px 20px;
    border-radius: 12px;
    transition: background 0.3s;
}
.transform-item:hover {
    background: linear-gradient(to right, rgba(164,252,255,1), rgba(164,252,255,0.1));
}
.transform-item .from {
    font-size: 0.95rem;
    color: #3D7197;
    min-width: 110px;
}
.transform-item .arrow {
    color: #1665dc;
    font-size: 0.85rem;
}
.transform-item .to {
    font-size: 1rem;
    font-weight: 700;
    color: #142B3D;
}

/* Tagline */
.why-tagline {
    background: none;
    border-left: none;
    padding: 20px 0;
}
.why-tagline p {
    font-size: 1rem;
    color: #142B3D;
    line-height: 1.6;
}
.why-tagline strong {
    color: #003f7b;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

/* ========================================
   PRODUCT MODULES
   ======================================== */
.modules {
    padding: 80px 20px;
    background: #FFFFFF;
}

.modules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 10px;
}

.modules-image {
    border-radius: 16px;
    overflow: hidden;
}
.modules-image img { width: 100%; display: block; }

.module-item {
    padding: 30px 0;
    border-bottom: 1px solid #eef3f8;
}
.module-item:last-child { border-bottom: none; }

.module-item h3 {
    font-size: 1.1rem;
    color: #142B3D;
    margin-bottom: 6px;
    font-weight: 700;
}
.module-item p {
    font-size: 0.9rem;
    color: #3D7197;
    line-height: 1.6;
}


/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works {
    padding: 80px 20px;
    background: #f8fbff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 40px;
}

.step {
    padding: 0 25px;
    text-align: center;
    position: relative;
}

/* Circle with number + icon */
.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid #5FBDFA;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    transition: background 0.3s, border-color 0.3s;
}
.step:hover .step-circle {
    background: #5FBDFA;
    border-color: #5FBDFA;
}
.step:hover .step-circle .step-number {
    color: #FFFFFF;
}

.step-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: #5FBDFA;
    letter-spacing: 1px;
}

.step-icon {
    color: #142B3D;
    font-size: 1rem;
    margin-right: 5px;
}

/* Connector line between steps */
.step-connector {
    display: none;
}
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(50% + 45px);
    width: calc(100% - 90px);
    height: 2px;
    background: linear-gradient(to right, #5FBDFA, #d0e8f7);
    z-index: 1;
}

.step h3 {
    font-size: 1.1rem;
    color: #142B3D;
    margin-bottom: 10px;
    font-weight: 700;
}
.step p {
    font-size: 0.88rem;
    color: #3D7197;
    line-height: 1.6;
}


/* ========================================
   APP PREVIEW
   ======================================== */
.app-preview {
    padding: 80px 20px;
    background: #FFFFFF url('../images/bg-parking-road.jpg') center center / cover no-repeat;
}
.app-preview .container {
    position: relative;
    z-index: 1;
}
.app-preview .label-tag {
    color: #5DB7F1 !important;
}
.app-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.app-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #142B3D;
    margin-bottom: 15px;
    line-height: 1.3;
}
.app-text > p {
    font-size: 0.95rem;
    color: #3D7197;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Checklist */
.check-list {
    list-style: none;
    padding: 0;
}
.check-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 0.92rem;
    color: #284E6A;
    border-bottom: 1px solid #eef3f8;
}
.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #5FBDFA;
    font-weight: 700;
    font-size: 1rem;
}

/* Phone Mockup */
.phone-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Slider area */
.phone-slider {
    position: relative;
    width: 280px;
    aspect-ratio: 9 / 19.5;
}

.phone-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.phone-slide.active {
    opacity: 1;
}

/* Dots */
.phone-dots {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}
.dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #d0e0ec;
    transition: background 0.3s, transform 0.3s;
    cursor: pointer;
}
.dot.active {
    background: #5FBDFA;
    transform: scale(1.2);
}


/* ========================================
   WHO IT'S FOR
   ======================================== */
.who-its-for {
    padding: 70px 20px;
    background: #50bdf6;
    color: #FFFFFF;
}

.who-grid {
    display: grid;
    grid-template-columns: 60fr 40fr;
    gap: 50px;
    align-items: center;
}
.who-its-for h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}
.who-its-for > .container > div > p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.7;
}

.who-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.who-item {
    background: none;
    padding: 16px 0;
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    gap: 12px;
}
.who-item i {
    font-size: 1.2rem;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    color: #003f7b;
    border: 4px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    flex-shrink: 0;
}
.who-item:last-child {
    border-bottom: none;
}


/* ========================================
   BLOG CALLOUT
   ======================================== */
.blog-callout {
    padding: 80px 20px;
    background: url('../images/bg-parking.jpg') center/cover no-repeat;
}
.blog-callout-inner {
    text-align: center;
}


/* ╔══════════════════════════════════════════════════════════╗
   ║  PAGE: ABOUT  (about.php)                                ║
   ╚══════════════════════════════════════════════════════════╝ */

.about-banner {
    background: linear-gradient(135deg, #4fb7ed, #46d6f0);
    padding: 100px 20px 80px;
    text-align: center;
    color: #FFFFFF;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.about-banner h1 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    max-width: 800px;
}
.about-banner-sub {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About section on homepage (#about anchor) */
.about-home {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 50%, #f4fbfe 100%);
    scroll-margin-top: 80px;
}
.about-home-content {
    text-align: left;
}
.about-home-content p {
    font-size: 1.05rem;
    color: #3D7197;
    line-height: 1.9;
    margin-bottom: 22px;
}
.about-home-content strong {
    color: inherit;
}
.about-home-content .about-img {
    margin: 30px 0;
    text-align: left;
}
.about-home-content .about-img img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
.about-home-content p:last-child {
    margin-bottom: 0;
}

/* About main section (about.php — kept) */
.about-section {
    padding: 80px 20px;
    background: #FFFFFF;
}
.about-content {
    max-width: 900px;
    margin: 0 auto;
}
.about-content p {
    font-size: 1.05rem;
    color: #3D7197;
    line-height: 1.9;
    margin-bottom: 22px;
}
.about-content p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .about-banner {
        padding: 70px 20px 60px;
    }
    .about-banner h1 {
        font-size: 1.8rem;
    }
    .about-banner-sub {
        font-size: 0.95rem;
    }
    .about-section {
        padding: 50px 20px;
    }
    .about-content p {
        font-size: 1rem;
    }
}
.blog-callout-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #5FBDFA, #46d6f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.8rem;
}
.blog-callout-desc {
    font-size: 1rem;
    color: #3D7197;
    line-height: 1.7;
    margin-bottom: 30px;
}


/* ========================================
   FAQ
   ======================================== */
.faq {
    padding: 80px 20px;
    background: #FFFFFF;
}

.faq-list {
    max-width: 100%;
    margin: 30px 0 0;
}

.faq-item {
    border-bottom: 1px solid #eef3f8;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    font-size: 1rem;
    font-weight: 600;
    color: #142B3D;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: color 0.3s;
}
.faq-question:hover { color: #5FBDFA; }

.faq-arrow {
    font-size: 1.4rem;
    color: #5FBDFA;
    transition: transform 0.3s;
    font-weight: 300;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer p {
    font-size: 0.92rem;
    color: #3D7197;
    line-height: 1.7;
    padding-bottom: 20px;
}

.faq-item.open .faq-answer { max-height: 200px; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-item.open .faq-question { color: #5db7f1; }


/* ========================================
   CTA / GET STARTED + FORM
   ======================================== */
.cta {
    padding: 80px 20px;
    background: linear-gradient(to right, #4fb7ed, #46d6f0);
    position: relative;
    overflow: hidden;
}
.cta-bg-img {
    position: absolute;
    left: -60px;
    bottom: -120px;
    width: 550px;
    height: auto;
    opacity: 0.1;
    z-index: 0;
    transform: rotate(30deg);
}
.cta .container {
    position: relative;
    z-index: 1;
    color: #FFFFFF;
}
.cta-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}
.cta-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}
.cta-text p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.7;
}

.cta-form {
    background: rgba(255,255,255,0.3);
    border-radius: 16px;
    padding: 28px 25px;
    text-align: center;
}
.cta-form h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #003f7b;
}

.form-group { margin-bottom: 18px; }

.form-icon-group {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(0,63,123,0.3);
}
.form-icon-group:has(textarea) {
    align-items: flex-start;
    margin-bottom: 15px;
}
.form-icon-group:has(textarea) i {
    margin-top: 16px;
}
.form-icon-group i {
    color: rgba(0,63,123,0.5);
    font-size: 0.85rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    border-radius: 0;
    font-size: 0.92rem;
    color: #003f7b;
    background: transparent;
    font-family: inherit;
    transition: border-color 0.3s;
    border: none;
    border-bottom: 1px solid rgba(0,63,123,0.3);
    border-radius: 0;
    padding: 10px 0;
}
.form-icon-group input,
.form-icon-group textarea {
    border-bottom: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0,63,123,0.4);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #5FBDFA;
}

/* Remove browser autofill background */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px transparent inset;
    -webkit-text-fill-color: #003f7b;
    transition: background-color 5000s ease-in-out 0s;
}
.form-group textarea { resize: vertical; min-height: 80px; }

/* Form messages */
.form-msg {
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}
.form-msg.success { background: #d4edda; color: #155724; }
.form-msg.error { background: #f8d7da; color: #721c24; }


/* ========================================
   FOOTER
   ======================================== */
footer {
    background: #FFFFFF;
    color: #3D7197;
    padding: 25px 20px;
    font-size: 0.85rem;
    border-top: 1px solid #e8e8e8;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid #e8e8e8;
}
.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-logo-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}
.footer-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #142B3D;
}
.footer-name-light {
    color: #5FBDFA;
    font-weight: 400;
}
.footer-tagline {
    font-size: 0.75rem;
    color: #3D7197;
}

.footer-links {
    display: flex;
    gap: 25px;
}
.footer-links a {
    color: #3D7197;
    transition: color 0.3s;
    font-size: 0.82rem;
}
.footer-links a:hover { color: #5FBDFA; }

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    color: #3D7197;
    font-size: 0.8rem;
}


/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 42px;
    height: 42px;
    background: #003f7b;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, background 0.3s;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: #3D7197;
}

/* ========================================
   RESPONSIVE — Tablet
   ======================================== */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }

    .hero-grid,
    .modules-grid,
    .app-preview-grid,
    .who-grid,
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .features-grid, .features-5col { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .step:not(:last-child)::after { display: none; }

    .section-title { font-size: 1.6rem; }
    .hero-text h1 { font-size: 2rem; }

}

/* ========================================
   RESPONSIVE — Mobile
   ======================================== */
@media (max-width: 480px) {
    .hero { padding: 50px 20px 60px; }
    .hero-text h1 { font-size: 1.6rem; }

    .features-grid, .features-5col { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .faq-ear { display: none; }
    .app-phones { grid-template-columns: 1fr; }

    .btn-primary, .btn-outline { padding: 12px 24px; font-size: 0.9rem; }

    .hero-stats { flex-direction: column; gap: 15px; }

    .footer-inner { flex-direction: column; gap: 15px; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }

    .partner-logo { width: 140px; height: 65px; padding: 10px 15px; }

    .cta-form { padding: 25px 20px; }
}


/* ╔══════════════════════════════════════════════════════════╗
   ║  PAGE: BLOG LIST  (blog.php)                             ║
   ║  Edit blog list grid, banner, cards here                 ║
   ╚══════════════════════════════════════════════════════════╝ */

/* Banner */
.blog-banner {
    background: linear-gradient(135deg, #4fb7ed, #46d6f0);
    padding: 100px 20px 80px;
    text-align: center;
    color: #FFFFFF;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.blog-banner h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}
.blog-banner p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Blog grid */
.blog-section {
    padding: 80px 20px;
    background: #f8fbff;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Blog card */
.blog-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}
.blog-card:hover .blog-title {
    color: #5DB7F1;
}
.blog-card:hover .blog-link i {
    transform: translateX(4px);
}

/* Blog image */
.blog-img {
    width: 100%;
   /* height: 220px;*/
    object-fit: contain;
    background: #f8fbff;
    display: block;
}

/* Blog content */
.blog-body {
    padding: 25px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-date {
    font-size: 0.8rem;
    color: #5DB7F1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.blog-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #142B3D;
    line-height: 1.4;
    margin-bottom: 15px;
    flex: 1;
}
.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #5DB7F1;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.blog-link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.blog-link:hover {
    color: #003f7b;
}
.blog-title,
.blog-date,
.blog-link {
    transition: color 0.3s;
}
.blog-link i {
    font-size: 0.75rem;
    transition: transform 0.3s;
}

/* ---------- RESPONSIVE ---------- */

/* Large tablet */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet */
@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .blog-banner h1 {
        font-size: 2.2rem;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .blog-banner {
        padding: 70px 20px 50px;
    }
    .blog-banner h1 {
        font-size: 1.8rem;
    }
    .blog-banner p {
        font-size: 0.95rem;
    }
    .blog-section {
        padding: 50px 20px;
    }
    .blog-img {
        height: 200px;
    }
}
/* ╔══════════════════════════════════════════════════════════╗
   ║  PAGE: SINGLE BLOG POST  (blog/*.php)                    ║
   ║  Edit article banner, content, tables, image rows here   ║
   ╚══════════════════════════════════════════════════════════╝ */

/* Banner */
.post-banner {
    background: linear-gradient(135deg, #4fb7ed, #46d6f0);
    padding: 90px 20px ;
    text-align: center;
    color: #FFFFFF;
}
.post-banner .post-date {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.85;
    margin-bottom: 12px;
}
.post-banner h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
}
.post-banner .post-subtitle {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Back link */
.back-to-blog {
    max-width: 850px;
    margin: 40px auto 0;
    padding: 0 20px;
}
.back-to-blog a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #5DB7F1;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}
.back-to-blog a:hover {
    color: #003f7b;
}

/* Article content */
.post-content {
    max-width: 900px;
    margin: -50px auto 60px;
    padding: 25px 25px 40px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

@media (max-width: 768px) {
    .post-content {
        margin: -30px 15px 40px;
        padding: 20px 18px 30px;
        border-radius: 12px;
    }
}

.post-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #142B3D;
    margin-top: 40px;
    margin-bottom: 15px;
    line-height: 1.3;
}
.post-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #284E6A;
    margin-top: 15px;
    margin-bottom: 12px;
}
.post-content p {
    font-size: 1rem;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 18px;
}
.post-content strong {
    color: #142B3D;
}
.post-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 25px 0;
    display: block;
}
.post-content > *:first-child {
    margin-top: 0;
}
.post-content ul {
    margin-bottom: 18px;
    padding-left: 25px;
    list-style-type: disc !important;
}
.post-content ul a {
    color: #5DB7F1;
    font-weight: 600;
    transition: color 0.3s;
}
.post-content ul a:hover {
    color: #003f7b;
    text-decoration: underline;
}
.post-content li {
    font-size: 1rem;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 8px;
    display: list-item !important;
    list-style: disc !important;
}

/* Comparison table */
.post-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.95rem;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.post-table thead {
    background: #e8f5fe;
}
.post-table th {
    text-align: left;
    padding: 14px 18px;
    font-weight: 700;
    color: #142B3D;
    border-bottom: 2px solid #5DB7F1;
}
.post-table td {
    padding: 14px 18px;
    color: #000000;
    line-height: 1.6;
    border-bottom: 1px solid #e6eef5;
    vertical-align: top;
}
.post-table tbody tr:last-child td {
    border-bottom: none;
}
.post-table tbody tr:hover {
    background: #f7fbfe;
}

@media (max-width: 768px) {
    .post-table {
        font-size: 0.85rem;
    }
    .post-table th,
    .post-table td {
        padding: 10px 12px;
    }
}

/* Highlight box */
.post-highlight {
    background: #f0f7fd;
    border-left: 4px solid #5DB7F1;
    padding: 20px 24px;
    border-radius: 0 12px 12px 0;
    margin: 25px 0;
}
.post-highlight p {
    color: #142B3D;
    font-style: italic;
    margin-bottom: 0;
}

/* 2x2 STEP grid */
.step-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}
.step-card {
    display: flex;
    flex-direction: column;
}
.step-header {
    background: #e8f5fe;
    padding: 20px 24px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.step-num {
    font-size: 1rem;
    font-weight: 700;
    color: #5DB7F1;
    margin-bottom: 4px;
    letter-spacing: 1px;
}
.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #142B3D;
    line-height: 1.3;
}
.step-body p {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .step-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Side-by-side layout (image + text) */
.post-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    margin: 30px 0;
}
.post-row.reverse {
    direction: rtl;
}
.post-row.reverse > * {
    direction: ltr;
}
.post-row img {
    width: 100%;
    border-radius: 12px;
    margin: 0;
}
.post-row ul {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .post-row {
        grid-template-columns: 1fr;
    }
    .post-row.reverse {
        direction: ltr;
    }
    .post-banner {
        padding: 70px 20px 50px;
    }
    .post-banner h1 {
        font-size: 1.7rem;
    }
    .post-banner .post-subtitle {
        font-size: 0.95rem;
    }
    .post-content h2 {
        font-size: 1.3rem;
    }
    .post-content h3 {
        font-size: 1.1rem;
    }
    .post-content p,
    .post-content li {
        font-size: 0.95rem;
    }
}
/* ╔══════════════════════════════════════════════════════════╗
   ║  PAGE: eREFUND  (erefund.php)                            ║
   ║  Edit refund policy banner, sections, cards, CTA here    ║
   ╚══════════════════════════════════════════════════════════╝ */

/* Banner */
.refund-banner {
    background: linear-gradient(135deg, #4fb7ed, #46d6f0);
    padding: 100px 20px 80px;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.refund-banner::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}
.refund-banner::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}
.refund-banner .refund-icon {
    width: 130px;
    height: 130px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.refund-banner .refund-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.refund-banner h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}
.refund-banner p {
    font-size: 1.05rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Refund main content */
.refund-content {
    max-width: 1200px;
    margin: 40px auto 60px;
    padding: 0 20px;
}

/* Section block (no card, no shadow) */
.refund-section {
    padding: 30px 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #eef6fc;
}
.refund-content > section:nth-of-type(7),
.refund-content > section:nth-of-type(8) {
    border-bottom: none;
}
.refund-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.refund-num {
    width: 32px;
    height: 32px;
    background: #e8f5fe;
    color: #142B3D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.refund-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #142B3D;
    margin: 0;
    line-height: 1.3;
}
.refund-section p {
    font-size: 1rem;
    color: #3D7197;
    line-height: 1.8;
    margin-bottom: 14px;
}
.refund-section p:last-child {
    margin-bottom: 0;
}
.refund-section strong {
    color: #142B3D;
}

/* Two-column eligibility list */
.eligibility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}
.eligibility-card {
    padding: 12px 0;
}
.eligibility-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}
.eligibility-card h3 i {
    margin-top: 4px;
    flex-shrink: 0;
}
.eligibility-card.eligible h3 {
    color: #1f7a3d;
}
.eligibility-card.not-eligible h3 {
    color: #b32f2f;
}
.eligibility-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.eligibility-card li {
    padding: 6px 0;
    color: #3D7197;
    font-size: 0.95rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.eligibility-card.eligible li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #1f7a3d;
    flex-shrink: 0;
}
.eligibility-card.not-eligible li::before {
    content: "\f00d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #b32f2f;
    flex-shrink: 0;
}

/* Payment method cards */
.payment-method-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}
.payment-card {
    padding: 24px 0;
}
.payment-card .pay-icon {
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #5FBDFA;
    font-size: 1.8rem;
    margin-bottom: 14px;
}
.payment-card .pay-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.payment-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #142B3D;
    margin-bottom: 8px;
    padding-left: 22px;
    position: relative;
}
.payment-card h3::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #142B3D;
    border-radius: 50%;
}
.payment-card p {
    padding-left: 22px;
}
.payment-card p {
    color: #3D7197;
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

/* Requirements list (informational) */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 30px;
    margin-top: 16px;
    padding-left: 22px;
}
.req-item {
    color: #3D7197;
    font-size: 0.98rem;
    line-height: 1.7;
    padding: 4px 0;
    list-style: disc;
    display: list-item;
}
.req-item i {
    display: none;
}

/* Timeline */
.timeline-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}
.timeline-list li {
    padding: 8px 0 8px 36px;
    position: relative;
    color: #3D7197;
    line-height: 1.7;
}
.timeline-list li::before {
    content: "\f017";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 16px;
    color: #5FBDFA;
    font-size: 1rem;
}

/* Outcome cards */
.outcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}
.outcome-card {
    padding: 12px 0;
}
.outcome-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.outcome-card.success h3 {
    color: #1f7a3d;
}
.outcome-card.unsuccess h3 {
    color: #b32f2f;
}
.outcome-card ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}
.outcome-card li {
    color: #3D7197;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 6px;
}

/* Notes box */
.notes-box {
    background: #f0f7fd;
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 20px;
}
.notes-box ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}
.notes-box li {
    color: #142B3D;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 8px;
}
.notes-box li:last-child {
    margin-bottom: 0;
}

/* Fraud alert */
.fraud-alert {
    padding: 12px 0;
    margin-top: 20px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.fraud-alert .alert-icon {
    width: 36px;
    height: 36px;
    background: #b32f2f;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.fraud-alert ul {
    list-style: disc;
    padding-left: 20px;
    margin: 8px 0 0;
}
.fraud-alert li {
    color: #142B3D;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 6px;
}
.fraud-alert h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #b32f2f;
    margin: 0;
}

/* CTA submit section */
.refund-cta {
    background: linear-gradient(135deg, #f4fbff, #e8f5fe);
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    margin-top: 25px;
}
.refund-cta h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #142B3D;
}
.refund-cta p {
    margin-bottom: 25px;
    color: #3D7197;
}
.refund-cta .btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFFFFF;
    color: #2a8fc6;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.refund-cta .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Refund Zoho form (inside CTA) */
.refund-form-wrap {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 20px;
    max-width: 100%;
    margin-top: 20px;
    overflow: hidden;
}
.refund-form-wrap iframe {
    max-width: 100%;
    display: block;
}
.refund-cta {
    scroll-margin-top: 100px;
}

/* Responsive */
@media (max-width: 768px) {
    .refund-banner {
        padding: 70px 20px 60px;
    }
    .refund-banner h1 {
        font-size: 1.7rem;
    }
    .refund-section {
        padding: 24px 0;
    }
    .refund-section h2 {
        font-size: 1.15rem;
    }
    .eligibility-grid,
    .payment-method-grid,
    .outcome-grid,
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    .refund-cta {
        padding: 40px 24px;
    }
    .refund-cta h2 {
        font-size: 1.3rem;
    }
}
