/* =========================================================
   INVEST 2 WEALTH
   MAIN WEBSITE CSS
   ========================================================= */


/* =========================================================
   1. ROOT VARIABLES
   ========================================================= */

:root {

    --primary: #0B1F3A;
    --primary-dark: #07162B;
    --primary-light: #EAF7ED;

    --accent: #78C98A;
    --accent-light: #B8E6C1;

    --dark: #0B1F3A;
    --text: #26384A;
    --muted: #667788;

    --white: #FFFFFF;
    --light: #F7FBF8;
    --light-2: #EAF7ED;

    --border: #D8E8DD;

    --shadow-sm:
        0 8px 25px rgba(16, 35, 31, 0.07);

    --shadow:
        0 18px 50px rgba(16, 35, 31, 0.10);

    --shadow-lg:
        0 30px 80px rgba(16, 35, 31, 0.14);

    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;

    --container: 1180px;

    --transition:
        all 0.3s ease;

}


/* =========================================================
   2. RESET
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.7;

    overflow-x: hidden;

}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

ul {
    list-style: none;
}


/* =========================================================
   3. COMMON
   ========================================================= */

.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: 0 auto;

}

.section-label {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--accent);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 14px;

}

.section-label::before {

    content: "";

    width: 28px;

    height: 2px;

    background: var(--accent);

}

.section-heading {

    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;

}

.section-heading h2 {

    color: var(--dark);

    font-size: clamp(
        32px,
        4vw,
        50px
    );

    line-height: 1.15;

    letter-spacing: -1.2px;

    margin-bottom: 20px;

}

.section-heading h2 span {

    display: block;

    color: var(--primary);

}

.section-heading p {

    max-width: 650px;

    margin: 0 auto;

    color: var(--muted);

    font-size: 17px;

}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn-primary,
.btn-secondary,
.header-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 52px;

    padding: 0 25px;

    border-radius: 8px;

    font-size: 15px;

    font-weight: 700;

    transition: var(--transition);

    border: 1px solid transparent;

}

.btn-primary {

    background: var(--primary);

    color: var(--white);

    box-shadow:
        0 10px 25px rgba(11, 31, 58, 0.18);

}

.btn-primary:hover {

    background: var(--primary-dark);

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(11, 31, 58, 0.25);

}

.btn-secondary {

    background: transparent;

    color: var(--primary);

    border-color: var(--primary);

}

.btn-secondary:hover {

    background: var(--primary);

    color: var(--white);

    transform: translateY(-3px);

}

.btn-primary span,
.btn-secondary span {

    transition: transform 0.3s ease;

}

.btn-primary:hover span,
.btn-secondary:hover span {

    transform: translateX(4px);

}


/* =========================================================
   4. HEADER
   ========================================================= */

header {

    position: relative;

    z-index: 1000;

    background: rgba(
        255,
        255,
        255,
        0.96
    );

    border-bottom: 1px solid var(--border);

}

header.scrolled {

    position: sticky;

    top: 0;

    box-shadow:
        0 5px 25px rgba(
            11,
            31,
            58,
            0.08
        );

    backdrop-filter: blur(15px);

}

.navbar {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    min-height: 84px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

}


/* =========================================================
   LOGO
   ========================================================= */

.logo {

    display: inline-flex;

    align-items: center;

    gap: 11px;

    flex-shrink: 0;

}

.logo-icon {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--primary),
            #78C98A
        );

    box-shadow:
        0 8px 20px rgba(
            11,
            31,
            58,
            0.20
        );

}

.logo-icon span {

    font-size: 12px;

    font-weight: 900;

    letter-spacing: -0.5px;

}

.logo-text {

    display: flex;

    flex-direction: column;

}

.logo-text strong {

    color: var(--dark);

    font-size: 15px;

    letter-spacing: 0.5px;

    line-height: 1.2;

}

.logo-text small {

    color: var(--muted);

    font-size: 9px;

    margin-top: 3px;

}


/* =========================================================
   NAV
   ========================================================= */

nav {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 27px;

    margin-left: auto;

}

nav a {

    position: relative;

    color: var(--text);

    font-size: 14px;

    font-weight: 600;

    padding: 8px 0;

    transition: var(--transition);

}

nav a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 2px;

    background: var(--accent);

    transition: width 0.3s ease;

}

nav a:hover,
nav a.active {

    color: var(--primary);

}

nav a:hover::after,
nav a.active::after {

    width: 100%;

}

.header-btn {

    min-height: 45px;

    padding: 0 19px;

    background: var(--primary);

    color: var(--white);

}

.header-btn:hover {

    background: var(--primary-dark);

    transform: translateY(-2px);

}

.menu-btn {

    display: none;

    width: 44px;

    height: 44px;

    border: 1px solid var(--border);

    border-radius: 9px;

    background: var(--white);

    color: var(--primary);

    font-size: 23px;

}


/* =========================================================
   5. GENERIC HERO
   ========================================================= */

.services-hero,
.contact-hero {

    position: relative;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 85% 20%,
            rgba(120, 201, 138, 0.12),
            transparent 25%
        ),

        linear-gradient(
            135deg,
            #F7FBF8,
            #FFFFFF
        );

}

.services-hero {

    padding: 100px 0;

}

.services-hero-grid {

    display: grid;

    grid-template-columns:
        1fr
        0.9fr;

    align-items: center;

    gap: 70px;

}

.services-hero-content h1 {

    color: var(--dark);

    font-size: clamp(
        42px,
        5vw,
        67px
    );

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 25px;

}

.services-hero-content h1 span {

    display: block;

    color: var(--primary);

}

.services-hero-content > p {

    max-width: 620px;

    color: var(--muted);

    font-size: 18px;

    margin-bottom: 32px;

}

