* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    font-family: Arial, sans-serif;
    color: #1f2937;
    background: #ffffff;
    line-height: 1.6;

    min-height: 100vh;

    display: flex;
    flex-direction: column;
}

/* PUSH FOOTER TO BOTTOM */
main {
    flex: 1;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}

/* TOP BAR */
.top-contact-bar {
    background: #083c91;
    color: #ffffff;
    font-size: 14px;
}

.top-contact-inner {
    min-height: 44px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 26px;
}

.top-contact-left {
    display: flex;
    align-items: center;
    gap: 22px;
    font-weight: 600;
    white-space: nowrap;
}

.top-contact-left a {
    color: #ffffff;
}

.top-moving-text {
    overflow: hidden;
    white-space: nowrap;
    min-width: 250px;
}

.top-moving-track {
    display: inline-flex;
    gap: 80px;
    animation: topTextMove 35s linear infinite;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.95;
}

@keyframes topTextMove {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

.top-socials,
.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* TOP SOCIAL ICON BUTTONS */
/* TOP SOCIAL ICON BUTTONS */
.top-socials a {
    width: 32px;
    height: 32px;

    border-radius: 50%;

    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s ease;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.top-socials a:hover {
    transform: translateY(-2px) scale(1.04);
}

.top-socials img {
    width: 15px;
    height: 15px;
    object-fit: contain;
}

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* =========================================================
   WEBSITE LOGO
========================================================= */

.site-logo {
    /* width: 250px;
    height: 64px; */
    width: 180px;
    height: 64px;

    object-fit: contain;

    border-radius: 16px;

    background: #ffffff;
}

.brand h1 {
    font-size: 20px;
    color: #083c91;
    line-height: 1.1;
}

.brand span {
    font-size: 13px;
    color: #c9a33a;
    font-weight: 700;
}

.nav {
    display: flex;
    gap: 30px;
    font-weight: 700;
    color: #374151;
}

.nav a:hover {
    color: #0d5bcf;
}

/* =========================================================
   HEADER BUTTON + PRIMARY BUTTON
========================================================= */

.header-btn,
.btn {
    display: inline-block;

    padding: 10px 22px;

    border-radius: 999px;

    font-weight: 800;

    font-size: 14px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* PRIMARY BLUE BUTTON */
.header-btn,
.btn.primary {
    background: #0d5bcf;

    color: #ffffff;

    border: 2px solid transparent;
}

/* HOVER EFFECT */
.header-btn:hover,
.btn.primary:hover {
    background: #d4a017;

    color: #083c91;

    transform: translateY(-2px);

    box-shadow:
        0 14px 30px rgba(212, 160, 23, 0.28);
}

.btn.secondary {
    background: #f3f6fb;
    color: #083c91;
}

/* =========================================================
   HERO SECTION
========================================================= */

.hero {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            rgba(8, 60, 145, 0.82),
            rgba(13, 91, 207, 0.76)
        ),
        /* url('/images/hero/home-hero.jpeg') center center/cover no-repeat; */
        url('/images/hero/home-hero.png') center 18%/cover no-repeat;

    color: #ffffff;

    padding: 120px 0;
}

/* SOFT LIGHT GLOW */
.hero::before {
    content: "";

    position: absolute;

    right: -140px;
    top: -140px;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: rgba(255,255,255,0.10);

    filter: blur(10px);
}

/* KEEP CONTENT ABOVE IMAGE */
.hero .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: rgba(201, 163, 58, 0.18);
    color: #c9a33a;
    padding: 9px 16px;
    border-radius: 999px;
    font-weight: 900;
    margin-bottom: 16px;
}

.hero h1,
.hero h2,
.page-hero h1,
.page-hero h2 {
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.05;
    margin-bottom: 20px;
}

.hero p,
.page-hero p {
    font-size: 18px;
    max-width: 680px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* .hero-card {
    background: rgba(255, 255, 255, 0.95);
    color: #1f2937;
    padding: 35px;
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
} */

.hero-card {
    opacity: 0;

    transform: translateY(45px) scale(0.96);

    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);

    background: rgba(255, 255, 255, 0.95);

    color: #1f2937;

    padding: 35px;

    border-radius: 28px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.22);
}

