:root {
    --deep-blue: #002e63;
    --accent-blue: #0056b3;
    --success-green: #27ae60;
    --light-gray: #f4f7f9;
}

/* ==============================
   SECTION WRAPPER
================================ */
.success-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 16px;
    font-family: 'Poppins', sans-serif;
}

.section-title {
    text-align: center;
    margin-bottom: 35px;
}

.section-title h2 {
    color: var(--deep-blue);
    font-size: 2.2rem;
    font-weight: 700;
}

/* ==============================
   GRID SYSTEM (RESPONSIVE FIX)
================================ */
.success-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Tablet */
@media (max-width: 1024px) {
    .success-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .success-grid {
        grid-template-columns: 1fr;
    }
}

/* ==============================
   CARD
================================ */
.success-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

/* ==============================
   IMAGE
================================ */
.success-image-wrap {
    position: relative;
    height: 200px; /* reduced for compactness */
    overflow: hidden;
}

.success-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==============================
   BADGE
================================ */
.visa-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--accent-blue);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

/* ==============================
   CONTENT
================================ */
.success-content {
    padding: 14px 16px;
}

.success-content h3 {
    color: var(--deep-blue);
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.destination-tag {
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}

/* Quote */
.success-quote {
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.55;
    position: relative;
}

/* Decorative quote – safer */
.success-quote::before {
    content: "“";
    font-size: 34px;
    color: #ddd;
    position: absolute;
    top: -10px;
    left: -6px;
    z-index: 0;
}

/* ==============================
   FOOTER
================================ */
.success-footer {
    padding: 8px 14px;
    background: #fafafa;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