.services-hero-buttons {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

}


/* =========================================================
   SERVICES HERO VISUAL
   ========================================================= */

.services-hero-visual {

    position: relative;

    min-height: 480px;

    display: flex;

    align-items: center;

    justify-content: center;

}

.services-orbit {

    position: absolute;

    border: 1px solid
        rgba(
            11,
            31,
            58,
            0.15
        );

    border-radius: 50%;

}

.orbit-one {

    width: 390px;

    height: 390px;

}

.orbit-two {

    width: 280px;

    height: 280px;

}

.services-center-card {

    position: relative;

    z-index: 2;

    width: 210px;

    min-height: 210px;

    padding: 30px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    border-radius: 50%;

    background: var(--white);

    box-shadow: var(--shadow-lg);

}

.services-center-icon {

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 25px;

    font-weight: 800;

    margin-bottom: 15px;

}

.services-center-card strong {

    color: var(--dark);

    font-size: 17px;

    line-height: 1.3;

}

.services-center-card span {

    color: var(--muted);

    font-size: 12px;

    margin-top: 6px;

}

.service-mini-card {

    position: absolute;

    z-index: 3;

    padding: 13px 17px;

    display: flex;

    align-items: center;

    gap: 9px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 12px;

    box-shadow: var(--shadow-sm);

    color: var(--dark);

    font-size: 13px;

    font-weight: 700;

}

.mini-icon {

    width: 32px;

    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    background: var(--primary-light);

}

.mini-one {

    top: 50px;

    right: 30px;

}

.mini-two {

    bottom: 55px;

    right: 10px;

}

.mini-three {

    bottom: 30px;

    left: 20px;

}


/* =========================================================
   SERVICES INTRO
   ========================================================= */

.services-intro {

    padding: 100px 0 20px;

}


/* =========================================================
   SERVICES CARDS
   ========================================================= */

.services-list {

    padding: 30px 0 110px;

}

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}

.service-card {

    position: relative;

    padding: 34px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow-sm);

    transition: var(--transition);

    overflow: hidden;

}

.service-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 4px;

    background: var(--primary);

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.3s ease;

}

.service-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow);

}

.service-card:hover::before {

    transform: scaleX(1);

}

.featured-service {

    border-color:
        rgba(
            120,
            201,
            138,
            0.6
        );

}

.service-badge {

    position: absolute;

    top: 18px;

    right: 18px;

    padding: 5px 9px;

    border-radius: 50px;

    background: var(--accent-light);

    color: #0B1F3A;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

}

.service-card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 22px;

}

.service-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    background: var(--primary-light);

    font-size: 25px;

}

.service-number {

    color: #c9d4d0;

    font-size: 30px;

    font-weight: 900;

}

.service-card h3 {

    color: var(--dark);

    font-size: 22px;

    margin-bottom: 13px;

}

.service-card > p {

    color: var(--muted);

    font-size: 14px;

    margin-bottom: 20px;

}

.service-card ul {

    display: grid;

    gap: 8px;

    margin-bottom: 25px;

}

.service-card li {

    position: relative;

    padding-left: 21px;

    color: var(--text);

    font-size: 13px;

}

.service-card li::before {

    content: "✓";

    position: absolute;

    left: 0;

    color: var(--primary);

    font-weight: 900;

}

.service-card > a {

    color: var(--primary);

    font-size: 14px;

    font-weight: 800;

}


/* =========================================================
   PROCESS
   ========================================================= */

.process-section {

    padding: 110px 0;

    background: var(--light);

}

.process-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

}

.process-item {

    position: relative;

    padding: 30px;

    text-align: center;

    background: var(--white);

    border-radius: var(--radius);

    border: 1px solid var(--border);

}

.process-number {

    color: var(--accent);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 1px;

}

.process-icon {

    width: 64px;

    height: 64px;

    margin: 15px auto;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--primary-light);

    font-size: 25px;

}

.process-item h3 {

    color: var(--dark);

    font-size: 20px;

    margin-bottom: 10px;

}

.process-item p {

    color: var(--muted);

    font-size: 13px;

}


/* =========================================================
   SERVICES CTA
   ========================================================= */

.services-cta {

    padding: 90px 0;

}

.services-cta-inner {

    padding: 55px 65px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            120deg,
            var(--primary-dark),
            var(--primary)
        );

    box-shadow: var(--shadow-lg);

}

.services-cta-content {

    max-width: 650px;

}

.services-cta .section-label {

    color: var(--accent);

}

.services-cta-content h2 {

    color: var(--white);

    font-size: clamp(
        30px,
        4vw,
        45px
    );

    line-height: 1.1;

    margin-bottom: 16px;

}

.services-cta-content h2 span {

    color: #e4c275;

}

.services-cta-content p {

    color: rgba(
        255,
        255,
        255,
        0.72
    );

}

.services-cta-actions {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;

}

.services-cta .btn-primary {

    background: var(--white);

    color: var(--primary);

}

.services-cta .btn-secondary {

    border-color: rgba(
        255,
        255,
        255,
        0.5
    );

    color: var(--white);

}


/* =========================================================
   CONTACT HERO
   ========================================================= */

.contact-hero {

    padding: 95px 0;

    text-align: center;

}

.contact-hero-inner {

    max-width: 800px;

}

.contact-hero h1 {

    color: var(--dark);

    font-size: clamp(
        40px,
        5vw,
        64px
    );

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 22px;

}

.contact-hero h1 span {

    display: block;

    color: var(--primary);

}

.contact-hero p {

    max-width: 650px;

    margin: auto;

    color: var(--muted);

    font-size: 18px;

}


/* =========================================================
   CONTACT MAIN
   ========================================================= */

.contact-main {

    padding: 100px 0;

}