.hero-card h3 {
    font-size: 30px;
    color: #083c91;
    margin-bottom: 12px;
}

/* .section {
    padding: 85px 0;
} */

/* =========================================================
   WEBSITE SECTIONS
========================================================= */

.section {
    position: relative;

    padding: 95px 0;
}

/* LIGHT BACKGROUND SECTION */
.section-light {
    background: #f5f8fc;
}

/* WHITE SECTION */
.section-white {
    background: #ffffff;
}

/* SOFT PREMIUM GRADIENT */
.section-soft {
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7faff 100%
        );
}

.section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 45px;
}

.section-title span {
    color: #c9a33a;
    font-weight: 900;
}

.section-title h2 {
    font-size: clamp(30px, 4vw, 46px);
    color: #083c91;
}


.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* =========================================================
   PREMIUM WEBSITE CARDS
========================================================= */

.card {
    position: relative;
    overflow: hidden;

    background: #ffffff;

    padding: 32px;

    border-radius: 24px;

    border: 1px solid rgba(13, 91, 207, 0.12);

    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

/* PREMIUM GRADIENT BORDER */
.card::before {
    content: "";

    position: absolute;
    inset: 0;

    border-radius: 24px;

    padding: 1.4px;

    background:
        linear-gradient(
            135deg,
            rgba(13, 91, 207, 0.7),
            rgba(8, 60, 145, 0.95),
            rgba(201, 163, 58, 0.45)
        );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;

    opacity: 0.5;

    pointer-events: none;

    transition: 0.35s ease;
}

/* BLUE HOVER OVERLAY */
.card::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            #083c91,
            #0d5bcf
        );

    opacity: 0;

    transition: 0.35s ease;

    pointer-events: none;
}

/* KEEP CONTENT ABOVE OVERLAY */
.card h3,
.card p {
    position: relative;
    z-index: 2;

    transition: 0.35s ease;
}

/* TITLE */
.card h3 {
    color: #083c91;

    margin-bottom: 12px;

    font-size: 23px;
}

/* PARAGRAPH */
.card p {
    color: #4b5563;
}

/* HOVER EFFECT */
.card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 28px 70px rgba(13, 91, 207, 0.18);

    border-color: rgba(13, 91, 207, 0.25);
}

/* SHOW BLUE OVERLAY */
.card:hover::after {
    opacity: 1;
}

/* STRONGER BORDER ON HOVER */
.card:hover::before {
    opacity: 1;
}

/* TEXT CHANGES TO WHITE */
.card:hover h3,
.card:hover p {
    color: #ffffff;
}

/* =========================================================
   FUTURE GOALS SECTION
========================================================= */

.future-goals-card {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #083c91,
            #0d5bcf
        );

    border-radius: 32px;

    padding: 40px;

    color: #ffffff;

    box-shadow:
        0 22px 60px rgba(13, 91, 207, 0.16);
}

/* SOFT GLOW */
.future-goals-card::before {
    content: "";

    position: absolute;

    right: -120px;
    top: -120px;

    width: 320px;
    height: 320px;

    border-radius: 50%;

    background: rgba(255,255,255,0.08);

    filter: blur(10px);
}

/* HEADER */
.future-goals-header {
    text-align: center;
    margin-bottom: 28px;

    position: relative;
    z-index: 2;
}

.future-goals-header span {
    display: inline-block;

    background: rgba(255,255,255,0.12);

    padding: 8px 16px;

    border-radius: 999px;

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 18px;
}

.future-goals-header h2 {
    font-size: clamp(28px, 4vw, 42px);

    margin-bottom: 14px;
}

