:root {
    /* RCS Brand Colors */
    --primary-orange: #DE4E2A;
    --primary-blue: #183949;
    --accent-gray: #8B95A5;

    /* Calculator Colors */
    --calc-border: #7db72f;
    --calc-active: #DE4E2A;

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #F4F6F8;
    --dark: #2D3748;
    --gray: #718096;
    --border: #E2E8F0;
    --light-blue: #E8F2F8;

    /* Surfaces & elevation */
    --surface: #ffffff;
    --surface-muted: #f1f5f9;
    --text-muted: #64748b;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 2px rgba(15, 42, 54, 0.05);
    --shadow-md: 0 8px 28px rgba(15, 42, 54, 0.08);
    --shadow-lg: 0 24px 48px rgba(15, 42, 54, 0.12);
    --ring-focus: 0 0 0 3px rgba(222, 78, 42, 0.22);

    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
}

::selection {
    background: rgba(222, 78, 42, 0.18);
    color: var(--primary-blue);
}

/* Inline Form Animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--surface-muted);
    background-image:
        radial-gradient(ellipse 120% 60% at 50% -30%, rgba(222, 78, 42, 0.07), transparent 55%),
        radial-gradient(ellipse 90% 50% at 100% 0%, rgba(24, 57, 73, 0.05), transparent 50%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Nunito', sans-serif;
    color: var(--primary-blue);
    font-weight: 800;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-tag {
    display: block;
    color: var(--primary-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 12px 12px 12px 4px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
    border: 2px solid transparent;
    font-size: 0.9rem;
}

.btn--primary {
    background-color: var(--primary-orange);
    color: var(--white);
    box-shadow: var(--shadow-sm), 0 8px 24px rgba(222, 78, 42, 0.28);
}

.btn--primary:hover {
    background-color: #c43d1d;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), 0 12px 28px rgba(222, 78, 42, 0.35);
}

.btn--primary:focus-visible {
    outline: none;
    box-shadow: var(--ring-focus), 0 8px 24px rgba(222, 78, 42, 0.28);
}

.btn--white {
    background-color: white;
    color: var(--primary-blue);
    font-weight: 700;
}

.btn--outline {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 8px;
    text-transform: none;
    font-weight: 600;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 64px;
    /* 80% of 80px header height */
    width: auto;
    object-fit: contain;
}

.nav__menu {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-left: auto;
    /* Push menu away from logo */
    padding-left: 40px;
    /* Extra breathing room */
}

.nav__link {
    font-weight: 700;
    color: #4A5568;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* ----------------------------------------------------------- */
/* ONEPAY CALCULATOR */
/* ----------------------------------------------------------- */
.onepay-calculator {
    background: var(--surface);
    padding: 2rem;
    border: 1px solid rgba(222, 78, 42, 0.25);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 450px;
}

.onepay-calculator h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    text-align: left;
}

.onepay-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.onepay-input-group {
    display: flex;
    align-items: center;
    border: 1px solid #CBD5E0;
    border-radius: var(--radius-md);
    padding: 10px 15px;
    background: var(--surface);
    margin-bottom: 10px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.onepay-input-group:focus-within {
    border-color: rgba(24, 57, 73, 0.35);
    box-shadow: var(--ring-focus);
}

.onepay-input-group input {
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    flex: 1;
    outline: none;
}

.onepay-input-suffix {
    font-weight: 600;
    color: var(--gray);
    font-size: 0.9rem;
}

.onepay-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: #E2E8F0;
    outline: none;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.onepay-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-orange);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-top: -9px;
}

.onepay-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    cursor: pointer;
    background: #E2E8F0;
    border-radius: 5px;
}

.onepay-limits {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #A0AEC0;
    margin-bottom: 20px;
}

.onepay-result {
    margin-top: 25px;
    margin-bottom: 25px;
}

.onepay-result-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
}

.onepay-result-sub {
    font-size: 1rem;
    font-weight: normal;
    color: #718096;
}

