/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
    --color-primary: #081b63;
    --color-secondary: #f4b400;
    --color-text: #2f2f2f;
    --color-text-light: #666;
    --color-border: #e7e7e7;
    --color-bg-light: #f9faff;
    --color-white: #ffffff;
    --accent-color: var(--color-secondary);

    --font-primary: 'Poppins', sans-serif;
    --font-script: 'Caveat', cursive;

    --container-width: 1280px;

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --shadow-sm: 0 4px 18px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);

    --transition: 0.3s ease;

    --section-space: 100px;
}

/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background: var(--color-white);
    overflow-x: hidden;
}

/* =========================================================
   LAYOUT
========================================================= */

.container {
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    padding-inline: 20px;
}

.section {
    padding-block: var(--section-space);
}

.grid {
    display: grid;
    gap: 24px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.align-start {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

/* =========================================================
   TYPOGRAPHY
========================================================= */

.heading-xl {
    font-size: 64px;
    line-height: 1.05;
    font-weight: 700;
    color: var(--color-primary);
}

.heading-lg {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--color-primary);
}

.heading-md {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-primary);
}

.heading-sm {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--color-primary);
}

.text-lg {
    font-size: 18px;
    line-height: 1.8;
}

.text-md {
    font-size: 16px;
    line-height: 1.7;
}

.text-sm {
    font-size: 14px;
    line-height: 1.6;
}

.text-muted {
    color: var(--color-text-light);
}

.script-text {
    font-family: var(--font-script);
    color: var(--color-secondary);
    font-size: 42px;
    line-height: 1.2;
}

/* =========================================================
   SPACING UTILITIES
========================================================= */

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