.future-goals-header p {
    max-width: 760px;

    margin: auto;

    color: rgba(255,255,255,0.88);

    line-height: 1.8;
}

/* GRID */
.future-goals-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 28px;
    align-items: center;

    position: relative;
    z-index: 2;
}

/* LEFT CONTENT */
.future-goals-content {
    display: grid;
    gap: 20px;
}

/* SINGLE ITEM */
.future-goal-item {
    display: flex;
    gap: 14px;

    background: rgba(255,255,255,0.08);

    padding: 16px;

    border-radius: 22px;

    backdrop-filter: blur(6px);

    transition: 0.35s ease;
}

.future-goal-item:hover {
    transform: translateY(-4px);

    background: rgba(255,255,255,0.14);
}

/* ICON */
.future-goal-icon {
    min-width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #ffffff;

    color: #083c91;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 900;
}

/* TEXT */
.future-goal-item h3 {
    margin-bottom: 4px;
    font-size: 17px;
}

.future-goal-item p {
    color: rgba(255,255,255,0.82);
}

/* IMAGE */
.future-goals-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 28px;

    box-shadow:
        0 20px 60px rgba(0,0,0,0.22);
}

/* MOBILE */
@media (max-width: 900px) {

    .future-goals-card {
        padding: 35px 24px;
    }

    .future-goals-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   INNER PAGE HERO
   About / Services / Careers / Contact
========================================================= */

.page-hero {
    background:
        linear-gradient(rgba(8, 60, 145, 0.82), rgba(13, 91, 207, 0.76)),
        url('/images/hero/page-hero.jpg') center/cover no-repeat;

    color: #ffffff;

    padding: 42px 0;

    text-align: center;
}

.page-hero h1,
.page-hero h2 {
    font-size: clamp(30px, 4vw, 44px);

    line-height: 1.1;

    margin: 0;
}

/* HIDE OLD CONTENT */
.page-hero p,
.page-hero .badge {
    display: none;
}

.content-box {
    max-width: 900px;
}

.content-box h2 {
    color: #083c91;
    margin: 30px 0 10px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 35px;
}

.contact-info,
.contact-form {
    background: #ffffff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.contact-info h2 {
    color: #083c91;
    margin-bottom: 20px;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #dbe3ef;
    border-radius: 14px;
    font-size: 15px;
}

.contact-form textarea {
    min-height: 130px;
}

.contact-form button {
    border: 0;
    padding: 15px;
    background: #0d5bcf;
    color: #ffffff;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
}

/* CAREERS */
.career-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 35px;
    align-items: start;
}

.career-info {
    display: grid;
    gap: 24px;
}

.career-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    border: 1px solid #eef2f7;
}

.career-card h3 {
    color: #083c91;
    margin-bottom: 18px;
    font-size: 24px;
}

.career-card ul {
    padding-left: 18px;
}

.career-card ul li {
    margin-bottom: 12px;
    color: #374151;
}