.onepay-btn {
    width: 100%;
    background: var(--primary-orange);
    color: white;
    font-weight: 800;
    padding: 15px;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.onepay-btn:hover {
    background: #c43d1d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(222, 78, 42, 0.4);
}

/* ----------------------------------------------------------- */
/* DROPDOWN MENU */
/* ----------------------------------------------------------- */
.nav__item {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown__menu {
    position: absolute;
    top: 100%;
    /* Below the parent */
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav__item:hover .dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Arrow rotation on hover */
.nav__item .nav__link i.fa-chevron-down {
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav__item:hover .nav__link i.fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown__link {
    display: block;
    padding: 10px 20px;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.9rem;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s;
}

.dropdown__link:last-child {
    border-bottom: none;
}

.dropdown__link:hover {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding-left: 25px;
    /* Slide effect */
}

/* Adjust nav item spacing */
.nav__menu {
    gap: 20px;
    /* Reduce gap slightly to fit dropdown trigger */
}

/* ----------------------------------------------------------- */
/* MODAL POPUP (Restored) */
/* ----------------------------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
}

.modal-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-header .price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    display: block;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: inherit;
    background: var(--surface);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: rgba(24, 57, 73, 0.35);
    box-shadow: var(--ring-focus);
}

.checkbox-group {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
    align-items: flex-start;
    font-size: 0.85rem;
    color: var(--gray);
}

.checkbox-group input {
    margin-top: 4px;
}

/* ----------------------------------------------------------- */
/* GLASS CARDS */
/* ----------------------------------------------------------- */
.scrolling-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 4rem 0;
    background: var(--surface-muted);
}

.scrolling-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.scrolling-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.glass-card {
    width: 320px;
    height: 420px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}

.glass-card:hover {
    transform: scale(1.03);
    z-index: 10;
}

.glass-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: 0.5s;
}

.glass-card:hover .glass-bg {
    transform: scale(1.1);
}

.glass-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5) 50%, rgba(255, 255, 255, 0));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 1;
    transition: 0.3s;
}

.glass-content h3 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: 0.3s;
}

.glass-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.3s 0.1s;
}

.glass-btn {
    align-self: flex-start;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: white;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    transition: 0.3s 0.2s;
}

.glass-card:hover .glass-content h3 {
    transform: translateY(0);
}

.glass-card:hover .glass-content p {
    opacity: 1;
    transform: translateY(0);
}

.glass-card:hover .glass-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Layouts */
.product-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    margin: 3rem 0;
}

@media (max-width: 900px) {
    .product-hero-grid {
        grid-template-columns: 1fr;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff3f0;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hero-feature-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.promo-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 5rem 0;
    align-items: center;
}

.promo-image-box img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
}

/* Homepage Slider & Footer */
.hero-slider-section {
    position: relative;
    min-height: 600px;
    height: auto;
    max-height: 800px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    transition: opacity 1s;
    opacity: 0;
}

.hero-slide.active {
    opacity: 1;
}

.footer {
    background: var(--surface-muted);
    padding: 5rem 0 2rem;
    font-size: 0.9rem;
    border-top: 1px solid var(--border);
    color: #4A5568;
    margin-top: 4rem;
}

.footer-top {
    padding-bottom: 3rem;
    border-bottom: 1px solid #E2E8F0;
}

.footer-top-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.newsletter-section {
    flex: 2;
    min-width: 300px;
}

.newsletter-section h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.4;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    max-width: 400px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 14px;
    border: 1px solid #CBD5E0;
    border-radius: var(--radius-md);
    outline: none;
    background: var(--surface);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-input:focus {
    border-color: var(--primary-orange);
    box-shadow: var(--ring-focus);
}

.link-columns {
    display: flex;
    gap: 60px;
    flex: 3;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.link-column h5 {
    color: var(--primary-blue);
    margin-bottom: 1.2rem;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
}

.link-column ul li {
    margin-bottom: 0.8rem;
}

.link-column ul li a {
    color: #4A5568;
    font-size: 0.95rem;
    transition: 0.2s;
}

.link-column ul li a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.footer-contact {
    margin-left: 20px;
    text-align: right;
    min-width: 200px;
}

.footer-phone {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-orange);
    display: block;
    margin-bottom: 5px;
}

