:root {
    --primary-blue: #001A3D;
    --accent-green: #00A86B;
    --glass-white: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.15);
    --text-white: #ffffff;
    --text-muted: #e2e8f0;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --glass-blur: blur(12px);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-white);
    line-height: 1.5;
    background-color: #000;
    overflow-x: hidden;
}

/* Base Utility Classes */
.text-center {
    text-align: center !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
}

h1 span,
h2 span,
h3 span {
    color: var(--accent-green);
}

/* Immersive Section System - LIGHTER OVERLAY */
.immersive-section {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.immersive-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Darker at bottom for text readability, but lighter overall */
    background: linear-gradient(180deg, rgba(0, 26, 61, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.section-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
}

/* Glass Card - NEO-MINIMALIST (THIN & COMPACT) */
.glass-panel {
    background: var(--glass-white);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Header Redesign */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(0, 26, 61, 0.6);
    backdrop-filter: blur(10px);
    padding: 12px 5%;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    background: transparent;
    padding: 0;
    transition: var(--transition);
}

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

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

nav ul li a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    opacity: 0.8;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--accent-green);
    opacity: 1;
}

.mobile-toggle {
    display: none;
}

/* Hero Carousel Styles */
.hero-slider {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-left: 10%;
}

.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 26, 61, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    animation: float 5s ease-in-out infinite;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 550px;
}

/* Page Hero System */
.page-hero {
    height: 60vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 26, 61, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-title-area {
    position: relative;
    z-index: 10;
    padding: 0 5%;
    animation: float 6s ease-in-out infinite;
}

.hero-title-area p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s both 0.4s;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 10px;
    animation: fadeInUp 0.8s both;
}

.page-hero .breadcrumb {
    font-size: 0.9rem;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    animation: fadeInDown 0.8s both 0.2s;
}

/* Hero Slide Animations */
.swiper-slide-active .hero-content h1 {
    animation: fadeInUp 0.8s both 0.2s;
}

.swiper-slide-active .hero-content p {
    animation: fadeInUp 0.8s both 0.4s;
}

.swiper-slide-active .hero-content .btn-group {
    animation: fadeInUp 0.8s both 0.6s;
}

.swiper-slide-active .hero-content .badge {
    animation: fadeInDown 0.8s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-beat {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 168, 107, 0.4);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 15px 45px rgba(0, 168, 107, 0.7);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 168, 107, 0.4);
    }
}

.lux-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 24px;
    transition: var(--transition);
    height: 100%;
}

.lux-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-green);
    transform: translateY(-4px);
}

.lux-card i {
    font-size: 1.5rem;
    color: var(--accent-green);
    margin-bottom: 15px;
}

.lux-card h3,
.lux-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.lux-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.card-image-wrapper img {
    transition: transform 0.5s ease;
}

.lux-card:hover .card-image-wrapper img {
    transform: scale(1.1);
}

/* Grid refined */
.services-lux-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Buttons */
.btn-luxury {
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-lux {
    background: var(--accent-green);
    color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0, 168, 107, 0.3);
}

.btn-primary-lux:hover {
    background: #fff;
    transform: scale(1.02);
}

.btn-outline-lux {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-lux:hover {
    background: #fff;
    color: var(--primary-blue);
    border-color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .glass-panel {
        padding: 25px;
    }

    .mobile-toggle {
        display: block;
        cursor: pointer;
        color: var(--text-white);
        font-size: 1.5rem;
        z-index: 1001;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(0, 26, 61, 0.95);
        backdrop-filter: blur(15px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        z-index: 1000;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .contact-container {
        display: flex !important;
        flex-direction: column;
    }

    .contact-form-panel {
        order: -1;
    }
}

/* Carousel pagination refined */
/* FOOTER EXPANSION */
.premium-footer {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.95)), url('src/luxury_office.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 5% 40px;
    border-top: 1px solid var(--glass-border);
    color: #fff;
    position: relative;
    text-align: center;
}

/* Fix for mobile background-attachment: fixed */
@media (max-width: 768px) {

    .immersive-section,
    .page-hero,
    .premium-footer,
    #app-promo,
    section {
        background-attachment: scroll !important;
    }
}


.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--accent-green);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
}