.mt-32 {
    margin-top: 32px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-32 {
    margin-bottom: 32px;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 16px;
}

.btn-primary {
    background: var(--color-secondary);
    color: var(--color-primary);
    padding: 18px 32px;
    border-radius: 14px;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

/* =========================================================
   SECTION HEADER
========================================================= */

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    color: var(--color-secondary);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: inline-block;
}

.section-title-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.section-title-line::before,
.section-title-line::after {
    content: "";
    width: 120px;
    height: 2px;
    background: #f1d17a;
}

/* =========================================================
   CARDS
========================================================= */

.card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.card-body {
    padding: 28px;
}

.card-image {
    position: relative;
    overflow: hidden;
}

.card-image img {
    height: 220px;
    object-fit: cover;
}

.icon-badge {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 6px solid var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 20px;
    position: relative;
    z-index: 2;
}

.icon-badge img,
.icon-badge svg {
    width: 32px;
    height: 32px;
}

/* =========================================================
   HERO SECTION
========================================================= */

.hero {
    position: relative;
    overflow: hidden;
    background: #f5f7fb;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 120px);
    align-items: center;
}

.hero-content {
    padding: 60px 100px 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-media {
    position: relative;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* PRICING CARD (Global Component) */
.pricing-card {
    position: absolute;
    background: #001a4b;
    color: #fff;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 26, 75, 0.35);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 300px;
    z-index: 2;
}

.pricing-card .offer-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #f5b400;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.offer-badge svg {
    position: static !important;
    display: block;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.pricing-card h2 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 16px;
}

.price-box {
    background: #f5b400;
    color: #000;
    padding: 12px 16px;
    border-radius: 12px;
    margin: 0 0 20px 0;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.price-box .from-label {
    font-size: 12px;
    font-weight: 600;
    color: #333;
}

.price-box .amount {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    line-height: 1.1;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pricing-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #0b2c5f;
    background: #ffffff;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    margin: 0;
}

.pricing-card li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: block;
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

    /* FULL HEIGHT + IMAGE */
    min-height: calc(100vh - 120px);
    /* background: url('assets/img/coverimg/Header 1.png') no-repeat center center; */
    background-size: cover;
}

.offer-tag {
    font-size: 13px;
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.price-box {
    background: var(--color-secondary);
    color: #000;
    padding: 18px;
    border-radius: 16px;
    margin-block: 24px;
}

.price-box span {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.price-box strong {
    font-size: 52px;
    line-height: 1;
}

.feature-list {
    display: grid;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--color-white);
    color: var(--color-primary);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 500;
}


.hero .container {
    max-width: 100%;
    padding: 0;
}


/* =========================================================
   LARGE DESKTOPS (1600px+)
========================================================= */
@media (min-width: 1600px) {

    .hero-content {
        padding: 80px 140px 80px 120px;
    }

    .pricing-card {
        width: 340px;
    }

    .pricing-card h2 {
        font-size: 28px;
    }

    .price-box .amount {
        font-size: 48px;
    }
}

/* =========================================================
   LAPTOPS & DESKTOPS (1200px - 1599px)
========================================================= */
@media (max-width: 1599px) {

    .hero-content {
        padding: 60px 70px;
    }

    .pricing-card {
        width: 290px;
    }
}

/* =========================================================
   SMALL LAPTOPS & TABLETS LANDSCAPE
========================================================= */
@media (max-width: 1199px) {

    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-content {
        order: 2;
        padding: 60px 50px;
        text-align: center;
        align-items: center;
    }

    .hero-media,
    .hero-right {
        order: 1;
        min-height: 650px;
    }

    .pricing-card {
        width: 320px;
        max-width: calc(100% - 40px);
    }

    .pricing-card h2 {
        font-size: 24px;
    }

    .price-box .amount {
        font-size: 42px;
    }

    .feature-list {
        width: 100%;
    }
}

/* =========================================================
   TABLETS
========================================================= */
@media (max-width: 991px) {

    .hero-content {
        padding: 50px 40px;
    }

    .hero-media,
    .hero-right {
        min-height: 550px;
    }

    .pricing-card {
        width: 300px;
        padding: 22px;
    }

    .pricing-card h2 {
        font-size: 22px;
    }

    .price-box {
        padding: 14px;
    }

    .price-box .amount {
        font-size: 38px;
    }

    .feature-item {
        padding: 12px 14px;
        font-size: 14px;
    }
}

/* =========================================================
   MOBILE DEVICES
========================================================= */
@media (max-width: 767px) {

    .hero {
        overflow: hidden;
    }

    .hero-grid {

        display: flex;
        flex-direction: column;

        min-height: auto;
    }

    /* ====================================
       HERO LEFT CONTENT
    ==================================== */
    .hero-content {

        order: 1;

        width: 100%;

        padding: 50px 20px 40px;

        text-align: center;

        align-items: center;
        justify-content: center;
    }

    /* ====================================
       HERO RIGHT IMAGE SECTION
    ==================================== */
    .hero-right,
    .hero-media {

        order: 2;

        position: relative;

        width: 100%;

        height: 420px;

        min-height: unset;

        display: flex;
        align-items: center;
        justify-content: center;

        overflow: hidden;
    }

    /* IMAGE */
    .hero-right img,
    .hero-media img {

        width: 100%;
        height: 100%;

        object-fit: cover;

        object-position: center;

        display: block;
    }

    /* ====================================
       PERFECT CENTER CARD
    ==================================== */
    .pricing-card {

        position: absolute;

        top: 50%;
        left: 50%;

        transform: translate(-50%, -50%);

        width: calc(100% - 32px);

        max-width: 320px;

        margin: 0;

        z-index: 5;
    }

    /* CARD TYPOGRAPHY */
    .pricing-card h2 {
        font-size: 20px;
        line-height: 1.3;
    }

    .price-box {
        padding: 14px;
        margin-bottom: 16px;
    }

    .price-box .amount {
        font-size: 34px;
    }

    .pricing-card li {
        font-size: 13px;
        padding: 10px 12px;
    }
}


/* SMALL MOBILE */
@media (max-width: 480px) {

    .hero-right,
    .hero-media {
        height: 360px;
    }

    .pricing-card {
        max-width: 290px;
    }

    .pricing-card h2 {
        font-size: 18px;
    }

    .price-box .amount {
        font-size: 30px;
    }
}

/* =========================================================
   SMALL MOBILE DEVICES
========================================================= */
@media (max-width: 575px) {

    .hero-content {
        padding: 35px 16px 45px;
    }

    .hero-media,
    .hero-right {
        min-height: 360px;
    }

    /* CENTER THE CARD PERFECTLY */
    .pricing-card {

        position: absolute;

        top: 50%;
        left: 50%;

        transform: translate(-50%, -50%);

        width: calc(100% - 30px);

        max-width: 330px;

        margin: 0 auto;

        z-index: 10;
    }

    .pricing-card h2 {
        font-size: 18px;
    }

    .price-box {
        padding: 12px;
    }

    .price-box .amount {
        font-size: 30px;
    }

    .pricing-card li {
        font-size: 12px;
        padding: 9px 10px;
    }

    .feature-item {
        font-size: 12px;
        padding: 10px 12px;
    }
}

/* =========================================================
   EXTRA SMALL DEVICES
========================================================= */
@media (max-width: 380px) {

    .hero-media,
    .hero-right {
        min-height: 320px;
    }


    /* CENTER THE CARD PERFECTLY */
    .pricing-card {

        position: absolute;

        top: 50%;
        left: 50%;

        transform: translate(-50%, -50%);

        width: calc(100% - 30px);

        max-width: 330px;

        margin: 0 auto;

        z-index: 10;
    }

    .pricing-card h2 {
        font-size: 17px;
    }

    .price-box .amount {
        font-size: 28px;
    }

    .pricing-card li {
        font-size: 11px;
    }
}

/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
}

.contact-map {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.info-list {
    display: grid;
    gap: 24px;
    margin-top: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: var(--color-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.form-group {
    margin-bottom: 18px;
}

.form-control {
    width: 100%;
    height: 58px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding-inline: 18px;
    font-size: 15px;
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--color-secondary);
}

.form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-size: 14px;
    color: var(--color-primary);
}

.hero-grid>div {
    height: 100%;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .hero-grid,
    .contact-grid,
    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content {
        padding: 60px 80px;
    }

    .hero-floating-card {
        width: 300px;
    }
}

@media (max-width: 768px) {

    :root {
        --section-space: 70px;
    }

    .heading-xl {
        font-size: 42px;
    }

    .heading-lg {
        font-size: 34px;
    }

    .heading-md {
        font-size: 28px;
    }

    .hero-grid,
    .contact-grid,
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 60px 20px;
    }

    .hero-floating-card {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        border-radius: 0;
    }

    .section-title-line::before,
    .section-title-line::after {
        display: none;
    }

    .form-card {
        padding: 28px;
    }
}


/*--------------------------------------------------------------
# Header Base Styles
--------------------------------------------------------------*/
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 80px;
    margin-left: 8px;
}

.header .logo h1 {
    font-size: 32px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
}

.header .logo span {
    color: var(--accent-color);
    font-size: 32px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: #010101;
    font-size: 14px;
    padding: 8px 30px;
    margin: 0 0 0 30px;
    border-radius: 4px;
    transition: 0.3s;
    border: 2px solid var(--accent-color);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    color: var(--default-color);
    background: var(--accent-color);
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header */
.index-page .header {
    --background-color: #ffffff;
}

/* Index Page Header on Scroll */
.index-page.scrolled .header {
    --background-color: rgba(255, 255, 255, 0.95);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* ==========================================
   1. DESKTOP VIEW (Screens 1200px and wider)
   ========================================== */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: #000000;
        padding: 18px 15px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: #ffc451;
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: #ffffff;
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 0;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        background-color: #ffc451;
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: 100%;
        visibility: hidden;
        opacity: 0;
        position: absolute;
        background: #ffffff;
        min-width: 200px;
        z-index: 100;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        visibility: visible;
        opacity: 1;
        left: 100%;
    }
}

/* ==========================================
   2. REWRITTEN MOBILE & TABLET VIEW (Screens under 1200px)
   ========================================== */
@media (max-width: 1199px) {

    /* Header */
    .header {
        height: 80px !important;
        padding: 0 15px;
    }

    .header .logo img {
        max-height: 60px;
    }


    .header .btn-getstarted {
        display: none;
    }

    .header .navmenu {
        order: 3;
    }

    /* Mobile Toggle */
    .mobile-nav-toggle {
        display: block;
        font-size: 32px;
        color: #000;
        cursor: pointer;
        z-index: 10001;
        position: relative;
    }

    /* Nav Wrapper */
    .navmenu {
        padding: 0;
    }


    /* THE FIX: Fixed container that takes over the full viewport */
    .navmenu ul {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);

        background: #ffffff;

        display: none;
        flex-direction: column;

        overflow-y: auto;

        padding: 20px 0 60px;
        margin: 0;

        list-style: none;

        z-index: 9999;
    }


    /* Overlay Background */
    .mobile-nav-active .navmenu {

        position: fixed;
        inset: 0;

        background: rgba(0, 0, 0, 0.4);

        z-index: 9998;
    }

    /* THE FIX: Set list items to fill 100% width cleanly */
    .navmenu ul li {
        width: 100% !important;
        display: block !important;
    }

    /* Links */
    .navmenu a,
    .navmenu a:focus {

        width: 100%;

        display: flex;
        align-items: center;
        justify-content: space-between;

        padding: 18px 25px;

        font-size: 20px;
        font-weight: 600;

        color: #111111;
        text-decoration: none;

        border-bottom: 1px solid #f1f1f1;

        transition: all 0.3s ease;

        white-space: normal;
    }

    /* Clean hover indicator instead of a messy overlay block */
    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: #ffc451 !important;
        /* Text changes beautifully to theme gold on click */
        background: rgba(255, 196, 81, 0.05) !important;
        /* Soft gold tint */
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 14px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color, #ffc451), white 90%);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {

        position: static;

        width: 100%;

        display: none;

        background: #f8f9fa;

        padding: 0;
        margin: 0;

        border: none;
        box-shadow: none;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.05);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    /* State toggles managed when menu button is pressed */
    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #000000 !important;
        position: absolute;
        font-size: 32px;
        top: 24px;
        right: 20px;
        margin-right: 0;
        z-index: 10000 !important;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        display: block !important;
    }

    /* Body Lock */
    .mobile-nav-active {
        overflow: hidden;
    }

    /* Submenu Styles */
    .navmenu .dropdown ul {

        position: static;

        width: 100%;

        display: none;

        background: #f8f9fa;

        padding: 0;
        margin: 0;

        border: none;
        box-shadow: none;
    }

    .navmenu .dropdown ul a {

        padding-left: 45px;

        font-size: 18px;

        background: #f8f9fa;
    }

    .mobile-nav-active .navmenu>ul {
        display: block !important;
    }
}