.contact-grid {

    display: grid;

    grid-template-columns:
        0.85fr
        1.15fr;

    gap: 70px;

    align-items: start;

}

.contact-information h2 {

    color: var(--dark);

    font-size: 42px;

    line-height: 1.1;

    margin-bottom: 18px;

}

.contact-information h2 span {

    color: var(--primary);

}

.contact-intro {

    color: var(--muted);

    margin-bottom: 35px;

}

.contact-info-card {

    display: flex;

    align-items: flex-start;

    gap: 17px;

    padding: 18px 0;

    border-bottom: 1px solid var(--border);

}

.contact-info-icon {

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: var(--primary-light);

}

.contact-info-card small {

    display: block;

    color: var(--accent);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

}

.contact-info-card strong {

    display: block;

    color: var(--dark);

    font-size: 16px;

    margin: 2px 0;

}

.contact-info-card p {

    color: var(--muted);

    font-size: 12px;

}

.contact-social {

    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 28px;

}

.contact-social > span {

    color: var(--dark);

    font-size: 13px;

    font-weight: 700;

}


/* =========================================================
   SOCIAL
   ========================================================= */

.social {

    display: flex;

    gap: 9px;

}

.social a {

    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid var(--border);

    border-radius: 50%;

    color: var(--primary);

    font-size: 12px;

    font-weight: 800;

    transition: var(--transition);

}

.social a:hover {

    background: var(--primary);

    color: var(--white);

    transform: translateY(-3px);

}


/* =========================================================
   CONTACT FORM
   ========================================================= */

.contact-form-wrapper {

    padding: 40px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow);

}

.contact-form-header h2 {

    color: var(--dark);

    font-size: 30px;

    line-height: 1.2;

    margin-bottom: 8px;

}

.contact-form-header p {

    color: var(--muted);

    font-size: 14px;

    margin-bottom: 30px;

}

.contact-form {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;

}

.form-group {

    display: flex;

    flex-direction: column;

    gap: 7px;

}

.form-full {

    grid-column: 1 / -1;

}

.form-group label {

    color: var(--dark);

    font-size: 13px;

    font-weight: 700;

}

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    border: 1px solid var(--border);

    border-radius: 9px;

    background: #fbfdfc;

    color: var(--dark);

    outline: none;

    padding: 13px 15px;

    transition: var(--transition);

}

.form-group input,
.form-group select {

    height: 49px;

}

.form-group textarea {

    resize: vertical;

    min-height: 120px;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: var(--primary);

    background: var(--white);

    box-shadow:
        0 0 0 4px
        rgba(
            11,
            31,
            58,
            0.08
        );

}

.form-consent {

    grid-column: 1 / -1;

    display: flex;

    align-items: flex-start;

    gap: 9px;

    color: var(--muted);

    font-size: 12px;

}

.form-consent input {

    margin-top: 5px;

}

.form-submit {

    border: 0;

}

.form-message {

    grid-column: 1 / -1;

    display: none;

    padding: 12px;

    border-radius: 8px;

    font-size: 13px;

}

.form-message.show {

    display: block;

}

.form-message.success {

    background: #e8f7ee;

    color: #18713f;

}

.form-message.error {

    background: #fff0f0;

    color: #b52b2b;

}


/* =========================================================
   CONTACT BENEFITS
   ========================================================= */

.contact-benefits {

    padding: 100px 0;

    background: var(--light);

}

.contact-benefit-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}

.contact-benefit-card {

    padding: 35px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    text-align: center;

    transition: var(--transition);

}

.contact-benefit-card:hover {

    transform: translateY(-7px);

    box-shadow: var(--shadow);

}

.benefit-icon {

    width: 62px;

    height: 62px;

    margin: 0 auto 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--primary-light);

    font-size: 25px;

}

.contact-benefit-card h3 {

    color: var(--dark);

    font-size: 19px;

    margin-bottom: 10px;

}

.contact-benefit-card p {

    color: var(--muted);

    font-size: 13px;

}


/* =========================================================
   OFFICE
   ========================================================= */

.office-section {

    padding: 100px 0;

}

.office-grid {

    display: grid;

    grid-template-columns:
        1fr
        0.8fr;

    gap: 60px;

    align-items: center;

}

.office-map {

    min-height: 390px;

}

.map-placeholder {

    min-height: 390px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    border-radius: var(--radius-lg);

    background:

        linear-gradient(
            135deg,
            #edf5f2,
            #dcebe6
        );

    border: 1px solid var(--border);

}

.map-pin {

    width: 75px;

    height: 75px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--white);

    font-size: 30px;

    box-shadow: var(--shadow);

    margin-bottom: 15px;

}

.map-placeholder strong {

    color: var(--dark);

}

.map-placeholder span {

    color: var(--muted);

    font-size: 13px;

}

.office-details h2 {

    color: var(--dark);

    font-size: 42px;

    line-height: 1.1;

    margin-bottom: 18px;

}

.office-details h2 span {

    color: var(--primary);

}

.office-details > p {

    color: var(--muted);

    margin-bottom: 28px;

}

.office-detail-row {

    display: flex;

    gap: 14px;

    padding: 17px 0;

    border-bottom: 1px solid var(--border);

}

.office-detail-icon {

    width: 40px;

    height: 40px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--primary-light);

    border-radius: 9px;

}

.office-detail-row strong {

    color: var(--dark);

    font-size: 14px;

}

.office-detail-row p {

    color: var(--muted);

    font-size: 13px;

    margin-top: 2px;

}

.office-details .btn-primary {

    margin-top: 25px;

}


/* =========================================================
   FAQ
   ========================================================= */

.contact-faq {

    padding: 100px 0;

    background: var(--light);

}

.faq-list {

    max-width: 850px;

    margin: auto;

}