.career-form {
    background: #ffffff;
    padding: 35px;
    border-radius: 28px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    border: 1px solid #eef2f7;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: span 2;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 700;
    color: #083c91;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border-radius: 14px;
    border: 1px solid #dbe3ef;
    font-size: 15px;
    background: #ffffff;
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.career-btn {
    border: 0;
    background: linear-gradient(135deg, #083c91, #0d5bcf);
    color: #ffffff;
    padding: 16px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.3s ease;
}

.career-btn:hover {
    transform: translateY(-2px);
}

/* PREMIUM FOOTER */
.premium-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(13, 91, 207, 0.35), transparent 32%),
        linear-gradient(135deg, #061936 0%, #071f49 48%, #083c91 100%);
    color: #ffffff;
    padding-top: 80px;
}

.footer-glow {
    position: absolute;
    right: -120px;
    top: -120px;
    width: 320px;
    height: 320px;
    background: rgba(201, 163, 58, 0.18);
    filter: blur(10px);
    border-radius: 50%;
}

.premium-footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr 1.1fr;
    gap: 36px;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.footer-logo {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff, #dbeafe);
    color: #083c91;
    display: grid;
    place-items: center;
    font-size: 28px;
    font-weight: 900;
}

.footer-logo-row h3 {
    font-size: 22px;
    line-height: 1.1;
}

.footer-logo-row span {
    color: #facc15;
    font-size: 13px;
    font-weight: 800;
}

.footer-brand-box p {
    color: #dbeafe;
    margin-bottom: 24px;
    max-width: 420px;
}

.footer-links h4,
.footer-contact-card h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-links a {
    display: block;
    color: #dbeafe;
    margin-bottom: 11px;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #facc15;
    transform: translateX(4px);
}

.footer-contact-card {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 26px;
    padding: 26px;
    backdrop-filter: blur(10px);
}

.footer-contact-card p {
    color: #dbeafe;
    margin-bottom: 16px;
}

.footer-contact-card a {
    color: #ffffff;
    font-weight: 800;
}

.footer-bottom-premium {
    position: relative;
    z-index: 2;
    margin-top: 55px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #cbd5e1;
    font-size: 14px;
}

.footer-socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    color: #083c91;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 900;
}

/* WHATSAPP */
/* =========================================================
   FLOATING WHATSAPP BUTTON
========================================================= */

.whatsapp-btn {
    position: fixed;
    right: 22px;
    bottom: 22px;

    width: 62px;
    height: 62px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25d366;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.22),
        0 0 0 6px rgba(37, 211, 102, 0.12);

    z-index: 999;

    transition: 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-4px) scale(1.05);
}

.whatsapp-btn img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

/* HIDE OLD FOOTER IF STILL EXISTS */
.footer {
    display: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .top-contact-inner {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 12px 0;
        text-align: center;
    }

    .top-contact-left {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .top-socials {
        justify-content: center;
    }

    .top-moving-text {
        order: 3;
    }

    .nav,
    .header-btn {
        display: none;
    }

    .hero-grid,
    .cards-grid,
    .contact-grid,
    .career-grid,
    .premium-footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 80px 0;
    }

    .hero h2,
    .page-hero h2 {
        font-size: 40px;
    }


/* MOBILE */
@media (max-width: 900px) {

    .cta-box {
        padding: 50px 24px;
    }

    .cta-box h2 {
        font-size: 34px;
    }

    .cta-box p {
        font-size: 16px;
    }

}

    .career-form {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: span 1;
    }

    .footer-bottom-premium {
        flex-direction: column;
        text-align: center;
    }
}

    /* =========================================================
   PREMIUM CTA SECTION
========================================================= */

.cta {
    padding: 90px 0;
    background: #f5f8fc;
}

.cta-box {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #083c91,
            #0d5bcf
        );

    color: #ffffff;

    border-radius: 34px;

    padding: 70px 50px;

    text-align: center;

    box-shadow:
        0 30px 80px rgba(13, 91, 207, 0.18);
}

/* SOFT GLOW */
.cta-box::before {
    content: "";

    position: absolute;

    right: -120px;
    top: -120px;

    width: 320px;
    height: 320px;

    border-radius: 50%;

    background: rgba(255,255,255,0.08);

    filter: blur(10px);
}

/* CONTENT ABOVE OVERLAY */
.cta-box * {
    position: relative;
    z-index: 2;
}

.cta-box h2 {
    font-size: clamp(34px, 4vw, 58px);

    line-height: 1.1;

    margin-bottom: 18px;
}

.cta-box p {
    font-size: 18px;

    color: rgba(255,255,255,0.88);

    max-width: 760px;

    margin: auto;
}

.cta-box .btn {
    margin-top: 30px;

    background: #ffffff;

    color: #083c91;

    padding: 16px 30px;

    border-radius: 999px;

    font-weight: 900;

    transition: 0.35s ease;
}

