/* public/css/rians.css */

/* Cleaner corporate Standard Chartered inspired theme */

:root {
    --sc-blue: #0072ce;
    --sc-blue-dark: #003b71;
    --sc-blue-soft: #eef7ff;

    --sc-green: #00a651;
    --sc-green-dark: #007a3d;
    --sc-green-soft: #eefaf4;

    --sc-white: #ffffff;
    --sc-light: #f8fafc;
    --sc-border: #dbe7f0;
    --sc-text: #1e293b;
    --sc-muted: #64748b;
    --sc-dark: #0f172a;

    --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.08);
    --shadow-card: 0 8px 24px rgba(15, 23, 42, 0.06);
}

/* General */

html {
    scroll-behavior: smooth;
}

/*body {*/
/*    font-family: Arial, Helvetica, sans-serif;*/
/*    background: var(--sc-light);*/
/*    color: var(--sc-text);*/
/*}*/

body {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    background: var(--sc-light);
    color: var(--sc-text);
}


a {
    transition: 0.25s ease;
}

/* Header */

.top-bar {
    background: var(--sc-blue-dark);
}

.site-logo {
    height: 58px;
    width: auto;
    object-fit: contain;
}

.nav-link {
    color: var(--sc-text);
    position: relative;
}

.nav-link:hover {
    color: var(--sc-blue);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--sc-green);
    transition: 0.25s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Buttons */

.btn-primary {
    background: var(--sc-blue-dark);
    color: #ffffff;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 800;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 22px rgba(0, 59, 113, 0.22);
    border: 1px solid var(--sc-blue-dark);
}

.btn-primary:hover {
    background: var(--sc-blue);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 114, 206, 0.26);
}

.btn-secondary {
    background: var(--sc-green);
    color: #ffffff;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 800;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 22px rgba(0, 166, 81, 0.20);
    border: 1px solid var(--sc-green);
}

.btn-secondary:hover {
    background: var(--sc-green-dark);
    transform: translateY(-2px);
}

/* Hero */

.hero-bg {
    background:
        linear-gradient(120deg, rgba(0, 59, 113, 0.94), rgba(0, 90, 150, 0.86)),
        url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
}

.page-hero {
    background:
        linear-gradient(120deg, rgba(0, 59, 113, 0.96), rgba(0, 114, 206, 0.82));
}

/* Forms */

.quote-card {
    border: 1px solid var(--sc-border);
    box-shadow: var(--shadow-soft);
}

.custom-input,
.custom-select,
.custom-textarea {
    width: 100%;
    border: 1px solid var(--sc-border);
    background: #ffffff;
    border-radius: 14px;
    padding: 14px 16px;
    outline: none;
    transition: 0.25s ease;
    font-size: 15px;
    color: var(--sc-text);
}

.custom-input:focus,
.custom-select:focus,
.custom-textarea:focus {
    border-color: var(--sc-blue);
    box-shadow: 0 0 0 4px rgba(0, 114, 206, 0.10);
}

/* Sections */

.section-label {
    color: var(--sc-green-dark);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.section-label-light {
    color: #bff0d7;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* Trust cards */

.trust-card {
    background: #ffffff;
    border-color: var(--sc-border);
    box-shadow: var(--shadow-card);
}

.trust-card:nth-child(even) {
    background: var(--sc-blue-soft);
}

.trust-card:nth-child(odd) {
    background: #ffffff;
}

/* Service cards */

.service-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 30px;
    border: 1px solid var(--sc-border);
    box-shadow: var(--shadow-card);
    transition: 0.25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 114, 206, 0.35);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.10);
}

.icon-circle {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: var(--sc-blue-soft);
    border: 1px solid #d7ebfb;
    color: var(--sc-blue-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
}

/* Why section */

.why-section {
    background: var(--sc-blue-dark);
}

.feature-box {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 18px;
    color: #ffffff;
}

/* CTA */

.cta-section {
    background: linear-gradient(120deg, var(--sc-blue-dark), var(--sc-blue));
}

/* Footer */

.footer {
    background: #061b34;
}

.footer-logo {
    height: 64px;
    width: auto;
    object-fit: contain;
}

/* Mobile sticky buttons */

.mobile-sticky {
    display: none;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 92px;
    }

    .mobile-sticky {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        position: fixed;
        bottom: 14px;
        left: 14px;
        right: 14px;
        z-index: 999;
    }

    .mobile-sticky a {
        padding: 15px 10px;
        border-radius: 16px;
        text-align: center;
        font-weight: 900;
        color: #ffffff;
        box-shadow: 0 12px 28px rgba(15, 23, 42, 0.26);
    }

    .mobile-call {
        background: var(--sc-blue-dark);
    }

    .mobile-whatsapp {
        background: var(--sc-green);
    }

    .site-logo {
        height: 50px;
    }
}

.area-pill {
    background: #ffffff;
    border: 1px solid var(--sc-border);
    border-radius: 999px;
    padding: 12px 16px;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.process-card {
    background: #ffffff;
    border: 1px solid var(--sc-border);
    border-radius: 22px;
    padding: 28px;
    box-shadow: var(--shadow-card);
    text-align: center;
}

.process-number {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: var(--sc-blue-dark);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 22px;
    margin: 0 auto 18px auto;
}

.process-card h3 {
    font-size: 20px;
    font-weight: 900;
    color: var(--sc-blue-dark);
    margin-bottom: 10px;
}

.process-card p {
    color: var(--sc-muted);
    line-height: 1.7;
}

.faq-card {
    background: #ffffff;
    border: 1px solid var(--sc-border);
    border-radius: 22px;
    padding: 26px;
    box-shadow: var(--shadow-card);
}

.faq-card h3 {
    font-size: 20px;
    font-weight: 900;
    color: var(--sc-blue-dark);
    margin-bottom: 10px;
}

.faq-card p {
    color: var(--sc-muted);
    line-height: 1.7;
}

/*services section*/

/* Corporate services section */

.services-section {
    position: relative;
}

.corporate-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--sc-border);
    border-left: 1px solid var(--sc-border);
}

.corporate-service-card {
    background: #ffffff;
    padding: 34px;
    min-height: 280px;
    border-right: 1px solid var(--sc-border);
    border-bottom: 1px solid var(--sc-border);
    transition: 0.25s ease;
    position: relative;
}

.corporate-service-card:hover {
    background: var(--sc-blue-soft);
}

.corporate-service-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.service-number {
    font-size: 14px;
    font-weight: 900;
    color: var(--sc-blue-dark);
    letter-spacing: 0.08em;
}

.service-line {
    height: 1px;
    flex: 1;
    background: var(--sc-border);
}

.corporate-service-card h3 {
    font-size: 22px;
    font-weight: 900;
    color: var(--sc-blue-dark);
    margin-bottom: 14px;
    line-height: 1.25;
}

.corporate-service-card p {
    color: var(--sc-muted);
    line-height: 1.75;
    font-size: 15.5px;
    margin-bottom: 28px;
}

.service-link {
    color: var(--sc-green-dark);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    color: var(--sc-blue-dark);
}

.service-link span {
    transition: 0.25s ease;
}

.service-link:hover span {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .corporate-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .corporate-services-grid {
        grid-template-columns: 1fr;
    }

    .corporate-service-card {
        padding: 28px;
        min-height: auto;
    }
}