.faq-item {

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 12px;

    margin-bottom: 12px;

    overflow: hidden;

}

.faq-question {

    width: 100%;

    padding: 20px 23px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border: 0;

    background: transparent;

    color: var(--dark);

    text-align: left;

    font-size: 15px;

    font-weight: 700;

}

.faq-question strong {

    color: var(--primary);

    font-size: 23px;

    font-weight: 400;

    transition: transform 0.3s ease;

}

.faq-item.open
.faq-question strong {

    transform: rotate(45deg);

}

.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition:
        max-height 0.35s ease;

}

.faq-answer p {

    padding: 0 23px 22px;

    color: var(--muted);

    font-size: 13px;

}


/* =========================================================
   CONTACT FINAL CTA
   ========================================================= */

.contact-final-cta {

    padding: 80px 0;

}

.contact-final-inner {

    padding: 50px 60px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    border-radius: var(--radius-lg);

    background: var(--primary);

}

.contact-final-inner h2 {

    color: var(--white);

    font-size: clamp(
        30px,
        4vw,
        45px
    );

    line-height: 1.1;

    margin-bottom: 10px;

}

.contact-final-inner h2 span {

    color: #e4c275;

}

.contact-final-inner p {

    color: rgba(
        255,
        255,
        255,
        0.72
    );

}

.contact-final-inner .btn-primary {

    background: var(--white);

    color: var(--primary);

}


/* =========================================================
   LOGIN PAGE
   ========================================================= */

.login-page {

    min-height: 100vh;

    background:
        linear-gradient(
            135deg,
            #F7FBF8,
            #FFFFFF
        );

}

.login-header {

    background: var(--white);

    border-bottom: 1px solid var(--border);

}

.login-navbar {

    min-height: 78px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}

.back-home {

    color: var(--primary);

    font-size: 14px;

    font-weight: 700;

}

.login-main {

    min-height:
        calc(100vh - 160px);

    display: flex;

    align-items: center;

    padding: 60px 0;

}

.login-container {

    width: min(
        calc(100% - 40px),
        1080px
    );

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr
        0.82fr;

    border-radius: var(--radius-lg);

    overflow: hidden;

    background: var(--white);

    box-shadow: var(--shadow-lg);

}

.login-visual {

    min-height: 650px;

    padding: 65px;

    display: flex;

    align-items: center;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(
                214,
                168,
                79,
                0.18
            ),
            transparent 25%
        ),

        linear-gradient(
            145deg,
            var(--primary-dark),
            var(--primary)
        );

}

.login-visual-content {

    max-width: 510px;

}

.login-visual .section-label {

    color: #e5c678;

}

.login-visual h1 {

    color: var(--white);

    font-size: clamp(
        40px,
        5vw,
        60px
    );

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 23px;

}

.login-visual h1 span {

    display: block;

    color: #e5c678;

}

.login-visual-content > p {

    color: rgba(
        255,
        255,
        255,
        0.72
    );

    font-size: 16px;

    margin-bottom: 40px;

}

.login-features {

    display: grid;

    gap: 22px;

}

.login-feature {

    display: flex;

    align-items: flex-start;

    gap: 15px;

}

.feature-icon {

    width: 46px;

    height: 46px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background:
        rgba(
            255,
            255,
            255,
            0.10
        );

}

.login-feature strong {

    display: block;

    color: var(--white);

    font-size: 14px;

    margin-bottom: 2px;

}

.login-feature span {

    display: block;

    color: rgba(
        255,
        255,
        255,
        0.62
    );

    font-size: 12px;

}


/* =========================================================
   LOGIN CARD
   ========================================================= */

.login-card {

    padding: 55px 48px;

    display: flex;

    flex-direction: column;

    justify-content: center;

}

.login-card-header {

    text-align: center;

    margin-bottom: 30px;

}

.login-icon {

    width: 62px;

    height: 62px;

    margin: 0 auto 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 16px;

    background: var(--primary);

    color: var(--white);

    font-size: 13px;

    font-weight: 900;

}

.login-card-header h2 {

    color: var(--dark);

    font-size: 30px;

    margin-bottom: 5px;

}

.login-card-header p {

    color: var(--muted);

    font-size: 13px;

}

.login-form {

    display: grid;

    gap: 20px;

}

.form-label-row {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

}

.form-label-row a {

    color: var(--primary);

    font-size: 11px;

    font-weight: 700;

}

.password-field {

    position: relative;

}

.password-field input {

    padding-right: 48px;

}

.password-toggle {

    position: absolute;

    right: 10px;

    top: 50%;

    transform: translateY(-50%);

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 0;

    background: transparent;

    font-size: 15px;

}

.login-options {

    display: flex;

    align-items: center;

    justify-content: space-between;

}

.remember-me {

    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--muted);

    font-size: 12px;

}

.login-submit {

    width: 100%;

    border: 0;

    margin-top: 5px;

}

.login-divider {

    position: relative;

    margin: 27px 0;

    text-align: center;

}

.login-divider::before {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    top: 50%;

    height: 1px;

    background: var(--border);

}

.login-divider span {

    position: relative;

    z-index: 1;

    padding: 0 13px;

    background: var(--white);

    color: var(--muted);

    font-size: 10px;

}

.login-register {

    text-align: center;

}

.login-register p {

    color: var(--muted);

    font-size: 12px;

    margin-bottom: 12px;

}

.login-register .btn-secondary {

    width: 100%;

    min-height: 46px;

}

.login-support {

    display: flex;

    justify-content: center;

    gap: 5px;

    margin-top: 25px;

    color: var(--muted);

    font-size: 11px;

}

.login-support a {

    color: var(--primary);

    font-weight: 700;

}


/* =========================================================
   LOGIN FOOTER
   ========================================================= */