.cta-box .btn:hover {
    transform: translateY(-3px);

    background: #facc15;

    color: #083c91;
}

/* =========================================================
   SIMPLE PREMIUM BLUE FOOTER
   Remove this whole block if you want to redesign footer later
========================================================= */

.simple-footer {
    background: linear-gradient(
        90deg,
        #041b4d 0%,
        #062768 50%,
        #083c91 100%
    );

    color: rgba(255, 255, 255, 0.62);

    /* thin top line */
    border-top: 1px solid rgba(255, 255, 255, 0.08);

    padding: 18px 0;
}

/* FOOTER CONTENT CONTAINER */
.simple-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    font-size: 13px;
}

/* LEFT COPYRIGHT TEXT */
.simple-footer-inner p {
    color: rgba(255, 255, 255, 0.58);
}

/* RIGHT LINKS */
.simple-footer-links {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* FOOTER LINKS */
.simple-footer-links a {
    color: rgba(255, 255, 255, 0.58);
    transition: 0.3s ease;
}

/* DEVELOPER LINK */
.simple-footer-inner p a {
    color: #facc15;

    font-weight: 700;

    transition: 0.3s ease;
}

.simple-footer-inner p a:hover {
    color: #ffffff;
}

/* FOOTER LINKS HOVER */
.simple-footer-links a:hover {
    color: #ffffff;
}

/* SMALL VERTICAL DIVIDER */
.simple-footer-links span {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.12);
}

/* HIDE OLD BIG FOOTER */
.premium-footer {
    display: none;
}

/* MOBILE FOOTER */
@media (max-width: 700px) {

    .simple-footer-inner {
        flex-direction: column;
        text-align: center;
    }

}

/* =========================================================
   MOBILE APP STYLE NAVIGATION
========================================================= */

.mobile-menu-btn,
.mobile-overlay,
.mobile-drawer,
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 900px) {

    body {
        padding-bottom: 76px;
    }

    .site-header {
        top: 0;
    }

    .header-inner {
        min-height: 74px;
    }

    .site-logo {
        width: 145px;
        height: 56px;
    }

    .mobile-menu-btn {
        display: grid;
        place-items: center;
        width: 44px;
        height: 44px;
        border: 0;
        border-radius: 14px;
        background: #083c91;
        color: #ffffff;
        font-size: 24px;
        cursor: pointer;
    }

    .mobile-overlay.active {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(2, 8, 23, 0.62);
        z-index: 998;
    }

    .mobile-drawer {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 86%;
        max-width: 360px;
        height: 100vh;
        background: #ffffff;
        z-index: 999;
        padding: 22px;
        box-shadow: -20px 0 60px rgba(0,0,0,0.25);
        transition: 0.35s ease;
        overflow-y: auto;
    }

    .mobile-drawer.active {
        right: 0;
    }

    .mobile-drawer-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 26px;
    }

    .mobile-logo {
        width: 150px;
        height: 58px;
        object-fit: contain;
    }

    .mobile-close {
        width: 40px;
        height: 40px;
        border: 0;
        border-radius: 14px;
        background: #f1f5f9;
        color: #083c91;
        font-size: 20px;
        font-weight: 900;
    }

    .mobile-nav {
        display: grid;
        gap: 12px;
        margin-bottom: 24px;
    }

    .mobile-nav a {
        padding: 15px 16px;
        border-radius: 16px;
        background: #f5f8fc;
        color: #083c91;
        font-weight: 800;
    }

    .mobile-contact-box {
        background: linear-gradient(135deg, #083c91, #0d5bcf);
        color: #ffffff;
        padding: 22px;
        border-radius: 24px;
    }

    .mobile-contact-box p {
        margin-bottom: 14px;
        color: rgba(255,255,255,0.9);
    }

    .mobile-book-btn {
        display: block;
        text-align: center;
        background: #ffffff;
        color: #083c91;
        padding: 14px;
        border-radius: 999px;
        font-weight: 900;
        margin-top: 18px;
    }

    .mobile-bottom-nav {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        background: rgba(255,255,255,0.96);
        border: 1px solid rgba(13, 91, 207, 0.14);
        border-radius: 24px;
        box-shadow: 0 18px 50px rgba(15, 23, 42, 0.18);
        z-index: 997;
        padding: 9px 6px;
        backdrop-filter: blur(12px);
    }

    .mobile-bottom-nav a {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
        color: #083c91;
        font-weight: 800;
        font-size: 12px;
    }

    .mobile-bottom-nav span {
        font-size: 19px;
        line-height: 1;
    }

    .mobile-bottom-nav small {
        font-size: 10px;
    }

    .whatsapp-btn {
        bottom: 92px;
        right: 18px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-btn img {
        width: 31px;
        height: 31px;
    }
}

/* =========================================================
   PREMIUM CONTACT PAGE CARDS
========================================================= */

.contact-info,
.contact-form {
    position: relative;
    overflow: hidden;

    background: #ffffff;

    border-radius: 28px;

    border: 1px solid rgba(13, 91, 207, 0.12);

    box-shadow:
        0 20px 60px rgba(15, 23, 42, 0.08);
}

/* CONTACT INFO CARD */
.contact-info {
    background:
        linear-gradient(135deg, rgba(8, 60, 145, 0.96), rgba(13, 91, 207, 0.9));
    color: #ffffff;
}

.contact-info h2 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 24px;
}