.footer-email {
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
    font-size: 0.9rem;
}

.social-icons-footer {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.social-icons-footer a {
    color: var(--primary-blue);
    font-size: 1rem;
    border: 1px solid #CBD5E0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.social-icons-footer a:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
    transform: translateY(-3px);
}

/* Footer Find Us Section */
.footer-find-us {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    text-align: center;
}

.footer-find-us h5 {
    color: var(--primary-orange);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.footer-find-us h5 i {
    color: var(--primary-orange);
    margin-right: 8px;
    display: inline-block;
    animation: mapBounce 2s ease-in-out infinite;
}

@keyframes mapBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-6px);
    }

    50% {
        transform: translateY(0);
    }

    70% {
        transform: translateY(-3px);
    }
}

.footer-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-location-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.footer-location-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer-location-card>i:first-child {
    font-size: 1.2rem;
    color: var(--primary-orange);
}

.footer-location-card div {
    flex: 1;
}

.footer-location-card div strong {
    display: block;
    font-size: 0.95rem;
    color: var(--primary-blue);
}

.footer-location-card div span {
    font-size: 0.8rem;
    color: var(--gray);
}

.footer-location-card>i:last-child {
    font-size: 0.75rem;
    color: var(--gray);
}

.footer-map-embed {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Newsletter success message */
.newsletter-msg {
    margin-top: 10px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    display: none;
}

@media (max-width: 600px) {
    .footer-map-grid {
        grid-template-columns: 1fr;
    }
}

.footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: #718096;
}

.legal-links {
    margin-top: 10px;
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #718096;
    text-decoration: none;
    border-bottom: 1px dotted transparent;
}

.legal-links a:hover {
    color: var(--primary-orange);
    border-bottom-color: var(--primary-orange);
}

.ombud-section p {
    margin-bottom: 5px;
    font-weight: 600;
}

@media (max-width: 768px) {

    .footer-top-grid,
    .link-columns {
        flex-direction: column;
        gap: 30px;
    }

    .footer-contact,
    .link-columns {
        justify-content: flex-start;
        text-align: left;
        margin-left: 0;
    }

    .social-icons-footer {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(120deg, rgba(15, 39, 51, 0.92) 0%, rgba(24, 57, 73, 0.88) 45%, rgba(24, 57, 73, 0.82) 100%), #0f2733;
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: clamp(3.5rem, 10vw, 5.5rem) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header--logbook {
    background-image: linear-gradient(rgba(24, 57, 73, 0.8), rgba(24, 57, 73, 0.8)), url('../images/hero-1.png');
}

.page-header--buyoff {
    background-image: linear-gradient(rgba(24, 57, 73, 0.8), rgba(24, 57, 73, 0.8)), url('../images/hero-2.png');
}

.page-header--financing {
    background-image: linear-gradient(rgba(24, 57, 73, 0.8), rgba(24, 57, 73, 0.8)), url('../images/hero-3.png');
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: 0.92;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* Hero Grid */
.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 600px;
}

.hero__content {
    padding: 2rem 0;
    position: relative;
    z-index: 10;
}

.hero__content h1 {
    color: #2c3e50;
    font-weight: 800;
}

.hero__content p {
    color: #4a5568;
}

.hero__image img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
}

@media (max-width: 900px) {
    .hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__image {
        order: -1;
    }
}

/* Advantage Section */
.advantage-section {
    background: var(--surface-muted);
    padding: 5rem 0;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

@media (max-width: 900px) {
    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .advantage-grid {
        grid-template-columns: 1fr;
    }
}

.advantage-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(222, 78, 42, 0.2);
}

.advantage-card:hover .advantage-icon {
    background: var(--primary-orange);
    transform: scale(1.1);
}

.advantage-card:hover .advantage-icon i {
    animation: iconBounce 0.5s ease;
}

.advantage-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    transition: all 0.4s ease;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    color: white;
    font-size: 1.5rem;
}

.advantage-card h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.advantage-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}

/* Process Steps */
.process-section {
    background: #f0f4f8;
    padding: 5rem 0;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 3rem;
    padding: 0 40px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 100px;
    right: 100px;
    height: 3px;
    background: var(--primary-orange);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin: 0 auto 1rem;
}