/* =========================
   PREMIUM FOOTER DESIGN
========================= */

.footer {
    color: #061b63;
    background: #ffffff;
    font-size: 14px;
    position: relative;
    margin-top: 0;
}

/* =========================
   TOP SECTION
========================= */
.footer .footer-top {
    padding: 50px 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* =========================
   LOGO
========================= */
.footer .footer-about .logo {
    margin-bottom: 10px;
}

.footer .footer-about .logo img {
    max-height: 60px;
    object-fit: contain;
    transition: 0.3s;
}

.footer .footer-about .logo img:hover {
    transform: scale(1.05);
}

/* =========================
   TEXT (FIXED SIZE)
========================= */
.footer .footer-about p,
.footer .footer-contact p {
    font-size: 15px;
    font-weight: 500;
    /* reduced */
    line-height: 1.6;
    color: rgba(6, 6, 6, 0.8);
    margin-bottom: 5px;
}

/* =========================
   HEADINGS
========================= */
.footer h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #001a4b;
}

/* =========================
   LINKS
========================= */
.footer .footer-links {
    margin-bottom: 15px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul li {
    padding: 6px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul i {
    margin-right: 6px;
    font-size: 12px;
    color: #ffd166;
}

.footer .footer-links ul a {
    color: rgba(0, 0, 0, 0.7);
    font-size: 15px;
    font-weight: 700;
    /* reduced */
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer .footer-links ul a:hover {
    color: #ffd166;
    padding-left: 5px;
}

/* =========================
   SOCIAL ICONS
========================= */
.footer .social-links {
    margin-top: 15px;
}

.footer .social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background: #ffd166;
    color: #061b63;
    transform: translateY(-3px);
}

/* =========================
   COPYRIGHT
========================= */
.footer .copyright {
    padding: 12px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .copyright p {
    margin: 0;
    font-size: 12px;
    /* reduced */
    color: #000000;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .footer .footer-top {
        padding: 40px 0 15px;
    }

    .footer h4 {
        font-size: 16px;
    }

    .footer .footer-links ul a {
        font-size: 12px;
    }
}



/* why chose us  */


.why-choose-section {
    padding: 50px 20px 50px;
    overflow: hidden;
}

.container {
    max-width: 1360px;
    margin: 0 auto;
}

.section-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 18px;
}

.section-title-wrap .line {
    width: 175px;
    height: 3px;
    background: #f1c24b;
    border-radius: 30px;
}

.section-title-wrap h2 {
    font-size: 29px;
    font-weight: 800;
    line-height: 1.1;
    color: #081d63;
    text-align: center;
}

.section-title-wrap h2 span {
    color: #f1c24b;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.feature-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #ededed;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    position: relative;
    transition: 0.35s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.10);
}