.contact-info p {
    margin-bottom: 14px;
    color: rgba(255,255,255,0.9);
}

.contact-info strong {
    color: #ffffff;
}

/* FORM CARD */
.contact-form {
    padding: 38px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;

    max-width: 100%;

    background: #f8fbff;

    border: 1px solid rgba(13, 91, 207, 0.16);

    border-radius: 18px;

    padding: 16px 18px;

    font-size: 15px;

    transition: 0.3s ease;

    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0d5bcf;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(13, 91, 207, 0.08);
}

.contact-form button {
    background: linear-gradient(135deg, #083c91, #0d5bcf);
    transition: 0.3s ease;
}

.contact-form button:hover {
    background: #d4a017;
    color: #083c91;
    transform: translateY(-2px);
}

/* =========================================================
   HOW IT WORKS - PREMIUM PROCESS CARD
========================================================= */

.how-it-works-section {
    position: relative;

    padding: 120px 0;

    background:
        linear-gradient(
            135deg,
            rgba(212, 160, 23, 0.10),
            rgba(212, 160, 23, 0.05)
        );

    border-top:
        1px solid rgba(212, 160, 23, 0.14);

    border-bottom:
        1px solid rgba(212, 160, 23, 0.14);
}

.how-process-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: center;

    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 30%),
        linear-gradient(
            135deg,
            #c9971a,
            #d4a017,
            #e0b53a
        );

    color: #ffffff;

    border-radius: 34px;

    padding: 55px;

    box-shadow:
        0 30px 80px rgba(212, 160, 23, 0.22);
}

.how-process-content span {
    color: #facc15;
    font-weight: 900;
}

.how-process-content h2 {
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.1;
    margin: 14px 0 18px;
}

.how-process-content p {
    color: rgba(255,255,255,0.88);
    max-width: 680px;
    margin-bottom: 28px;
}

.how-process-card .btn {
    background: #ffffff;
    color: #083c91;
}

.how-process-card .btn:hover {
    background: #ffffff;
    color: #083c91;
}

.how-process-steps {
    display: grid;
    gap: 14px;
}

