/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #FAFAF9;
    /* Very light warm background matching design */
    font-family: "Roboto", sans-serif;
    color: #333;
    line-height: 1.5;
}

.container {
    /* max-width: 1400px;*/
    margin: 0 auto;
    padding: 0 40px;
}

.text-center {
    text-align: center;
}

/* Header */
.header {
    background-color: #FCFCFB;
    padding: 24px 40px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    display: block;
}

.nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    color: #4B5563;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #192164;
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: #111827;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: #0d1226;
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.open {
    display: flex;
    opacity: 1;
}

.mobile-nav-overlay ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 0;
    margin: 0;
}

.mobile-nav-overlay ul a {
    text-decoration: none;
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.mobile-nav-overlay ul a:hover {
    color: #5b8cf8;
}

.mobile-nav-overlay .btn-login {
    background-color: #1a2a6c;
    padding: 12px 36px;
    border-radius: 8px;
}

.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 28px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
}

.btn-login {
    background-color: #111634;
    color: #ffffff !important;
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
}

/* Hero Section */
.hero-section {
    padding: 20px 40px;
    background-color: #FCFCFB;
}

.hero {
    border-radius: 24px;
    background-image: url('images/hero-bg-1493e6.png');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 120px 80px;
    position: relative;
    overflow: hidden;
    min-height: 550px;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px 12px 24px;
    background-image: url('images/badge-bg.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: #ffffff;
    font-weight: 500;
}

.badge-icon {
    height: 14px;
    margin-left: 8px;
}

.hero-title {
    font-size: 68px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero-title .highlight {
    color: #E21C21;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn-outline-light {
    background-color: rgba(16, 25, 53, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline-light .btn-icon {
    width: 18px;
    margin-right: 12px;
}

.btn-light {
    background-color: #ffffff;
    color: #101935;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s;
}

.btn-light:hover {
    background-color: #f1f1f1;
}

/* Background Wrapper for Intro & Cards */
.blue-gradient-wrapper {
    background: linear-gradient(180deg, #FAFAF9 0%, #E3F1F8 40%, #E3F1F8 60%, #FAFAF9 100%);
    padding-bottom: 80px;
}

/* Intro Section */
.intro {
    padding: 80px 0 60px;
}

.intro-subheading {
    color: #151a41;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.intro-heading {
    color: #151a41;
    font-size: 46px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 32px;
}

.intro-text {
    color: #1A3454;
    font-size: 16px;
    line-height: 1.6;
    max-width: 860px;
    margin: 0 auto;
}

/* Features/Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.card-img {
    height: 120px;
    object-fit: contain;
    margin: 0 auto 32px;
    display: block;
}

.card-title {
    color: #192164;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.card-text {
    color: #192164;
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.card-list {
    list-style: none;
}

.card-list li {
    color: #192164;
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.card-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #192164;
}

/* Info Section */
.info {
    padding: 40px 0 80px;
}

.info-container {
    max-width: 900px;
}

.info-title {
    color: #192164;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.info-desc {
    color: #192164;
    font-size: 18px;
    line-height: 1.8;
}

.info-desc strong {
    font-weight: 700;
    color: #192164;
}

/* Contact Banner */
.contact-banner {
    padding: 20px 0;
}

.contact-banner-inner {
    background-image:
        /* url('images/contact-svg.svg'),
        url('images/contact-bg-564cf5.png'),*/
        linear-gradient(110deg, #010314 0%, #010314 38%, #8a0b16 38%, #8a0b16 46%, #e61b23 46%, #e61b23 100%);
    background-position: right center, left center, center;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: contain, 50% 100%, cover;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 110px 80px;
    min-height: 360px;
    position: relative;
    color: #ffffff;
}

.contact-left,
.contact-right {
    width: 38%;
    z-index: 2;
}

.contact-center {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24%;
    text-align: center;
    z-index: 1;
}

.advisor-img {
    height: 480px;
    display: block;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.contact-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.3;
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-divider {
    height: 1px;
    background-color: #1E2856;
    margin: 16px 0;
    width: 100%;
    max-width: 280px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #0F142D;
    border: 1px solid #1E2856;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.contact-icon img {
    width: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.contact-link {
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.contact-item a[href^="mailto"] {
    color: #3b82f6;
}

.contact-item a[href^="tel"] {
    color: #ffffff;
}

.contact-right {
    padding-left: 40px;
}

.contact-desc {
    font-size: 14px;
    margin-bottom: 32px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.btn-white {
    background-color: #ffffff;
    color: #111827;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
}

.btn-arrow {
    width: 14px;
    margin-left: 12px;
}

/* About Section */
.about {
    padding: 100px 0 120px;
}

.about-container {
    max-width: 900px;
}

.about-title {
    color: #192164;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
}

.about-desc {
    color: #192164;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 48px;
}

.btn-outline-dark {
    border: 1px solid #192164;
    color: #192164;
    padding: 12px 32px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-outline-dark:hover {
    background-color: #F3F4F6;
}

/* Footer */
.footer {
    background-color: #0B1120;
    padding: 32px 0;
    color: #9CA3AF;
    font-size: 12px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer a {
    color: #3B82F6;
    text-decoration: none;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social img {
    width: 18px;
    height: 18px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-social img:hover {
    opacity: 1;
}

/* =====================
   RESPONSIVE STYLES
   ===================== */

/* Tablet: 1024px and below */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    /* Header */
    .header {
        padding: 16px 24px;
    }

    .nav ul {
        gap: 20px;
    }

    .nav a {
        font-size: 14px;
    }

    /* Hero */
    .hero {
        padding: 80px 48px;
        min-height: 440px;
    }

    .hero-title {
        font-size: 52px;
    }

    /* Cards */
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Contact Banner */
    .contact-banner-inner {
        flex-direction: column;
        text-align: center;
        padding: 60px 40px 0;
        background-size: 50% auto, 0, cover;
        overflow: hidden;
    }

    .contact-left,
    .contact-right {
        width: 100%;
        max-width: 500px;
        margin: 0 auto 32px;
    }

    .contact-right {
        padding-left: 0;
        margin-bottom: 0;
    }

    .contact-center {
        position: relative;
        transform: none;
        left: auto;
        width: 100%;
        max-width: 320px;
        margin: 32px auto 0;
    }

    .advisor-img {
        position: static;
        transform: none;
        height: 320px;
        margin: 0 auto;
    }

    .contact-item {
        justify-content: center;
    }

    .contact-divider {
        max-width: 100%;
    }

    /* About */
    .about-desc {
        font-size: 17px;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Mobile: 768px and below */
@media (max-width: 768px) {

    /* Header */
    .header {
        padding: 14px 16px;
    }

    .header-container {
        position: relative;
    }

    .logo img {
        height: 56px;
    }

    /* Show hamburger, hide desktop nav */
    .hamburger {
        display: flex;
    }

    .nav {
        display: none;
    }

    /* Hero */
    .hero-section {
        padding: 12px 16px;
    }

    .hero {
        padding: 64px 32px;
        min-height: 380px;
        background-position: 70% center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .btn-outline-light,
    .btn-light {
        padding: 12px 22px;
        font-size: 13px;
    }

    /* Intro */
    .intro {
        padding: 56px 0 40px;
    }

    .intro-heading {
        font-size: 32px;
    }

    .intro-text {
        font-size: 14px;
    }

    /* Cards */
    .cards-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    /* Info */
    .info {
        padding: 40px 0 60px;
    }

    .info-title {
        font-size: 22px;
        letter-spacing: 2px;
    }

    /* Contact Banner */
    .contact-banner {
        padding: 20px 16px;
    }

    .contact-banner-inner {
        padding: 48px 24px 0;
        background-size: 100% auto, 0, cover;
    }

    .contact-title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    /* About */
    .about {
        padding: 72px 0 80px;
    }

    .about-title {
        font-size: 28px;
    }

    .about-desc {
        font-size: 15px;
    }
}

/* Small Mobile: 480px and below */
@media (max-width: 480px) {

    /* Header */
    .logo img {
        height: 44px;
    }

    .nav ul li:not(:last-child) {
        display: none;
    }

    /* Hero */
    .hero {
        padding: 48px 20px;
        min-height: 320px;
    }

    .hero-title {
        font-size: 30px;
        letter-spacing: -1px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 8px 16px 8px 14px;
    }

    /* Intro */
    .intro-subheading {
        font-size: 15px;
    }

    .intro-heading {
        font-size: 26px;
    }

    /* Cards */
    .card {
        padding: 28px 20px;
    }

    .card-img {
        height: 90px;
    }

    /* Contact */
    .contact-banner-inner {
        padding: 40px 16px 20px;
    }

    .contact-title {
        font-size: 18px;
    }

    .btn-white {
        padding: 12px 22px;
        font-size: 13px;
    }

    /* About */
    .about-title {
        font-size: 24px;
    }

    .about-desc {
        font-size: 14px;
    }

    /* Footer */
    .footer-left {
        font-size: 11px;
    }
}