.login-footer {

    padding: 20px 0;

    border-top: 1px solid var(--border);

    background: var(--white);

}

.login-footer-content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    color: var(--muted);

    font-size: 11px;

}


/* =========================================================
   FOOTER
   ========================================================= */

footer {

    padding-top: 75px;

    background: #0b2420;

    color: rgba(
        255,
        255,
        255,
        0.65
    );

}

.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr
        repeat(4, 1fr);

    gap: 45px;

    padding-bottom: 55px;

}

.footer-logo .logo-text strong {

    color: var(--white);

}

.footer-logo .logo-text small {

    color: rgba(
        255,
        255,
        255,
        0.5
    );

}

.footer-about {

    max-width: 340px;

    margin: 20px 0;

    font-size: 13px;

}

.footer-column {

    display: flex;

    flex-direction: column;

    gap: 9px;

}

.footer-column h4 {

    color: var(--white);

    font-size: 14px;

    margin-bottom: 8px;

}

.footer-column a {

    color: rgba(
        255,
        255,
        255,
        0.58
    );

    font-size: 12px;

    transition: var(--transition);

}

.footer-column a:hover {

    color: var(--accent);

    transform: translateX(3px);

}

.contact-item {

    font-size: 12px;

    line-height: 1.7;

}

footer .social a {

    border-color:
        rgba(
            255,
            255,
            255,
            0.18
        );

    color: var(--white);

}

.footer-bottom {

    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid
        rgba(
            255,
            255,
            255,
            0.10
        );

    font-size: 11px;

}

.footer-links {

    display: flex;

    align-items: center;

    gap: 20px;

}

.footer-links a {

    color: rgba(
        255,
        255,
        255,
        0.55
    );

}

.footer-links a:hover {

    color: var(--accent);

}


/* =========================================================
   SCROLL ANIMATION
   ========================================================= */

.reveal {

    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;

}

.reveal.visible {

    opacity: 1;

    transform: translateY(0);

}


/* =========================================================
   RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 1050px) {

    nav {

        gap: 15px;

    }

    .navbar {

        gap: 15px;

    }

    .header-btn {

        padding: 0 14px;

    }

    .services-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .process-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .footer-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }

    .login-container {

        grid-template-columns:
            1fr 0.9fr;

    }

    .login-visual {

        padding: 45px;

    }

}


/* =========================================================
   RESPONSIVE - MOBILE NAV
   ========================================================= */

@media (max-width: 850px) {

    .navbar {

        min-height: 74px;

    }

    .menu-btn {

        display: flex;

        align-items: center;

        justify-content: center;

    }

    nav {

        position: fixed;

        top: 74px;

        left: 0;

        right: 0;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 15px 20px 25px;

        background: var(--white);

        border-bottom: 1px solid var(--border);

        box-shadow: var(--shadow);

        transform:
            translateY(-120%);

        opacity: 0;

        pointer-events: none;

        transition:
            transform 0.3s ease,
            opacity 0.3s ease;

    }

    nav.mobile-open {

        transform:
            translateY(0);

        opacity: 1;

        pointer-events: auto;

    }

    nav a {

        padding: 14px 5px;

        border-bottom: 1px solid var(--border);

    }

    .header-btn {

        display: none;

    }

    .services-hero-grid {

        grid-template-columns: 1fr;

        text-align: center;

    }

    .services-hero-content > p {

        margin-left: auto;

        margin-right: auto;

    }

    .services-hero-buttons {

        justify-content: center;

    }

    .services-hero-visual {

        min-height: 400px;

    }

    .contact-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }

    .office-grid {

        grid-template-columns: 1fr;

    }

    .contact-benefit-grid {

        grid-template-columns: 1fr;

    }

    .services-cta-inner,
    .contact-final-inner {

        flex-direction: column;

        align-items: flex-start;

    }

    .login-container {

        grid-template-columns: 1fr;

        max-width: 600px;

    }

    .login-visual {

        min-height: auto;

        padding: 45px;

    }

    .login-visual h1 {

        font-size: 45px;

    }

}


/* =========================================================
   RESPONSIVE - SMALL MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .container {

        width:
            calc(100% - 30px);

    }

    .navbar {

        width:
            calc(100% - 30px);

    }

    .logo-text strong {

        font-size: 13px;

    }

    .logo-text small {

        font-size: 8px;

    }

    .logo-icon {

        width: 43px;

        height: 43px;

    }

    .services-hero {

        padding: 70px 0;

    }

    .services-hero-content h1 {

        font-size: 42px;

    }

    .services-hero-visual {

        min-height: 330px;

    }

    .orbit-one {

        width: 280px;

        height: 280px;

    }

    .orbit-two {

        width: 210px;

        height: 210px;

    }

    .services-center-card {

        width: 160px;

        min-height: 160px;

        padding: 20px;

    }

    .services-center-icon {

        width: 45px;

        height: 45px;

        margin-bottom: 9px;

    }

    .services-center-card strong {

        font-size: 13px;

    }

    .service-mini-card {

        padding: 9px;

        font-size: 10px;

    }

    .mini-one {

        top: 20px;

        right: 0;

    }

    .mini-two {

        bottom: 20px;

        right: 0;

    }

    .mini-three {

        bottom: 5px;

        left: 0;

    }

    .services-grid {

        grid-template-columns: 1fr;

    }

    .process-grid {

        grid-template-columns: 1fr;

    }

    .service-card {

        padding: 27px;

    }

    .services-cta-inner,
    .contact-final-inner {

        padding: 35px 25px;

    }

    .contact-hero {

        padding: 70px 0;

    }

    .contact-hero h1 {

        font-size: 43px;

    }

    .contact-main,
    .contact-benefits,
    .office-section,
    .contact-faq {

        padding: 70px 0;

    }

    .contact-information h2,
    .office-details h2 {

        font-size: 35px;

    }

    .contact-form-wrapper {

        padding: 25px 20px;

    }

    .contact-form {

        grid-template-columns: 1fr;

    }

    .form-full,
    .form-consent,
    .form-message {

        grid-column: auto;

    }

    .contact-final-inner {

        align-items: flex-start;

    }

    .footer-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 35px 25px;

    }

    .footer-grid > div:first-child {

        grid-column: 1 / -1;

    }

    .footer-bottom {

        flex-direction: column;

        justify-content: center;

        padding: 20px 0;

        text-align: center;

    }

    .footer-links {

        flex-wrap: wrap;

        justify-content: center;

    }

    .login-main {

        padding: 30px 0;

    }

    .login-container {

        width:
            calc(100% - 30px);

        border-radius: 18px;

    }

    .login-visual {

        padding: 35px 25px;

    }

    .login-visual h1 {

        font-size: 39px;

    }

    .login-card {

        padding: 40px 25px;

    }

    .login-footer-content {

        flex-direction: column;

        text-align: center;

    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;

        scroll-behavior: auto !important;

    }

}

/* =========================================================
   LOGIN PAGE LOGO
   LARGE + PERFECTLY CENTERED
   ========================================================= */