.process-step h4 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--gray);
    max-width: 180px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .process-timeline {
        flex-direction: column;
        gap: 2rem;
        padding: 0;
    }

    .process-timeline::before {
        display: none;
    }
}

/* Process Steps Cards (Product Pages) */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

@media (max-width: 900px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* ----------------------------------------------------------- */
/* ABOUT PAGE STYLES */
/* ----------------------------------------------------------- */

/* About Cards - Rounded Border Containers */
.about-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #fde8e0;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(222, 78, 42, 0.12);
}

.about-card--large {
    padding: 2.5rem;
    text-align: left;
}

.about-card--large .about-card__icon {
    margin: 0 0 1.5rem 0;
}

.about-card__icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff0eb, #fde8e0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--primary-orange);
    transition: all 0.4s ease;
}

.about-card__icon i {
    font-size: 1.5rem;
    color: var(--primary-orange);
    transition: all 0.4s ease;
}

/* Icon Animations on Hover */
.about-card:hover .about-card__icon {
    background: var(--primary-orange);
    transform: scale(1.1);
}

.about-card:hover .about-card__icon i {
    color: white;
    animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {
    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.3);
    }

    50% {
        transform: scale(0.9);
    }

    70% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

/* Bullseye - Arrow hits center */
@keyframes arrowHit {
    0% {
        transform: scale(0.3) translateX(40px);
        opacity: 0;
    }

    50% {
        transform: scale(0.8) translateX(5px);
        opacity: 1;
    }

    70% {
        transform: scale(1.2) translateX(0);
    }

    85% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1) translateX(0);
        opacity: 1;
    }
}

.about-card:hover .fa-bullseye {
    animation: arrowHit 0.6s ease-out !important;
}

/* Binoculars - Lift up and focus */
@keyframes liftFocus {
    0% {
        transform: translateY(10px) scale(0.8);
        opacity: 0.5;
    }

    40% {
        transform: translateY(-5px) scale(1.1);
        opacity: 1;
    }

    60% {
        transform: translateY(-2px) scale(1.05);
    }

    80% {
        transform: translateY(0) scale(0.95);
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.about-card:hover .fa-binoculars {
    animation: liftFocus 0.7s ease-out !important;
}

/* Eye - Blink */
@keyframes eyeBlink {
    0% {
        transform: scaleY(1);
    }

    20% {
        transform: scaleY(0.1);
    }

    40% {
        transform: scaleY(1);
    }

    60% {
        transform: scaleY(0.1);
    }

    80% {
        transform: scaleY(1);
    }

    100% {
        transform: scaleY(1);
    }
}

.about-card:hover .fa-eye {
    animation: eyeBlink 0.6s ease !important;
}

/* Bolt - Flash */
@keyframes boltFlash {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    15% {
        opacity: 0.2;
        transform: scale(0.8);
    }

    30% {
        opacity: 1;
        transform: scale(1.3);
    }

    45% {
        opacity: 0.3;
        transform: scale(0.9);
    }

    60% {
        opacity: 1;
        transform: scale(1.15);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.about-card:hover .fa-bolt {
    animation: boltFlash 0.5s ease !important;
}

/* Shield - Grow strong */
@keyframes shieldUp {
    0% {
        transform: scale(0.5) rotate(-10deg);
    }

    50% {
        transform: scale(1.2) rotate(5deg);
    }

    75% {
        transform: scale(0.95) rotate(-2deg);
    }

    100% {
        transform: scale(1) rotate(0);
    }
}

.about-card:hover .fa-shield-alt {
    animation: shieldUp 0.5s ease !important;
}

/* Lightbulb - Light up */
@keyframes lightUp {
    0% {
        transform: scale(0.9);
        filter: brightness(0.5);
    }

    30% {
        transform: scale(1.15);
        filter: brightness(1.5);
    }

    60% {
        transform: scale(1.05);
        filter: brightness(1.2);
    }

    100% {
        transform: scale(1);
        filter: brightness(1);
    }
}

.about-card:hover .fa-lightbulb {
    animation: lightUp 0.5s ease !important;
}

/* Heart - Pulse beat */
@keyframes heartBeat {
    0% {
        transform: scale(1);
    }

    15% {
        transform: scale(1.3);
    }

    30% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.2);
    }

    60% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}

.about-card:hover .fa-heart {
    animation: heartBeat 0.6s ease !important;
}

/* Sliders - Slide left right */
@keyframes slideAdjust {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-3px);
    }

    100% {
        transform: translateX(0);
    }
}

