/* ============================================
   BASIC.CSS — Shared Design System
   Reusable across every page of the site
   ============================================ */

/* ---- Design Tokens ---- */
:root {
    --gold: #ffd000;
    --gold-hover: #e6b800;
    --navy: #0a192f;
    --navy-light: #1a2b47;
    --black: #000000;
    --white: #ffffff;
    --gray-text: #cbd5e1;
    --gray-light: #f8fafc;
    --border-light: #e2e8f0;
    --text-muted: #64748b;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 999px;

    --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s var(--ease-out);
    --transition-slow: 0.45s var(--ease-out);

    --section-padding: 80px 20px;
    --container-width: 85%;
}

/* ---- Global Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; }

/* ============================================
   SECTION LAYOUT
   ============================================ */
.section {
    font-family: 'Poppins', sans-serif;
    padding: var(--section-padding);
    display: flex;
    justify-content: center;
}

.section--white {
    background-color: var(--white);
    border-top: 1px solid var(--border-light);
}
.section--gray {
    background-color: var(--gray-light);
    border-top: 1px solid var(--border-light);
}
.section--dark {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.section-container {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
}

/* ============================================
   SECTION INTRO BLOCK
   (label + heading + description)
   ============================================ */
.section-intro {
    margin-bottom: 40px;
    text-align: left;
    max-width: 780px;
}

.section-label-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.section-accent-line {
    display: block;
    width: 36px;
    height: 3px;
    background-color: var(--gold);
    border-radius: 2px;
}

.section-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.section-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* When description is a wrapper <div> with <p> children */
.section-description p {
    margin-bottom: 16px;
}

/* ============================================
   CARD — Base
   ============================================ */
.card {
    background: var(--gray-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--transition-base);
}

.card:hover {
    background: var(--white);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
    transition: var(--transition-base);
}

.card:hover .card-icon {
    background: var(--gold);
    color: var(--navy);
}

.card h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 8px;
    font-weight: 600;
}

.card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ---- Card Variant: Feature (about-us, smaller icon) ---- */
.card--feature .card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    margin-bottom: 12px;
}

.card--feature h3 { font-size: 1rem; }
.card--feature p  { font-size: 0.85rem; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
}

.btn--primary {
    background: var(--navy);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

.btn--accent {
    background: var(--gold);
    color: var(--navy);
}

.btn--accent:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 18px 42px;
    font-size: 1rem;
    letter-spacing: 1px;
}

.btn--sm {
    padding: 12px 22px;
    font-size: 0.85rem;
}

.btn i { transition: transform 0.3s ease; }
.btn--accent:hover i { transform: translateX(4px); }

/* ============================================
   IMAGE WRAPPER PATTERN
   (accent block + main image + badge)
   ============================================ */
.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
    min-height: 0;
}

.image-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    z-index: 2;
}

.image-accent {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background-color: var(--navy);
    border-radius: var(--radius-lg);
    z-index: 1;
}

.image-accent--left  { border-left: 6px solid var(--gold); }
.image-accent--right { border-right: 6px solid var(--gold); }

.image-badge {
    position: absolute;
    background: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    border: 1px solid var(--border-light);
    box-shadow: 0 8px 20px -8px rgba(10, 25, 47, 0.15);
}

.image-badge i {
    font-size: 2rem;
    color: var(--gold);
}

.image-badge strong {
    display: block;
    color: var(--navy);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.image-badge span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ============================================
   FLOATING CARD (FAQ image area)
   ============================================ */
.floating-card {
    position: absolute;
    background: var(--navy);
    color: var(--white);
    padding: 14px 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    box-shadow: 0 8px 20px -8px rgba(10, 25, 47, 0.4);
    border-left: 3px solid var(--gold);
}

.floating-card-icon {
    width: 32px;
    height: 32px;
    background: var(--gold);
    color: var(--navy);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.floating-card strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.2;
}

.floating-card span {
    color: var(--gray-text);
    font-size: 0.72rem;
}

/* ============================================
   KICKER / PILL LABEL
   ============================================ */
.kicker {
    display: inline-block;
    background: rgba(255, 208, 0, 0.1);
    color: var(--gold-hover);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

/* ============================================
   BENEFIT ITEM
   ============================================ */
.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 500;
}

.benefit-item i {
    color: var(--navy);
    background: var(--gold);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

/* ============================================
   RESPONSIVE — Shared
   ============================================ */
@media (max-width: 900px) {
    .section-intro { margin-bottom: 30px; }
    .section-heading { font-size: 1.75rem; }
    .section-description { font-size: 1rem; }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .card,
    .card-icon,
    .btn,
    .btn i {
        transition-duration: 0.001s;
    }
    .card:hover { transform: none; }
}
/* ============================================
   SITE FOOTER
   ============================================ */
.site-footer {
    font-family: 'Poppins', sans-serif;
    background: var(--navy);
    color: var(--gray-text);
    padding: 80px 20px 0;
}

/* ---- Top Grid ---- */
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---- Brand Column ---- */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);          /* white logo on dark bg */
}

.footer-brand-text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 24px;
    max-width: 320px;
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    color: var(--gray-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-base);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

/* ---- Link Groups ---- */
.footer-links-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.8rem;
    color: var(--gold);
    opacity: 0.7;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 6px;
}

.footer-links a:hover i {
    opacity: 1;
}

.footer-link--active {
    color: var(--gold) !important;
    font-weight: 600;
}

/* Service CTA inside footer */
.footer-services-cta {
    margin-top: 16px;
}

/* ---- Contact Column ---- */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact-list li i {
    color: var(--gold);
    font-size: 0.95rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-list a {
    color: var(--gray-text);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-contact-list a:hover {
    color: var(--white);
}

.footer-contact-cta {
    margin-top: 20px;
}

/* ---- Bottom Bar ---- */
.footer-bottom {
    padding: 24px 20px;
    margin-top: 0;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copyright {
    font-size: 0.82rem;
    color: rgba(203, 213, 225, 0.5);
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-legal a {
    color: rgba(203, 213, 225, 0.5);
    text-decoration: none;
    font-size: 0.82rem;
    transition: var(--transition-base);
}

.footer-legal a:hover {
    color: var(--gold);
}

.footer-legal-divider {
    color: rgba(203, 213, 225, 0.2);
    font-size: 0.75rem;
}

/* ============================================
   FOOTER — RESPONSIVE
   ============================================ */
@media (max-width: 1000px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 680px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .site-footer {
        padding: 60px 20px 0;
    }

    .footer-bottom-row {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-logo img {
        max-width: 140px;
    }

    .footer-brand-text {
        font-size: 0.85rem;
    }
}