

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #f8fafc;
    color: #334155;
    overflow-x: hidden;
}

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

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.8s ease-in-out forwards;
}

.slide-up {
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==================== HEADER ==================== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 24px;
    color: #0f172a;
}

.logo-icon {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    color: white;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 18px;
}

.logo span {
    color: #ec4899;
}

.logo-subtitle {
    font-size: 9px;
    display: block;
    color: #64748b;
    font-weight: 500;
    margin-top: -4px;
}

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

nav ul li a {
    font-weight: 500;
    font-size: 15px;
    color: #475569;
    transition: all 0.3s;
    position: relative;
}

nav ul li a.active, nav ul li a:hover {
    color: #ec4899;
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ec4899;
    border-radius: 2px;
}

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

.search-icon-btn {
    background: none;
    border: none;
    font-size: 16px;
    color: #64748b;
    cursor: pointer;
    padding: 8px;
    transition: 0.3s;
}

.search-icon-btn:hover {
    color: #ec4899;
}

.btn-login {
    padding: 8px 20px;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    color: #334155;
    transition: 0.3s;
}

.btn-login:hover {
    border-color: #ec4899;
    color: #ec4899;
}

.btn-signup {
    padding: 8px 22px;
    background: linear-gradient(90deg, #d946ef, #8b5cf6);
    border: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(217, 70, 239, 0.3);
    transition: all 0.3s;
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(217, 70, 239, 0.4);
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: url('../img/home1.jpg') center/cover;
    color: white;
    padding: 60px 8% 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(11, 19, 43, 0.95) 0%, rgba(28, 37, 65, 0.75) 60%, rgba(11, 19, 43, 0.4) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: #38bdf8;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-title span.pink { color: #f43f5e; }
.hero-title span.blue { color: #38bdf8; }

.hero-subtitle {
    color: #94a3b8;
    font-size: 16px;
    max-width: 600px;
    margin-bottom: 35px;
}

.search-box {
    background: white;
    padding: 8px 12px 8px 20px;
    border-radius: 35px;
    display: flex;
    align-items: center;
    max-width: 650px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    margin-bottom: 40px;
}

.search-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.search-input-group i { color: #94a3b8; }

.search-input-group input, .search-input-group select {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    color: #334155;
    background: transparent;
}

.divider {
    width: 1px;
    height: 25px;
    background: #e2e8f0;
    margin: 0 15px;
}

.btn-search {
    background: linear-gradient(90deg, #d946ef, #8b5cf6);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-search:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 900px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.feature-item i {
    font-size: 20px;
    color: #38bdf8;
}

.feature-text h4 {
    font-size: 13px;
    font-weight: 600;
}

.feature-text p {
    font-size: 11px;
    color: #94a3b8;
}

.floating-tag {
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: auto;
    z-index: 5;
    animation: slideRightToLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards, floatMotion 4s ease-in-out infinite 1.2s;
}

.floating-tag img {
    max-width: 385px;
    height: auto;
    display: block;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4));
    border-radius: 16px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.floating-tag img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

@keyframes slideRightToLeft {
    0% {
        opacity: 0;
        transform: translate(150px, -50%);
    }
    100% {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

@keyframes floatMotion {
    0% {
        transform: translate(0, -50%);
    }
    50% {
        transform: translate(0, calc(-50% - 10px));
    }
    100% {
        transform: translate(0, -50%);
    }
}

@media (max-width: 1200px) {
    .floating-tag img {
        max-width: 260px;
    }
}

@media (max-width: 992px) {
    .floating-tag {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 30px;
        display: flex;
        justify-content: center;
        animation: slideRightToLeftMobile 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .floating-tag img {
        max-width: 220px;
    }
}

@keyframes slideRightToLeftMobile {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
/* ==================== CATEGORIES SECTION ==================== */
.section {
    padding: 60px 8%;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.section-subtitle {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8b5cf6;
    font-weight: 700;
    margin-bottom: 5px;
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
}

.view-all {
    color: #2563eb;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

.view-all:hover {
    gap: 8px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.cat-card {
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.06);
}

.cat-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.cat-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #0f172a;
}

.cat-card p {
    font-size: 11px;
    color: #64748b;
}

/* Category Card Colors */
.cat-1 { background: #fdf2f8; } .cat-1 .cat-icon { color: #ec4899; }
.cat-2 { background: #f0f9ff; } .cat-2 .cat-icon { color: #0284c7; }
.cat-3 { background: #f0fdf4; } .cat-3 .cat-icon { color: #16a34a; }
.cat-4 { background: #fff7ed; } .cat-4 .cat-icon { color: #ea580c; }
.cat-5 { background: #f3e8ff; } .cat-5 .cat-icon { color: #9333ea; }
.cat-6 { background: #e0f2fe; } .cat-6 .cat-icon { color: #0891b2; }

/* ==================== EVENTS SECTION ==================== */
.events-container {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}

.events-grid {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.event-card {
    flex: 0 0 calc((100% - (20px * 4)) / 5);
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    border: 1px solid #f1f5f9;
    transition: all 0.3s;
    position: relative;
    box-sizing: border-box;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.event-img {
    height: 160px;
    width: 100%;
    object-fit: cover;
    position: relative;
}

.date-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: white;
    padding: 6px 12px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.date-badge .day {
    font-weight: 800;
    font-size: 16px;
    line-height: 1;
}

.date-badge .month {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
    color: #64748b;
}

.date-badge .year {
    font-size: 9px;
    color: #94a3b8;
}

.card-1 .date-badge .day { color: #d946ef; }
.card-2 .date-badge .day { color: #2563eb; }
.card-3 .date-badge .day { color: #10b981; }
.card-4 .date-badge .day { color: #f97316; }
.card-5 .date-badge .day { color: #05a89d; }

.event-details {
    padding: 18px;
}

.event-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f172a;
}

.event-info {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}

.price {
    font-weight: 700;
    font-size: 14px;
    color: #0f172a;
}

.tag {
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 12px;
    font-weight: 600;
}

.tag-pink { background: #fce7f3; color: #ec4899; }
.tag-blue { background: #e0f2fe; color: #0284c7; }
.tag-green { background: #dcfce7; color: #16a34a; }
.tag-orange { background: #ffedd5; color: #ea580c; }

.btn-register {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 13px;
    margin-top: 12px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.card-1 .btn-register { background: linear-gradient(90deg, #d946ef, #8b5cf6); }
.card-2 .btn-register { background: #0284c7; }
.card-3 .btn-register { background: #10b981; }
.card-4 .btn-register { background: #f97316; }
.card-5 .btn-register { background: #05a89d; }

.btn-register:hover {
    opacity: 0.9;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    z-index: 10;
    transition: 0.3s;
}

.nav-btn:hover { background: #f8fafc; color: #ec4899; }
.nav-btn.prev { left: 10px; }
.nav-btn.next { right: 10px; }

.dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 25px;
}

.dot {
    width: 6px;
    height: 6px;
    background: #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    width: 18px;
    background: #ec4899;
    border-radius: 10px;
}

@media (max-width: 1400px) {
    .event-card { flex: 0 0 calc((100% - (20px * 3)) / 4); }
}
@media (max-width: 1024px) {
    .event-card { flex: 0 0 calc((100% - (20px * 2)) / 3); }
}
@media (max-width: 768px) {
    .event-card { flex: 0 0 calc((100% - 20px) / 2); }
}
@media (max-width: 480px) {
    .event-card { flex: 0 0 100%; }
}
/* ==================== WHY CHOOSE US ==================== */
.features-section {
    background: #ffffff;
    padding: 60px 8%;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.why-card {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
}

.why-card:hover {
    background: #f1f5f9;
}

.why-icon {
    width: 36px;
    height: 36px;
    background: #e0e7ff;
    color: #4f46e5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.why-card h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}

.why-card p {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
}

/* Mockup area */
.mockup-container {
    position: relative;
    text-align: right;
    margin-top: -100px;
}

/* ==================== FOOTER CTA ==================== */
.footer-cta {
    background: #090d16;
    color: white;
    padding: 30px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-left .logo-icon {
    font-size: 24px;
}

.cta-text h3 {
    font-size: 18px;
    font-weight: 700;
}

.cta-text p {
    font-size: 12px;
    color: #94a3b8;
}

.newsletter-form {
    display: flex;
    background: white;
    padding: 5px;
    border-radius: 30px;
    width: 400px;
}

.newsletter-form input {
    border: none;
    outline: none;
    padding: 8px 15px;
    flex: 1;
    border-radius: 30px;
    font-size: 13px;
}

.btn-subscribe {
    background: linear-gradient(90deg, #d946ef, #8b5cf6);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-subscribe:hover {
    opacity: 0.9;
}

@media (max-width: 900px) {
    .hero-title { font-size: 32px; }
    .floating-tag { display: none; }
    .footer-cta { flex-direction: column; gap: 20px; text-align: center; }
    .cta-left { flex-direction: column; }
    .newsletter-form { width: 100%; }
    nav { display: none; } /* Simplified for responsive */
}

/* ------------------------------EVENT PAGE--------------------------- */
.pink-purple-btn {
    background: linear-gradient(90deg, #d946ef 0%, #a855f7 100%);
}
.pink-purple-btn:hover {
    opacity: 0.95;
    box-shadow: 0 4px 14px rgba(217, 70, 239, 0.4);
}

.blue-btn {
    background: linear-gradient(90deg, #0284c7 0%, #2563eb 100%);
}
.teal-btn {
    background: linear-gradient(90deg, #059669 0%, #10b981 100%);
}
.orange-btn {
    background: linear-gradient(90deg, #ea580c 0%, #f97316 100%);
}
.cyan-btn {
    background: linear-gradient(90deg, #0284c7 0%, #06b6d4 100%);
}

.hero-banner {
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 27, 75, 0.85) 45%, rgba(136, 19, 101, 0.5) 100%), url('../img/home2.jpg') center/cover;
    color: white;
    padding: 60px 8% 80px;
    position: relative;
    overflow: hidden;
}


.bottom-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 35%, #3b0764 70%, #1d4ed8 100%);
}

input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: #d946ef;
    cursor: pointer;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    margin-top: -6px;
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    cursor: pointer;
    background: #e2e8f0;
    border-radius: 3px;
}

.event-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

.curved-underline {
    position: relative;
    display: inline-block;
}
.curved-underline::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 8px;
    background: radial-gradient(ellipse at center, #ec4899 0%, transparent 70%);
    border-bottom: 3px solid #ec4899;
    border-radius: 50%;
}
/* ---------------------------ACTIVITY PAGE----------------------------------------------------- */

.gradient-btn {
    background: linear-gradient(135deg, #ec4899 0%, #c084fc 100%);
    transition: all 0.3s ease;
}
.gradient-btn:hover {
    opacity: 0.95;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.35);
}
.gradient-btn-primary {
    background: linear-gradient(90deg, #d946ef 0%, #ec4899 50%, #f43f5e 100%);
}
.hero-bg {
    background: linear-gradient(rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.3)), url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}
.hero-curved-bottom {
    clip-path: ellipse(80% 100% at 50% 0%);
}
/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
/* ----------------------------Register Modal----------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: #ffffff;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    position: relative;
    box-sizing: border-box;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-card {
    transform: translateY(0) scale(1);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f1f5f9;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 18px;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.modal-header .icon-box {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 10px;
}

.modal-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px 0;
}

.modal-header p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.reg-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}

.required {
    color: #ef4444;
}

.input-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 12px;
    color: #94a3b8;
    font-size: 14px;
    pointer-events: none;
    z-index: 1;
}

.input-wrapper input,
.input-wrapper select,
.plain-input {
    width: 100%;
    height: 42px;
    padding: 0 12px 0 36px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    color: #0f172a;
    background-color: #f8fafc;
    outline: none;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.plain-input {
    padding: 0 12px;
}

.input-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%3a94a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.plain-input:focus {
    border-color: #2563eb;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.payment-methods {
    display: flex;
    gap: 10px;
}

.payment-option {
    flex: 1;
    cursor: pointer;
}

.payment-option input {
    display: none;
}

.pay-card {
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    transition: all 0.2s ease;
}

.payment-option input:checked + .pay-card {
    border-color: #2563eb;
    background-color: #eff6ff;
    color: #2563eb;
}

.payment-details-box {
    background: #f8fafc;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-details-box.hidden {
    display: none;
}

.summary-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0f172a;
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #475569;
}

.form-checkbox input {
    accent-color: #2563eb;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.form-checkbox a {
    color: #2563eb;
    text-decoration: none;
}

.submit-btn {
    width: 100%;
    height: 44px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s ease;
}

.submit-btn:hover {
    background-color: #1d4ed8;
}

@media (max-width: 480px) {
    .form-row {
        flex-direction: column;
        gap: 14px;
    }
}