.footer-contact-item i {
    color: var(--accent-green);
    font-size: 1.1rem;
    margin-top: 5px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-green);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Map Container Refinement */
.map-container {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.map-container:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green) !important;
}

.map-container iframe {
    filter: grayscale(0.3) contrast(1.1) brightness(0.8);
    transition: all 0.6s ease;
}

.map-container:hover iframe {
    filter: grayscale(0) contrast(1) brightness(1);
}

.floating-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-green);
    color: var(--primary-blue);
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(0, 168, 107, 0.4);
    z-index: 9999;
    transition: var(--transition);
    animation: pulse-beat 1.5s infinite ease-in-out;
}

.floating-contact-btn:hover {
    transform: translateY(-5px) scale(1.05);
    background: #fff;
    color: var(--primary-blue);
}

.floating-contact-btn i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .floating-contact-btn {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

/* APP PROMOTION SECTION */
#app-promo {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('src/terrains\ sans\ ramba.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 5%;
}

.app-promo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.app-promo-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    line-height: 1.2;
}

.app-promo-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.app-features {
    list-style: none;
    margin-bottom: 35px;
}

.app-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1rem;
}

.app-features li i {
    color: var(--accent-green);
    font-size: 1.2rem;
}

.app-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-img {
    width: 100%;
    max-width: 450px;
    filter: drop-shadow(0 20px 50px rgba(0, 168, 107, 0.3));
    animation: float 6s ease-in-out infinite;
    mix-blend-mode: multiply;
    /* Removes white background */
}

.app-logo-small {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: #fff;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 5;
}

.app-logo-small img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.download-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.play-store-btn,
.app-store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #000;
    color: #fff;
    padding: 10px 22px;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    min-width: 180px;
}

.play-store-btn:hover,
.app-store-btn:hover {
    background: #111;
    border-color: var(--accent-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 168, 107, 0.2);
}

.play-store-btn i,
.app-store-btn i {
    font-size: 1.8rem;
    color: #fff;
}

.play-store-btn .btn-text,
.app-store-btn .btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.play-store-btn .small-text,
.app-store-btn .small-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

.play-store-btn .big-text,
.app-store-btn .big-text {
    font-size: 1.1rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

/* FLOATING APP BUTTON */
.floating-app-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: #000;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 9998;
    transition: var(--transition);
    border: 2px solid var(--accent-green);
}

.floating-app-btn i {
    font-size: 1.5rem;
    color: var(--accent-green);
}

.floating-app-btn:hover {
    transform: scale(1.1) rotate(10deg);
    background: var(--accent-green);
}

.floating-app-btn:hover i {
    color: #000;
}

@media (max-width: 992px) {
    .app-promo-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-promo-text {
        order: 1;
    }

    .app-mockup {
        order: 2;
    }

    .app-features li {
        justify-content: center;
    }

    .download-badges {
        justify-content: center;
    }

    .app-mockup {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .floating-app-btn {
        bottom: 85px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .floating-app-btn i {
        font-size: 1.2rem;
    }
}

/* STICKY APP DOWNLOAD BAR */
.sticky-app-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
    z-index: 999999;
    /* Ultra high z-index */
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.8);
}

.sticky-app-bar.active {
    transform: translateY(0);
}

.sticky-bar-content {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 90%;
    max-width: 1200px;
}

.sticky-bar-text {
    flex: 1;
}

.sticky-bar-text h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 2px;
    font-family: 'Outfit', sans-serif;
}

.sticky-bar-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.sticky-bar-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.sticky-bar-btn {
    background: #fff;
    color: #000;
    padding: 10px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.sticky-bar-btn.app-store {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sticky-bar-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 168, 107, 0.4);
}

.close-sticky-bar {
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.3rem;
    padding: 5px;
    transition: var(--transition);
}