.feature-image {
    height: 172px;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-icon {
    width: 78px;
    height: 78px;
    background: #062579;
    border-radius: 50%;
    border: 4px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 135px;
    transform: translateX(-50%);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.18);
}

.feature-icon i {
    color: #ffffff;
    font-size: 33px;
}

.feature-content {
    padding: 54px 28px 28px;
    text-align: center;
}

.feature-content h3 {
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
    color: #13256d;
    margin-bottom: 12px;
}

.feature-content p {
    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
    color: #28325e;
}

/* ========================= */
/* ===== RESPONSIVE ======== */
/* ========================= */

@media (max-width: 1200px) {

    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 991px) {

    .section-title-wrap {
        gap: 20px;
    }

    .section-title-wrap .line {
        width: 90px;
    }

    .section-title-wrap h2 {
        font-size: 24px;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

}

@media (max-width: 767px) {

    .why-choose-section {
        padding: 40px 16px;
    }

    .section-title-wrap {
        flex-direction: column;
        gap: 14px;
        margin-bottom: 24px;
    }

    .section-title-wrap .line {
        width: 120px;
    }

    .section-title-wrap h2 {
        font-size: 28px;
        line-height: 1.4;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .feature-image {
        height: 220px;
    }

    .feature-icon {
        top: 182px;
    }

}

@media (max-width: 480px) {

    .section-title-wrap h2 {
        font-size: 24px;
    }

    .feature-content {
        padding: 52px 22px 24px;
    }

    .feature-content h3 {
        font-size: 19px;
    }

}

/*--------------------------------------------------------------
# Clients Scrolling Section
--------------------------------------------------------------*/
.clients-scrolling {
    background-color: #ffefcf;
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.clients-scrolling .scrolling-wrapper {
    display: flex !important;
    align-items: center !important;
    width: max-content !important;
    animation: seamlessScroll 20s linear infinite !important;
}

.clients-scrolling .scrolling-item {
    font-size: 24px !important;
    font-weight: bold !important;
    color: #444 !important;
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    padding-right: 60px !important;
}

@keyframes seamlessScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.clients-scrolling:hover .scrolling-wrapper {
    animation-play-state: paused;
}


/* Stats Section */
.stats-section {
    padding: 30px 0;
    background: #fff;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 25px 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item i {
    font-size: 32px;
    color: #999;
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 20px;
    font-weight: 800;
    color: #333;
}

.stat-label {
    font-size: 12px;
    color: #777;
    font-weight: 600;
}

/* Floating CTA Section */
.cta-floating {
    background: #0b1e42;
    color: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(11, 30, 66, 0.15);
    margin: 50px auto;
    max-width: 1100px;
    padding: 24px 0;
}

.cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-left h4 {
    font-size: 18px;
    font-weight: 800;
}

.cta-left p {
    font-size: 12px;
    opacity: 0.8;
}

.cta-btns {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.2s;
}

.btn:hover {
    opacity: 0.9;
}

.btn-yellow {
    background: #f7b91d;
    color: #0b1e42;
}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-title {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        height: auto;
    }

    .pricing-card {
        margin: 20px auto;
        width: 100%;
        transform: none;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .horizontal-cards {
        grid-template-columns: 1fr;
    }

    .stats-container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cta-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}


/* Horizontal Cards */
.horizontal-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-right: 50px;
    padding-left: 50px;
}

.h-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.h-card img {
    width: 200px;
    object-fit: cover;
}

.h-card-content {
    padding: 25px;
}

.h-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.h-card-icon {
    width: 35px;
    height: 35px;
    background: #0b1e42;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

.h-card h5 {
    font-size: 16px;
    font-weight: 800;
    color: #0b1e42;
    flex: 1;
}

.h-card p {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}



/* --- Content Styling --- */
.breadcrumb {
    padding: 20px 0;
    font-size: 13px;
    color: #999;
}

.breadcrumb span {
    color: var(--text-dark);
    font-weight: 700;
}

.section-heading {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.info-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    gap: 15px;
}

.info-card i {
    font-size: 30px;
    color: var(--highlight);
}

.info-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.info-card p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
}

/* --- Guide Section --- */
.guide-section {
    padding: 40px 0;
}

.guide-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 5px;
}

.guide-author {
    font-size: 14px;
    margin-bottom: 25px;
}

.guide-author span {
    color: var(--highlight);
    font-weight: 700;
}

.guide-content {
    display: flex;
    gap: 30px;
    align-items: center;
}

.guide-img {
    width: 50%;
    border-radius: 10px;
}

.guide-text {
    width: 50%;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* --- Benefits Grid --- */
.benefits-title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.benefit-item {
    text-align: center;
    border: 1px solid #f5f5f5;
    padding: 20px 10px;
    border-radius: 10px;
}

.b-icon {
    width: 45px;
    height: 45px;
    background: #e9f5e9;
    color: #2e7d32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 18px;
}

.benefit-item h4 {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 8px;
    min-height: 35px;
}

.benefit-item p {
    font-size: 11px;
    color: var(--text-light);
}

/* --- Why Choose Banner --- */
.why-choose-banner {
    padding: 50px 0;
}

.banner-inner {
    background: #fdfaf5;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
}

.banner-text {
    padding: 40px;
    flex: 1;
}

.banner-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.banner-header i {
    font-size: 35px;
    color: var(--primary);
}

.banner-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.banner-text p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.cta-mini {
    font-weight: 700;
    font-size: 13px;
    color: var(--primary);
}

.banner-img {
    width: 350px;
    object-fit: cover;
}

/* --- Stats --- */
.stats {
    padding: 30px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-flex {
    display: flex;
    justify-content: space-between;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item i {
    font-size: 32px;
    color: #aaa;
}

.s-text strong {
    display: block;
    font-size: 18px;
    color: var(--text-dark);
}

.s-text span {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 600;
}

/* --- Footer --- */
.footer-cta {
    background: var(--primary);
    color: var(--white);
    padding-top: 50px;
}

.cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.cta-text h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.cta-text p {
    font-size: 14px;
    opacity: 0.8;
}

.cta-btns {
    display: flex;
    gap: 12px;
}

.btn-yellow {
    background: var(--accent);
    color: var(--primary);
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
}

.btn-outline {
    border: 1px solid white;
    color: white;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
}

.footer-bottom {
    background: #061131;
    padding: 50px 0 20px;
}

.bottom-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 40px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.address {
    font-size: 12px;
    opacity: 0.7;
    margin-bottom: 15px;
    line-height: 1.5;
}

.footer-info p {
    font-size: 12px;
    margin-bottom: 8px;
}

.socials i {
    font-size: 18px;
    margin-right: 15px;
    margin-top: 15px;
    opacity: 0.8;
    cursor: pointer;
}

.footer-links h5 {
    font-size: 16px;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
    padding-bottom: 5px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 12px;
    cursor: pointer;
}

.skyline {
    width: 100%;
    opacity: 0.2;
}

.copyright {
    text-align: center;
    font-size: 11px;
    opacity: 0.5;
    padding-top: 20px;
}

/* Responsive */
@media (max-width: 900px) {

    .hero-grid,
    .info-cards,
    .guide-content,
    .benefits-grid,
    .cta-flex,
    .bottom-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .hero-visual,
    .banner-img,
    .guide-img,
    .guide-text {
        width: 100%;
    }

    .hero-text {
        text-align: center;
    }

    .hero-features {
        justify-content: center;
    }
}


/* =========================================================
   ABOUT LIST CHECKMARKS
========================================================= */

.about-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.about-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}

.about-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    background-color: #3b4e76;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
}




.call-to-action {
    padding: 80px 0;
    position: relative;
    clip-path: inset(0);
}

.call-to-action img {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.call-to-action:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 50%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.call-to-action .container {
    position: relative;
    z-index: 3;
}

.call-to-action h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--default-color);
}

.call-to-action p {
    color: var(--default-color);
}

.call-to-action .cta-btn {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 5px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid var(--default-color);
    color: var(--default-color);
}

.call-to-action .cta-btn:hover {
    background: var(--accent-color);
    color: var(--background-color);
    border: 2px solid var(--accent-color);
}



/* Common Scroll Section */
.scroll-section {
    background-color: #f9f9f9;
    padding: 40px 0;
    overflow: hidden;
    margin: 0;
}

/* Scroll Wrapper */
.scroll-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 60px;
    animation: scrollLoop 25s linear infinite;
    padding: 20px 0;
}