.about-card:hover .fa-sliders-h {
    animation: slideAdjust 0.5s ease !important;
}

/* General icon spin for menu dropdowns */
@keyframes iconPop {
    0% {
        transform: scale(1) rotate(0);
    }

    50% {
        transform: scale(1.2) rotate(-10deg);
    }

    100% {
        transform: scale(1) rotate(0);
    }
}

/* Dropdown menu icon animations */
.dropdown-icon-container {
    transition: all 0.3s ease;
}

.dropdown-item-rich:hover .dropdown-icon-container {
    background: var(--primary-orange);
    transform: scale(1.1);
}

.dropdown-item-rich:hover .dropdown-icon-container i {
    color: white;
    animation: iconPop 0.4s ease;
}

/* Why Choose Us icon animations */
.about-why-item:hover .about-why-item__icon i {
    animation: iconBounce 0.5s ease;
}

.about-card__title {
    color: var(--primary-orange);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.about-card__text {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Stats Section */
.about-stat {
    padding: 2rem 1rem;
}

.about-stat__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.about-stat:hover .about-stat__icon {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: scale(1.1);
}

.about-stat:hover .about-stat__icon i {
    animation: iconBounce 0.5s ease;
}

.about-stat__icon i {
    font-size: 1.3rem;
    color: white;
    transition: all 0.4s ease;
}

.about-stat__number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.3rem;
}

.about-stat__label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

/* Why Choose Us Items */
.about-why-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    border: 2px solid #fde8e0;
    transition: all 0.3s ease;
}

.about-why-item:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 10px 25px rgba(222, 78, 42, 0.1);
    transform: translateY(-3px);
}

.about-why-item__icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff0eb, #fde8e0);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-orange);
    transition: all 0.4s ease;
}

.about-why-item__icon i {
    font-size: 1.1rem;
    color: var(--primary-orange);
    transition: all 0.4s ease;
}

.about-why-item:hover .about-why-item__icon {
    background: var(--primary-orange);
}

.about-why-item:hover .about-why-item__icon i {
    color: white;
    animation: iconBounce 0.5s ease;
}

/* About Page Responsive */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr !important;
    }

    .about-values-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .about-mission-grid {
        grid-template-columns: 1fr !important;
    }

    .about-why-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 600px) {
    .about-values-grid {
        grid-template-columns: 1fr !important;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .about-stat__number {
        font-size: 2rem;
    }
}

/* ----------------------------------------------------------- */
/* STEP CARDS */
/* ----------------------------------------------------------- */

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    transition: 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-card:hover .step-number {
    background: var(--primary-orange);
    transform: scale(1.15);
    animation: iconBounce 0.5s ease;
}

.step-card.highlight {
    border-color: var(--primary-orange);
    background: #fff8f6;
}

.step-card .step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    border: none;
}

.step-card h4 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.step-card p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
}

/* Check List */
.check-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.check-list li i {
    color: var(--primary-orange);
    margin-top: 4px;
}

/* Calculator Buttons */
.calc-btn-apply {
    width: 100%;
    background: var(--primary-orange);
    color: white;
    font-weight: 700;
    padding: 15px;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.calc-btn-apply:hover {
    background: #c43d1d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(222, 78, 42, 0.3);
}

.calc-input-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--border);
    padding: 10px 15px;
    border-radius: 6px;
    margin-bottom: 10px;
    background: white;
}

.calc-input-group input {
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-align: right;
    width: 120px;
    outline: none;
}

.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: #E2E8F0;
    outline: none;
    margin: 10px 0;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-orange);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Card */
.card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.card h3 {
    margin-bottom: 1rem;
}