.login-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto 18px auto;
}

.login-logo img {
    width: 240px;
    height: 140px;
    max-width: none;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0 auto;
}

/* LOGIN LOGO - TABLET */

@media (max-width: 991px) {

    .login-logo img {
        width: 210px;
        height: 125px;
    }

}

/* LOGIN LOGO - MOBILE */

@media (max-width: 767px) {

    .login-logo img {
        width: 190px;
        height: 115px;
    }

}

/* LOGIN LOGO - SMALL MOBILE */

@media (max-width: 480px) {

    .login-logo img {
        width: 170px;
        height: 105px;
    }

}


/* =========================================================
   HEADER LOGO
   LARGE VISIBLE LOGO ONLY
   HEADER / NAVIGATION / BUTTONS UNCHANGED
   ========================================================= */

.logo-image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: visible;
}

.logo-image img {
    width: 84px;
    height: 84px;
    max-width: none;
    object-fit: contain;
    display: block;
    transform: scale(1.35);
    transform-origin: center center;
}

/* HEADER LOGO - TABLET */

@media (min-width: 768px) and (max-width: 991px) {

    .logo-image img {
        width: 76px;
        height: 76px;
        transform: scale(1.30);
    }

}

/* HEADER LOGO - MOBILE */

@media (min-width: 481px) and (max-width: 767px) {

    .logo-image img {
        width: 68px;
        height: 68px;
        transform: scale(1.25);
    }

}

/* HEADER LOGO - SMALL MOBILE */

@media (max-width: 480px) {

    .logo-image img {
        width: 60px;
        height: 60px;
        transform: scale(1.20);
    }

}

/* =========================================================
   INVEST 2 WEALTH
   FOOTER
   NAVY BLUE + LIGHT GREEN
   ========================================================= */

footer {

    width: 100%;

    background: #0B1F3A;

    color: #FFFFFF;

    padding: 75px 0 0;

}


/* =========================================================
   FOOTER CONTAINER
   ========================================================= */

footer .container {

    width: 100%;

    max-width: 1180px;

    margin: 0 auto;

    padding-left: 20px;

    padding-right: 20px;

}


/* =========================================================
   FOOTER GRID
   ========================================================= */

.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1fr
        1.2fr;

    gap: 45px;

    padding-bottom: 60px;

}


/* =========================================================
   COMPANY SECTION
   ========================================================= */

.footer-company {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


/* =========================================================
   FOOTER LOGO
   ========================================================= */

.footer-logo {

    display: inline-flex;

    align-items: center;

    justify-content: flex-start;

    text-decoration: none;

    margin-bottom: 24px;

}


.footer-logo img {

    width: 220px;

    height: auto;

    max-width: 100%;

    display: block;

    object-fit: contain;

}


/* =========================================================
   FOOTER DESCRIPTION
   ========================================================= */

.footer-about {

    max-width: 330px;

    margin: 0 0 25px;

    color: #B8C8D6;

    font-size: 14px;

    line-height: 1.8;

}


/* =========================================================
   SOCIAL ICONS
   ========================================================= */

.social {

    display: flex;

    align-items: center;

    gap: 10px;

}


.social a {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.12);

    color: #FFFFFF;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition:
        all 0.3s ease;

}


.social a:hover {

    background: #78C98A;

    border-color: #78C98A;

    color: #0B1F3A;

    transform:
        translateY(-3px);

}


/* =========================================================
   FOOTER COLUMNS
   ========================================================= */

.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.footer-column h4 {

    position: relative;

    margin: 0 0 22px;

    padding-bottom: 10px;

    color: #FFFFFF;

    font-size: 16px;

    font-weight: 700;

}


.footer-column h4::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 28px;

    height: 2px;

    background: #78C98A;

}


.footer-column > a {

    margin-bottom: 13px;

    color: #B8C8D6;

    font-size: 13px;

    line-height: 1.5;

    text-decoration: none;

    transition:
        all 0.25s ease;

}


.footer-column > a:hover {

    color: #78C98A;

    transform:
        translateX(4px);

}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-item {

    margin-bottom: 18px;

    color: #B8C8D6;

    font-size: 13px;

    line-height: 1.7;

}


.contact-item strong {

    color: #FFFFFF;

    font-size: 14px;

}


.contact-item a {

    color: #B8C8D6;

    text-decoration: none;

    transition:
        color 0.25s ease;

}