/* Logo Card */
.logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 120px;
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.logo-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

/* Animation */
@keyframes scrollLoop {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.scroll-wrapper:hover {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
    .scroll-wrapper {
        gap: 40px;
        animation-duration: 20s;
    }

    .logo-item {
        min-width: 140px;
        height: 100px;
    }

    .logo-item img {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .scroll-wrapper {
        gap: 30px;
        animation-duration: 15s;
    }

    .logo-item {
        min-width: 120px;
        height: 80px;
        padding: 10px;
    }

    .logo-item img {
        max-height: 50px;
    }
}

/* =========================================================
   BANK & PARTNER SECTIONS – Reduced Spacing
========================================================= */

.about.section:has(.scroll-section) {
    padding: 30px 0;
}

.about.section:has(.scroll-section) .section-title {
    padding-bottom: 30px;
}

.scroll-section {
    padding: 20px 0;
}

/* =========================================================
   SCROLL SECTION TITLE STYLING
========================================================= */

.about.section:has(.scroll-section) .section-title,
.team.section .section-title,
.contact.section .section-title {
    text-align: center;
}

.about.section:has(.scroll-section) .section-title h2,
.team.section .section-title h2,
.contact.section .section-title h2 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f4b400 !important;
    display: inline-block;
    line-height: normal;
    position: relative;
    padding: 0;
    margin-bottom: 10px;
}

.about.section:has(.scroll-section) .section-title h2::after,
.team.section .section-title h2::after,
.contact.section .section-title h2::after {
    display: none;
}

.about.section:has(.scroll-section) .section-title p,
.team.section .section-title p,
.contact.section .section-title p {
    font-size: 26px;
    font-weight: 800;
    color: #081b63;
    margin: 0;
    line-height: 1.2;
}


/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
/* TEAM CARD FIX */
.team .team-member {
    background-color: var(--surface-color);
    border-radius: 8px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* FIX IMAGE SIZE */
.team .team-member .member-img {
    width: 100%;
    height: 260px;
    /* IMPORTANT */
    overflow: hidden;
}

.team .team-member .member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* CROPS NICELY */
}



.team .team-member .social {
    position: absolute;
    left: 0;
    bottom: 30px;
    right: 0;
    opacity: 0;
    transition: ease-in-out 0.3s;
    text-align: center;
}

.team .team-member .social a {
    background: color-mix(in srgb, var(--contrast-color), transparent 25%);
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0 3px;
    border-radius: 4px;
    width: 36px;
    height: 36px;
    transition: ease-in-out 0.3s;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.team .team-member .social a:hover {
    color: #f1c24b;
    background: #0b2a64;
}

.team .team-member .social i {
    font-size: 18px;
    line-height: 0;
}

.team .team-member .member-info {
    padding: 25px 15px;
}

.team .team-member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
}

.team .team-member .member-info span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
    opacity: 1;
    bottom: 15px;
}