.how-process-steps div {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 20px;
    padding: 18px 20px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.how-process-steps strong {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #083c91;
    border-radius: 50%;
    margin-right: 12px;
}

@media (max-width: 900px) {
    .how-process-card {
        grid-template-columns: 1fr;
        padding: 36px 24px;
    }
}

/* HOW IT WORKS SCROLL ANIMATION */
.how-process-card {
    opacity: 0;
    transform: translateY(45px) scale(0.96);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.how-process-card.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.hero-card.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* SERVICES PREMIUM PAGE */
.services-premium-box {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;

    gap: 28px;

    align-items: center;

    background:
        radial-gradient(circle at top left, rgba(212,160,23,0.13), transparent 30%),
        linear-gradient(135deg, #083c91, #0d5bcf);

    color: #ffffff;

    border-radius: 30px;

    padding: 40px;

    box-shadow:
        0 24px 60px rgba(13, 91, 207, 0.18);
}

.services-premium-content span {
    color: #facc15;
    font-weight: 900;
}

.services-premium-content h2 {
    font-size: clamp(28px, 3vw, 42px);

    line-height: 1.15;

    margin: 10px 0 16px;
}

.services-premium-content p {
    color: rgba(255,255,255,0.88);
    margin-bottom: 28px;
}

.services-list-box {
    display: grid;
    gap: 14px;
}

.service-line {
    background: rgba(255,255,255,0.10);

    border: 1px solid rgba(255,255,255,0.16);

    border-radius: 18px;

    padding: 14px 16px;
}

.service-line strong {
    display: block;

    margin-bottom: 4px;

    font-size: 16px;
}

.service-line p {
    color: rgba(255,255,255,0.84);
}

@media (max-width: 900px) {
    .services-premium-box {
        grid-template-columns: 1fr;
        padding: 36px 24px;
    }
}

/* =========================================================
   FOOTER COPYRIGHT
========================================================= */

/* .footer-copy {
    display: flex;
    flex-direction: column;

    gap: 4px;
}

.footer-copy p {
    margin: 0;
}

.footer-copy small {
    font-size: 13px;

    color: rgba(255,255,255,0.72);
}

.footer-copy small a {
    color: #ffffff;

    font-weight: 700;

    transition: 0.3s ease;
}

.footer-copy small a:hover {
    color: #facc15;
}

.footer-dot {
    margin: 0 8px;

    color: rgba(255,255,255,0.55);

    font-size: 13px;
} */

/* =========================================================
   FOOTER DEVELOPED BY CENTER
========================================================= */

.simple-footer-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 24px;

    flex-wrap: wrap;
}

.footer-developed {
    font-size: 13px;

    color: rgba(255,255,255,0.72);

    text-align: center;
}

.footer-developed a {
    color: #ffffff;

    font-weight: 700;

    transition: 0.3s ease;
}

.footer-developed a:hover {
    color: #facc15;
}

.footer-dot {
    margin: 0 8px;

    color: rgba(255,255,255,0.5);
}

/* MOBILE FOOTER */
@media (max-width: 900px) {

    .simple-footer-inner {
        flex-direction: column;

        text-align: center;

        gap: 10px;
    }

    .simple-footer-links {
        justify-content: center;
    }

    .footer-developed {
        order: 2;
    }
}

.mobile-bottom-nav .nav-icon {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #083c91;

    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all .3s ease;

    box-shadow: 0 8px 20px rgba(8,60,145,.18);
}

.mobile-bottom-nav .nav-icon svg{
    width:20px;
    height:20px;
}

.mobile-bottom-nav a:hover .nav-icon{
    background:#0d5bcf;
    transform:translateY(-2px);
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

.sr-only{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
}

/* =========================================================
   MOBILE ACTIVE NAVIGATION
========================================================= */

.mobile-bottom-nav a {
    transition: all .3s ease;
}

.mobile-bottom-nav a.active {
    color: #d4a017;
}

.mobile-bottom-nav a.active .nav-icon {
    background: #d4a017;
    color: #083c91;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(212,160,23,.30);
}

.mobile-bottom-nav a.active small {
    color: #083c91;
    font-weight: 900;
}