.contact-item a:hover {

    color: #78C98A;

}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer-bottom {

    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    border-top:
        1px solid rgba(255,255,255,0.12);

    color: #8FA4B5;

    font-size: 12px;

}


/* =========================================================
   FOOTER BOTTOM LINKS
   ========================================================= */

.footer-links {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 22px;

}


.footer-links a {

    color: #8FA4B5;

    text-decoration: none;

    transition:
        color 0.25s ease;

}


.footer-links a:hover {

    color: #78C98A;

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {


    footer {

        padding-top: 60px;

    }


    .footer-grid {

        grid-template-columns:
            1.5fr
            1fr
            1fr;

        gap: 40px;

    }


    .footer-company {

        grid-column:
            1 / -1;

    }


    .footer-logo img {

        width: 210px;

    }


    .footer-bottom {

        padding: 20px 0;

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

    }


    .footer-links {

        justify-content: flex-start;

        flex-wrap: wrap;

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {


    footer {

        padding-top: 50px;

    }


    footer .container {

        padding-left: 18px;

        padding-right: 18px;

    }


    .footer-grid {

        grid-template-columns: 1fr;

        gap: 35px;

        padding-bottom: 40px;

    }


    .footer-company {

        grid-column: auto;

    }


    .footer-logo {

        margin-bottom: 20px;

    }


    .footer-logo img {

        width: 190px;

    }


    .footer-about {

        max-width: 100%;

        font-size: 13px;

    }


    .footer-column h4 {

        margin-bottom: 17px;

    }


    .footer-column > a {

        margin-bottom: 11px;

    }


    .footer-bottom {

        align-items: flex-start;

        gap: 15px;

        padding: 20px 0 25px;

        line-height: 1.7;

    }


    .footer-links {

        width: 100%;

        gap: 8px 18px;

        flex-wrap: wrap;

    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {


    .footer-logo img {

        width: 170px;

    }


    .social a {

        width: 36px;

        height: 36px;

    }


    .footer-bottom {

        font-size: 11px;

    }


    .footer-links {

        font-size: 11px;

        gap: 7px 14px;

    }

}

/* =========================================================
   INVEST 2 WEALTH
   SIP + LUMPSUM CALCULATORS
   TWO SEPARATE CONTAINERS
========================================================= */


/* =========================================================
   MAIN CALCULATOR SECTION
========================================================= */

.calculator-section {

    padding: 90px 0 110px;

    background:

        radial-gradient(
            circle at top right,
            rgba(120, 201, 138, 0.12),
            transparent 30%
        ),

        linear-gradient(
            180deg,
            var(--light),
            var(--white)
        );

}


/* =========================================================
   CALCULATOR HEADING
========================================================= */

.calculator-heading {

    max-width: 760px;

    margin: 0 auto 60px;

    text-align: center;

}


.calculator-heading h1 {

    color: var(--dark);

    font-size: clamp(
        38px,
        5vw,
        60px
    );

    line-height: 1.1;

    letter-spacing: -1.5px;

    margin-bottom: 18px;

}


.calculator-heading h1 span {

    color: var(--primary);

}


.calculator-heading p {

    max-width: 650px;

    margin: 0 auto;

    color: var(--muted);

    font-size: 17px;

}


/* =========================================================
   SEPARATE CALCULATOR CONTAINER
========================================================= */

.calculator-wrapper {

    width: 100%;

    margin-bottom: 50px;

    padding: 0;

    overflow: hidden;

    background: var(--white);

    border:

        1px solid
        var(--border);

    border-radius:

        var(--radius-lg);

    box-shadow:

        var(--shadow);

}


/* =========================================================
   SIP CONTAINER
========================================================= */

.sip-calculator-wrapper {

    border-top:

        5px solid
        var(--accent);

}


/* =========================================================
   LUMPSUM CONTAINER
========================================================= */

.lumpsum-calculator-wrapper {

    border-top:

        5px solid
        var(--primary);

}


/* =========================================================
   CALCULATOR TITLE AREA
========================================================= */

.calculator-container-title {

    padding:

        35px
        45px;

    border-bottom:

        1px solid
        var(--border);

    background:

        linear-gradient(
            135deg,
            var(--primary-light),
            var(--white)
        );

}


.calculator-container-title h2 {

    color: var(--dark);

    font-size: 32px;

    line-height: 1.2;

    margin:

        5px
        0
        10px;

}


.calculator-container-title p {

    max-width: 650px;

    color: var(--muted);

    font-size: 15px;

}


.calculator-type {

    display: inline-block;

    padding:

        6px
        12px;

    border-radius:

        50px;

    background:

        var(--accent-light);

    color:

        var(--primary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


/* =========================================================
   CALCULATOR CONTENT
   LEFT INPUTS + RIGHT RESULTS
========================================================= */

.calculator-panel-single {

    display: grid;

    grid-template-columns:

        1.1fr
        0.9fr;

    gap: 0;

    background:

        var(--white);

}


/* =========================================================
   CALCULATOR INPUT SIDE
========================================================= */

.calculator-inputs {

    padding:

        45px;

    background:

        var(--white);

}


.calculator-field {

    padding:

        25px
        0;

    border-bottom:

        1px solid
        var(--border);

}


.calculator-field:first-child {

    padding-top: 0;

}


.calculator-field:last-child {

    padding-bottom: 0;

    border-bottom: none;

}


/* =========================================================
   LABEL ROW
========================================================= */

.calculator-label-row {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 15px;

}


.calculator-label-row label {

    color:

        var(--dark);

    font-size: 15px;

    font-weight: 700;

}


.calculator-label-row > span {

    min-width: 100px;

    padding:

        6px
        12px;

    text-align: center;

    border-radius:

        8px;

    background:

        var(--primary-light);

    color:

        var(--primary);

    font-size: 14px;

    font-weight: 800;

}


/* =========================================================
   RANGE SLIDER
========================================================= */

.calculator-field input[type="range"] {

    width: 100%;

    height: 7px;

    appearance: none;

    -webkit-appearance: none;

    border-radius:

        20px;

    outline: none;

    cursor: pointer;

    background:

        linear-gradient(
            to right,
            var(--accent),
            var(--accent)
        );

}


.calculator-field input[type="range"]::-webkit-slider-thumb {

    width: 22px;

    height: 22px;

    appearance: none;

    -webkit-appearance: none;

    border-radius:

        50%;

    border:

        4px solid
        var(--white);

    background:

        var(--primary);

    box-shadow:

        0 4px 12px
        rgba(
            11,
            31,
            58,
            0.25
        );

    cursor: pointer;

}


.calculator-field input[type="range"]::-moz-range-thumb {

    width: 16px;

    height: 16px;

    border-radius:

        50%;

    border:

        4px solid
        var(--white);

    background:

        var(--primary);

    box-shadow:

        0 4px 12px
        rgba(
            11,
            31,
            58,
            0.25
        );

    cursor: pointer;

}


/* =========================================================
   RESULTS SIDE
========================================================= */

.calculator-results {

    padding:

        45px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background:

        linear-gradient(
            145deg,
            var(--primary),
            var(--primary-dark)
        );

}


.calculator-results h3 {

    color:

        var(--white);

    font-size: 25px;

    margin-bottom: 30px;

}


/* =========================================================
   NORMAL RESULT ITEM
========================================================= */

.result-item {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding:

        20px
        0;

    border-bottom:

        1px solid
        rgba(
            255,
            255,
            255,
            0.15
        );

}


.result-item span {

    color:

        rgba(
            255,
            255,
            255,
            0.72
        );

    font-size: 14px;

}


.result-item strong {

    color:

        var(--white);

    font-size: 19px;

}


/* =========================================================
   FINAL MATURITY RESULT
========================================================= */

.result-total {

    margin-top: 25px;

    padding:

        25px;

    border-radius:

        var(--radius);

    background:

        var(--white);

}


.result-total span {

    display: block;

    margin-bottom: 7px;

    color:

        var(--muted);

    font-size: 13px;

}


.result-total strong {

    display: block;

    color:

        var(--primary);

    font-size:

        clamp(
            25px,
            3vw,
            36px
        );

    line-height: 1.1;

}


/* =========================================================
   DISCLAIMER
========================================================= */

.calculator-note {

    margin-top: 25px;

    color:

        rgba(
            255,
            255,
            255,
            0.60
        );

    font-size: 11px;

    line-height: 1.7;

}


/* =========================================================
   HOVER EFFECT
========================================================= */

.calculator-wrapper {

    transition:

        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.calculator-wrapper:hover {

    transform:

        translateY(-4px);

    box-shadow:

        var(--shadow-lg);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {


    .calculator-section {

        padding:

            70px
            0
            90px;

    }


    .calculator-container-title {

        padding:

            30px
            35px;

    }


    .calculator-panel-single {

        grid-template-columns:

            1fr;

    }


    .calculator-inputs {

        padding:

            35px;

    }


    .calculator-results {

        padding:

            35px;

    }


}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {


    .calculator-section {

        padding:

            60px
            0
            70px;

    }


    .calculator-heading {

        margin-bottom:

            40px;

    }


    .calculator-heading h1 {

        font-size:

            38px;

    }


    .calculator-heading p {

        font-size:

            15px;

    }


    .calculator-wrapper {

        margin-bottom:

            30px;

        border-radius:

            18px;

    }


    .calculator-container-title {

        padding:

            25px
            20px;

    }


    .calculator-container-title h2 {

        font-size:

            26px;

    }


    .calculator-container-title p {

        font-size:

            13px;

    }


    .calculator-inputs {

        padding:

            30px
            20px;

    }


    .calculator-results {

        padding:

            30px
            20px;

    }


    .calculator-label-row {

        align-items:

            flex-start;

        flex-direction:

            column;

        gap:

            8px;

    }


    .calculator-label-row > span {

        min-width:

            auto;

    }


    .result-item {

        align-items:

            flex-start;

        flex-direction:

            column;

        gap:

            6px;

    }


    .result-total {

        padding:

            20px;

    }


}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {


    .calculator-heading h1 {

        font-size:

            33px;

    }


    .calculator-container-title h2 {

        font-size:

            23px;

    }


    .calculator-results h3 {

        font-size:

            22px;

    }


    .result-total strong {

        font-size:

            27px;

    }


}
/* =========================================================
   FULL WIDTH OFFICE MAP
========================================================= */

.office-section {
    padding: 100px 0;
}

.office-map {
    width: 100%;
    height: 550px;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    margin-bottom: 60px;
}

.office-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.office-details {
    max-width: 850px;
    margin: 0 auto;
}

.office-details h2 {
    color: var(--dark);
    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.15;
    margin-bottom: 20px;
}

.office-details h2 span {
    color: var(--primary);
    display: inline;
}

.office-details > p {
    color: var(--muted);
    font-size: 17px;
    margin-bottom: 30px;
    max-width: 700px;
}

.office-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.office-detail-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 12px;
    font-size: 20px;
}

.office-detail-row strong {
    color: var(--dark);
    font-size: 16px;
}

.office-detail-row p {
    color: var(--muted);
    margin-top: 4px;
    line-height: 1.6;
}

/* MOBILE */

@media (max-width: 767px) {

    .office-section {
        padding: 70px 0;
    }

    .office-map {
        height: 400px;
        border-radius: 15px;
        margin-bottom: 40px;
    }

    .office-details h2 {
        font-size: 35px;
    }

}