/* OPTIONAL: ALIGN GRID BETTER */
.team .row {
    display: flex;
    flex-wrap: wrap;
}

.team .col-lg-3 {
    display: flex;
}


/* Modern Contact Section Styles */
.contact-modern-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-top: 20px;
}

.contact-info-panel {
    background-color: #0f2a5c;
    /* Secondary Color */
    color: #ffffff;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.contact-info-panel h3 {
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #f4c013;
    /* Primary Color */
}

.contact-desc {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.info-item-modern {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.info-item-modern i {
    font-size: 24px;
    color: #f4c013;
    margin-right: 15px;
    margin-top: 5px;
}

.info-item-modern div {
    display: flex;
    flex-direction: column;
}

.info-item-modern span {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.5;
}

.info-item-modern .label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.contact-form-panel {
    padding: 50px;
    background-color: #fafafa;
}

.modern-form .form-title {
    color: #000000;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.modern-form .form-subtitle {
    color: #666666;
    font-size: 15px;
    margin-bottom: 30px;
}

.modern-form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.modern-form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
}

.modern-form-group input,
.modern-form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    color: #333333;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.modern-form-group input:focus,
.modern-form-group select:focus {
    outline: none;
    border-color: #f4c013;
    box-shadow: 0 0 0 3px rgba(244, 192, 19, 0.15);
}

.modern-submit-btn {
    background-color: #f4c013;
    color: #000000;
    border: none;
    padding: 15px 24px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.modern-submit-btn:hover {
    background-color: #e5b310;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 192, 19, 0.3);
}

.modern-submit-btn i {
    font-size: 20px;
    margin-left: 8px;
}

.privacy-notice {
    text-align: center;
    font-size: 13px;
    color: #666666;
    margin-top: 15px;
}

@media (max-width: 991px) {
    .contact-modern-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form-panel {
        padding: 30px 20px;
    }
}