.close-sticky-bar:hover {
    color: #fff;
    transform: scale(1.1);
}

/* PREMIUM RESERVE BUTTONS */
.btn-reserve-premium {
    background: linear-gradient(135deg, var(--accent-green), #008f5d);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 168, 107, 0.2);
    font-family: 'Outfit', sans-serif;
}

.btn-reserve-premium:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 168, 107, 0.4);
    filter: brightness(1.1);
}

.btn-reserve-premium:active {
    transform: translateY(0) scale(0.98);
}

/* PREMIUM PAYMENT MODAL REFINE */
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(25px);
    z-index: 10002;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    overflow-y: auto;
    /* ALLOW SCROLLING INSIDE MODAL */
    padding: 20px 0;
    /* Padding for mobile viewports */
}

.payment-modal.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.98), rgba(15, 15, 15, 0.99));
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 92%;
    max-width: 380px;
    /* Drastic reduction */
    border-radius: 20px;
    padding: 20px;
    /* Drastic reduction */
    position: relative;
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.9);
    transform: scale(0.8) translateY(30px);
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.payment-modal.active .modal-container {
    transform: scale(1) translateY(0);
}

.close-modal {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 2rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--accent-green);
    transform: rotate(90deg) scale(1.1);
}

.modal-steps {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
}

.step-indicator {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    font-size: 0.9rem;
}

.step-indicator.active {
    border-color: var(--accent-green);
    color: var(--accent-green);
    background: rgba(0, 168, 107, 0.12);
    box-shadow: 0 0 25px rgba(0, 168, 107, 0.25);
    transform: translateY(-8px);
}

.step-indicator.completed {
    background: var(--accent-green);
    border-color: var(--accent-green);
    color: #fff;
    transform: translateY(0);
}

.step-content {
    display: none;
    animation: premiumStepFade 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.step-content.active {
    display: block;
}

@keyframes premiumStepFade {
    from {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.step-content h3 {
    font-size: 1.5rem;
    /* Reduced */
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
    color: #fff;
}

.step-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
    /* Reduced */
    line-height: 1.5;
}

.payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 35px;
}

.payment-method-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    /* Reduced */
    border-radius: 18px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
}

.payment-method-card:hover {
    border-color: rgba(0, 168, 107, 0.6);
    background: rgba(255, 255, 255, 0.04);
}

.payment-method-card.active {
    border-color: var(--accent-green);
    background: rgba(0, 168, 107, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

.payment-method-card i {
    font-size: 2rem;
    /* Reduced */
    margin-bottom: 12px;
    color: var(--accent-green);
    display: block;
    filter: drop-shadow(0 0 10px rgba(0, 168, 107, 0.4));
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent-green);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.form-group input {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.08);
    padding: 14px;
    /* Reduced padding */
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.4s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-green);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 20px rgba(0, 168, 107, 0.15);
}

.modal-footer {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-modal {
    padding: 18px 35px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-back {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-next {
    background: linear-gradient(135deg, var(--accent-green), #008f5d);
    color: #fff;
    flex: 1;
    box-shadow: 0 12px 30px rgba(0, 168, 107, 0.35);
}

.btn-modal:hover:not(:disabled) {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-green), #00b371);
    color: #fff;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
    box-shadow: 0 25px 50px rgba(0, 168, 107, 0.5);
    transform: rotate(8deg);
    animation: successPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successPop {
    from {
        transform: scale(0.5) rotate(0);
        opacity: 0;
    }

    to {
        transform: scale(1) rotate(8deg);
        opacity: 1;
    }
}

@media (max-width: 992px) {
    .modal-container {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .sticky-bar-text {
        display: none;
    }

    .sticky-bar-content {
        justify-content: center;
    }

    .modal-container {
        padding: 20px 15px;
        border-radius: 18px;
    }

    .step-content h3 {
        font-size: 1.3rem;
    }

    .payment-grid {
        grid-template-columns: 1fr;
    }
}