/* Bottom Banner */
.bottom-banner {
    background: var(--primary-blue);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.bottom-banner h2 {
    color: white;
    margin-bottom: 10px;
}

.bottom-banner p {
    opacity: 0.9;
    margin-bottom: 20px;
}

/* Margin Utilities */
.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.text-center {
    text-align: center;
}

/* ============================================== */
/* MOBILE RESPONSIVE STYLES                       */
/* ============================================== */

/* Bigger Logo */
.logo img {
    height: 60px !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
}

@media (max-width: 992px) {

    /* Show mobile menu toggle */
    .menu-toggle {
        display: block;
    }

    /* Mobile Navigation */
    .nav__menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        display: none;
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav__menu.active {
        display: flex;
    }

    .nav__link {
        font-size: 1.1rem;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .nav__menu .btn {
        margin-top: 20px;
    }

    /* Hero Grid */
    .hero__grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .hero__grid .hero__content h1 {
        font-size: 2.5rem !important;
    }

    .hero__grid .hero__image {
        margin-top: 2rem;
    }

    .hero__grid .hero__image img {
        max-height: 350px;
        width: 100%;
        object-fit: cover;
    }

    /* Product Hero Grid */
    .product-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .product-hero-grid h1 {
        font-size: 2rem !important;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    /* Promo Section */
    .promo-section {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    /* Advantage Grid */
    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Process Steps */
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    /* OnePay Calculator */
    .onepay-calculator {
        max-width: 100%;
    }

    /* Page Header */
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header {
        padding: 3rem 0;
    }
}

@media (max-width: 600px) {

    /* Even smaller screens */
    .container {
        padding: 0 15px;
    }

    /* Hero */
    .hero-slider-section {
        height: 500px !important;
    }

    /* Overlay text on image for mobile */
    .hero__grid {
        grid-template-columns: 1fr !important;
        position: relative;
        height: 100%;
    }

    .hero__image {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        order: 0 !important;
    }

    .hero__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0 !important;
    }

    .hero__content {
        position: relative !important;
        z-index: 10;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 2rem !important;
        border-radius: 12px;
        margin: auto 1rem;
        max-width: 90%;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .hero__grid .hero__content h1 {
        font-size: 2rem !important;
        color: #2c3e50 !important;
        text-shadow: none;
    }

    .hero__grid .hero__content p {
        font-size: 1rem;
        color: #4a5568 !important;
        text-shadow: none;
    }

    /* Advantage Grid - single column */
    .advantage-grid {
        grid-template-columns: 1fr;
    }

    .advantage-card {
        padding: 1.5rem;
    }

    /* Process Steps - single column */
    .process-steps {
        grid-template-columns: 1fr;
    }

    /* Glass Cards */
    .glass-card {
        width: 280px;
        height: 360px;
    }

    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    /* Inline Form - Mobile */
    #inlineApplicationForm {
        padding: 1.5rem !important;
    }

    #inlineApplicationForm form>div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    /* Footer */
    .footer-top-grid {
        flex-direction: column;
        gap: 30px;
    }

    .link-columns {
        flex-direction: column;
        gap: 25px;
        justify-content: flex-start;
    }

    .footer-contact {
        text-align: left;
        margin-left: 0;
    }

    .social-icons-footer {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .ombud-section {
        text-align: left !important;
    }

    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form .btn {
        width: 100%;
    }

    /* Calculator */
    .onepay-input-group {
        padding: 8px 12px;
    }

    .onepay-result-value {
        font-size: 1.5rem;
    }

    .onepay-btn {
        padding: 12px;
        font-size: 1rem;
    }

    /* Cards */
    .card {
        padding: 1.5rem;
    }

    /* Bottom Banner */
    .bottom-banner {
        padding: 3rem 0;
    }

    .bottom-banner h2 {
        font-size: 1.5rem;
    }
}

/* Form Controls Responsive */
.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

select.form-control {
    appearance: none;
    background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 12px center;
    padding-right: 40px;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* ============================================== */
/* MEGA MENU STYLES                               */
/* ============================================== */

/* Nav Actions (Right Side) */
.nav__actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav__icon {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary-blue);
    cursor: pointer;
    transition: 0.3s;
    border-radius: 50%;
}

.nav__icon:hover {
    background: var(--off-white);
    color: var(--primary-orange);
}

.btn--sm {
    padding: 8px 20px;
    font-size: 0.8rem;
}

/* ============================================== */
/* GET STARTED - Orange Glowing CTA Button        */
/* ============================================== */
.btn--get-started {
    background: linear-gradient(135deg, #DE4E2A 0%, #ff6b3d 50%, #DE4E2A 100%);
    background-size: 200% 200%;
    color: white;
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(222, 78, 42, 0.4), 0 0 30px rgba(222, 78, 42, 0.2);
    animation: glowPulse 2s ease-in-out infinite, gradientShift 3s ease infinite;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.btn--get-started:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 20px rgba(222, 78, 42, 0.6), 0 0 40px rgba(222, 78, 42, 0.3), 0 0 60px rgba(222, 78, 42, 0.15);
    color: white;
}

.btn--get-started:active {
    transform: translateY(0) scale(1);
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(222, 78, 42, 0.4), 0 0 30px rgba(222, 78, 42, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(222, 78, 42, 0.6), 0 0 40px rgba(222, 78, 42, 0.3), 0 0 60px rgba(222, 78, 42, 0.1);
    }
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn--outline:hover {
    background: var(--primary-blue);
    color: white;
}

/* Mega Menu Overlay */
.mega-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.mega-menu-overlay.active {
    display: flex;
    opacity: 1;
}

.mega-menu {
    display: flex;
    width: 100%;
    height: 100%;
    background: white;
}

.mega-menu__image {
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.mega-menu__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mega-menu__content {
    width: 50%;
    padding: 40px 60px;
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
}

.mega-menu__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
    transition: 0.3s;
}

.mega-menu__close:hover {
    color: var(--primary-orange);
}

.mega-menu__logo {
    margin-bottom: 30px;
}

.mega-menu__logo img {
    height: 50px;
}

/* Mega Menu Search */
.mega-menu__search {
    display: flex;
    margin-bottom: 30px;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.mega-search-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    font-size: 1rem;
    outline: none;
}

.mega-search-btn {
    padding: 12px 20px;
    background: var(--primary-orange);
    color: white;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.mega-search-btn:hover {
    background: #c43d1d;
}

/* Mega Menu Navigation */
.mega-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.mega-menu__nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 1.1rem;
    color: var(--dark);
    border-bottom: 1px solid #f0f0f0;
    transition: 0.3s;
}

.mega-menu__nav a:hover {
    color: var(--primary-orange);
    padding-left: 10px;
}

.mega-menu__nav a i {
    opacity: 0;
    transition: 0.3s;
}

.mega-menu__nav a:hover i {
    opacity: 1;
}

/* Mega Menu Auth Buttons */
.mega-menu__auth {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.mega-menu__auth .btn {
    padding: 12px 30px;
    border-radius: 4px;
}

/* Mega Menu Contact */
.mega-menu__contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.mega-phone {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.mega-email {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Mega Menu Social */
.mega-menu__social {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.mega-menu__social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: 0.3s;
}

.mega-menu__social a:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

/* Mega Menu Footer */
.mega-menu__footer {
    margin-top: auto;
    display: flex;
    gap: 25px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.mega-menu__footer a {
    color: var(--gray);
    font-size: 0.9rem;
}

.mega-menu__footer a:hover {
    color: var(--primary-orange);
}

/* ============================================== */
/* AUTH MODAL STYLES                              */
/* ============================================== */

.auth-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.auth-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.auth-modal {
    background: white;
    width: 100%;
    max-width: 450px;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.auth-modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: var(--off-white);
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    color: var(--gray);
    transition: 0.3s;
}

.auth-modal__close:hover {
    background: #eee;
    color: var(--primary-orange);
}

.auth-form h2 {
    margin-bottom: 5px;
    text-align: center;
}

.auth-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 25px;
}

.auth-forgot {
    text-align: right;
    margin-bottom: 20px;
}

.auth-forgot a {
    color: var(--primary-orange);
    font-size: 0.9rem;
}

.auth-submit {
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    font-size: 1rem;
}

/* Auth Divider */
.auth-divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #eee;
}

.auth-divider span {
    padding: 0 15px;
    color: var(--gray);
    font-size: 0.85rem;
}

/* Social Login Buttons */
.social-login-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 40px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    background: white;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
}

.social-btn--google {
    color: #333;
    border-color: #dadce0;
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.15);
}

.social-btn--google:hover {
    border-color: #4285f4;
    background: #f8f9ff;
    box-shadow: 0 4px 20px rgba(66, 133, 244, 0.35);
}

.auth-switch {
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
}

.auth-switch a {
    color: var(--primary-orange);
    font-weight: 600;
}

/* Mobile Mega Menu */
@media (max-width: 900px) {
    .mega-menu__image {
        display: none;
    }

    .mega-menu__content {
        width: 100%;
        padding: 30px;
    }

    .auth-modal {
        max-width: 90%;
        padding: 30px 25px;
    }

    .social-login-buttons {
        width: 100%;
    }

    .social-btn {
        width: 100%;
        padding: 12px 20px;
    }
}

@media (max-width: 992px) {
    .nav__menu {
        display: none !important;
    }

    .nav__actions {
        gap: 8px;
    }

    .btn--get-started {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .btn--get-started {
        padding: 7px 12px;
        font-size: 0.7rem;
        letter-spacing: 0;
    }
}

/* ============================================== */
/* TOAST NOTIFICATIONS                            */
/* ============================================== */
.toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    z-index: 11000;
    transition: 0.3s;
    font-size: 0.9rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.toast--show {
    bottom: 30px;
}

.toast--success {
    background: #28a745;
}

.toast--error {
    background: #dc3545;
}

.toast--info {
    background: var(--primary-blue);
}

/* ----------------------------------------------------------- */
/* UI ENHANCEMENTS */
/* ----------------------------------------------------------- */

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: 0.3s;
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.15);
}

.contact-icon-box {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
}

.form-message {
    display: none;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    display: block;
    background: #def7ec;
    color: #03543f;
    border: 1px solid #bcf0da;
}

.form-message.error {
    display: block;
    background: #fde8e8;
    color: #9b1c1c;
    border: 1px solid #fbd5d5;
}

.check-list li i {
    color: var(--primary-blue) !important;
    background: #e6f0fa;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.7rem;
    margin-right: 10px;
}

/* ----------------------------------------------------------- */
/* DROPDOWN MENU */
/* ----------------------------------------------------------- */
.nav__item {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown__menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav__item:hover .dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown__link {
    display: block;
    padding: 10px 20px;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.9rem;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s;
}

.dropdown__link:last-child {
    border-bottom: none;
}

.dropdown__link:hover {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding-left: 25px;
}

/* ----------------------------------------------------------- */
/* MEGA DROPDOWN UPGRADE */
/* ----------------------------------------------------------- */

.dropdown__menu.mega-menu-grid {
    min-width: 650px !important;
    padding: 25px !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(10px) !important;
    border: none !important;
    border-radius: 0 !important;
    background: white !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
    margin-top: 0 !important;
    top: 100% !important;
}

.nav__item:hover .dropdown__menu.mega-menu-grid {
    transform: translateX(-50%) translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.dropdown-item-rich {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    transition: 0.2s;
    text-decoration: none;
    border: 1px solid transparent;
    background: #fdfdfd;
}

.dropdown-item-rich:hover {
    background: #fffafa;
    border-color: #ffeae0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.dropdown-icon-container {
    background: #fff0eb;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dropdown-icon-container i {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.dropdown-content h4 {
    color: var(--primary-blue);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.dropdown-content p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.dropdown-link-action {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    text-transform: uppercase;
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #183949;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    z-index: 10000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0;
    pointer-events: none;
    text-align: center;
    max-width: 90%;
}

.toast--show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.toast--success {
    background: #48bb78;
}

.toast--error {
    background: #e53e3e;
}

.toast--info {
    background: #4299e1;
}

toast--info {
    background: #4299e1;
}