/* Custom Color Variables */
:root {
    --primary-color: #f4258c;
    --fuchsia-500: #d946ef;
    --background-dark: #0a0a0a;
    --background-light: #FDFDFC;
}

/* Base Layout */
html {
    scroll-behavior: smooth;
    scroll-snap-type: y proximity; /* mandatory에서 proximity로 변경 - 더 유연한 스크롤 */
}

body {
    background-color: var(--background-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

#app {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Custom Background Colors */
.bg-background-dark {
    background-color: var(--background-dark) !important;
}

.bg-background-light {
    background-color: var(--background-light) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

/* Neon Effects */
.neon-glow {
    box-shadow: 0 0 5px #f4258c, 0 0 10px #f4258c, 0 0 15px #f4258c, 0 0 20px #d946ef;
}

.neon-text {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #f4258c, 0 0 20px #f4258c, 0 0 25px #f4258c, 0 0 30px #f4258c, 0 0 35px #f4258c;
}

.neon-border {
    border-color: #f4258c;
    box-shadow: 0 0 8px rgba(244, 37, 141, 0.6);
}

/* Section Styles */
section {
    width: 100%;
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    scroll-margin-top: 100px; /* 헤더 높이만큼 offset 추가 */
}

/* Hero section은 이미 100vh이므로 그대로 유지 */
.hero-section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

/* 다른 섹션들은 내용에 따라 높이가 결정되도록 */
.section-container {
    min-height: auto;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 1rem;
}

@media (min-width: 576px) {
    .section-container {
        padding: 5rem 1.5rem;
    }
}

@media (min-width: 992px) {
    .section-container {
        padding: 5rem 2rem;
    }
}

.section-container-sm {
    max-width: 1024px;
    margin: 0 auto;
    padding: 5rem 1rem;
}

.section-container-xs {
    max-width: 672px;
    margin: 0 auto;
    padding: 5rem 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-divider {
    display: inline-block;
    height: 4px;
    width: 96px;
    margin-top: 0.5rem;
}

/* Hero Section */
.hero-section {
    width: 100%;
    height: 100vh;
    min-height: 700px;
    position: relative;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 0 1rem;
    z-index: 1; /* hero-content는 hero-section 내부에서만 레이어링 */
}

.hero-title {
    color: white;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -0.05em;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    line-height: 1.5;
    margin-top: 1rem;
    max-width: 48rem;
}

.hero-button {
    margin-top: 1.5rem;
    min-width: 84px;
    padding: 0.75rem 1.25rem;
}

.hero-note {
    color: rgba(244, 37, 140, 0.7);
    font-size: 0.875rem;
    font-weight: 400;
    margin-top: 1rem;
}

/* Program Card */
.program-card {
    background: linear-gradient(to bottom right, rgba(112, 26, 117, 0.4), rgba(30, 58, 138, 0.4));
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(244, 37, 140, 0.4);
    transition: all 0.3s;
    height: 100%;
}

.program-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 25px 50px -12px rgba(244, 37, 140, 0.3);
}

.program-card-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.program-card-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0.75rem;
}

.program-card-description {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.program-card-button {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 2px solid var(--primary-color);
    font-weight: 700;
}

/* Feature Card */
.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(244, 37, 140, 0.5);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: scale(1.05);
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.feature-card-description {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, var(--primary-color), var(--fuchsia-500));
    padding: 6rem 1rem;
}

.cta-container {
    max-width: 896px;
    margin: 0 auto;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 3rem;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
}

.cta-title {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.cta-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    margin-top: 1rem;
}

.cta-buttons {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 576px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.cta-button-primary {
    min-width: 84px;
    padding: 0.875rem 1.25rem;
    border-radius: 9999px;
    border: 0;
}

.cta-button-secondary {
    min-width: 84px;
    padding: 0.875rem 1.25rem;
    border-radius: 9999px;
    border: 2px solid white;
}

.cta-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Form Section */
.form-section {
    padding: 5rem 1rem;
}

.form-container {
    max-width: 672px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-title {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.form-description {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-submit-button {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0.75rem 1rem;
    border: 0;
    border-radius: 9999px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    font-size: 1.125rem;
    font-weight: 700;
}

/* Header */
header {
    width: 100%;
    max-width: 1280px;
    padding: 1.25rem 1rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000; /* 헤더가 hero-section 위에 오도록 높은 z-index 설정 */
}

@media (min-width: 576px) {
    header {
        padding: 1.25rem 1.5rem;
    }
}

@media (min-width: 992px) {
    header {
        padding: 1.25rem 2rem;
    }
}

header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1rem;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
}

@media (min-width: 576px) {
    header nav {
        padding: 0.75rem 1.5rem;
    }
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}

.header-brand:hover {
    opacity: 0.8;
    text-decoration: none;
    color: white;
}

.header-logo {
    width: 1.5rem;
    height: 1.5rem;
}

.header-title {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}

.header-nav {
    display: none;
    flex-grow: 1;
    justify-content: flex-end;
    gap: 2rem;
}

@media (min-width: 768px) {
    .header-nav {
        display: flex;
    }
}

.header-menu {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.header-link {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
}

.header-actions {
    display: flex;
    gap: 0.5rem;
}

.header-button {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 0;
    padding: 0.5rem 1rem;
    min-width: 84px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.025em;
}

.header-button-icon {
    width: 40px;
    height: 40px;
}

/* Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .image-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.image-grid-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.image-grid-item img {
    border-radius: 0.5rem;
    width: 100%;
    object-fit: cover;
}

.image-grid-label {
    text-align: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.image-grid-item:nth-child(even) {
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .image-grid-item:nth-child(even) {
        margin-top: 0;
    }
    
    .image-grid-item:nth-child(2),
    .image-grid-item:nth-child(4) {
        margin-top: 3rem;
    }
}

/* Custom Utilities */
.min-h-700 {
    min-height: 700px;
}

.h-screen {
    height: 100vh;
}

/* Opacity Utilities */
.bg-black\/20 {
    background-color: rgba(0, 0, 0, 0.2) !important;
}

.bg-black\/60 {
    background-color: rgba(0, 0, 0, 0.6) !important;
}

.bg-white\/5 {
    background-color: rgba(255, 255, 255, 0.05) !important;
}

.bg-white\/10 {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.text-white\/80 {
    color: rgba(255, 255, 255, 0.8) !important;
}

.text-white\/70 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.border-white\/20 {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.border-primary\/50 {
    border-color: rgba(244, 37, 140, 0.5) !important;
}

.border-primary\/40 {
    border-color: rgba(244, 37, 140, 0.4) !important;
}

.border-primary\/20 {
    border-color: rgba(244, 37, 140, 0.2) !important;
}

.bg-primary\/10 {
    background-color: rgba(244, 37, 140, 0.1) !important;
}

.text-primary\/70 {
    color: rgba(244, 37, 140, 0.7) !important;
}

/* Gradient Backgrounds */
.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-fuchsia-900\/40 {
    --tw-gradient-from: rgba(112, 26, 117, 0.4);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(112, 26, 117, 0));
}

.to-blue-900\/40 {
    --tw-gradient-to: rgba(30, 58, 138, 0.4);
}

.from-primary {
    --tw-gradient-from: var(--primary-color);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 37, 140, 0));
}

.to-fuchsia-600 {
    --tw-gradient-to: #c026d3;
}

/* Hover Effects */
.hover\:bg-fuchsia-500:hover {
    background-color: var(--fuchsia-500) !important;
}

.hover\:text-primary:hover {
    color: var(--primary-color) !important;
}

.hover\:bg-primary:hover {
    background-color: var(--primary-color) !important;
}

.hover\:text-white:hover {
    color: white !important;
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.hover\:-translate-y-2:hover {
    transform: translateY(-0.5rem);
}

.hover\:bg-white\/10:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

/* Backdrop Blur */
.backdrop-blur-sm {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Rounded Full */
.rounded-full {
    border-radius: 9999px !important;
}

/* Custom Sizing */
.size-6 {
    width: 1.5rem;
    height: 1.5rem;
}

/* Form Controls Custom Styling */
.form-control,
.form-select {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(244, 37, 140, 0.5) !important;
    color: white !important;
}

.form-control:focus,
.form-select:focus {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
    box-shadow: 0 0 0 0.25rem rgba(244, 37, 140, 0.25) !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Additional Utilities */
.h-100 {
    height: 100% !important;
}

.w-100 {
    width: 100% !important;
}

.gap-3 {
    gap: 1rem !important;
}

.gap-4 {
    gap: 1.5rem !important;
}

.gap-5 {
    gap: 3rem !important;
}

.hover\:shadow-2xl:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hover\:shadow-primary\/30:hover {
    box-shadow: 0 25px 50px -12px rgba(244, 37, 140, 0.3);
}

.hover\:bg-gray-200:hover {
    background-color: #e5e7eb !important;
}

/* Tracking */
.tracking-tight {
    letter-spacing: -0.025em;
}

.tracking-tighter {
    letter-spacing: -0.05em;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

/* Leading */
.leading-tight {
    line-height: 1.25;
}

.leading-normal {
    line-height: 1.5;
}

/* Footer Styles */
.site-footer {
    background-color: #050505;
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 0;
    border-top: 1px solid rgba(244, 37, 140, 0.3);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 576px) {
    .footer-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 992px) {
    .footer-container {
        padding: 0 2rem;
    }
}

.footer-brand .footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.footer-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-heading {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.footer-contact .material-symbols-outlined {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-legal {
    font-size: 0.875rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0.5rem;
}

/* Page Content Styles */
.page-content {
    background-color: var(--background-dark);
    min-height: 100vh;
    padding-top: 100px;
}

.page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
}

.page-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Legal Content Styles */
.legal-content {
    color: rgba(255, 255, 255, 0.8);
}

.legal-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.legal-section h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.contact-info {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(244, 37, 140, 0.3);
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* About Page Styles */
.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.about-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-section ul {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-list li .material-symbols-outlined {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-list li strong {
    color: white;
    display: block;
    margin-bottom: 0.25rem;
}

.feature-list li p {
    margin: 0;
    font-size: 0.9rem;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(244, 37, 140, 0.3);
    height: 100%;
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(244, 37, 140, 0.2);
}

.benefit-card .material-symbols-outlined {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    font-size: 0.9rem;
    margin: 0;
}

.steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step;
}

.steps-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--fuchsia-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

.steps-list li strong {
    color: white;
    display: block;
    margin-bottom: 0.25rem;
}

.steps-list li p {
    margin: 0;
    font-size: 0.9rem;
}

.cta-section-about {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(244, 37, 140, 0.1), rgba(217, 70, 239, 0.1));
    border-radius: 1rem;
    border: 1px solid rgba(244, 37, 140, 0.3);
}

.cta-section-about h2 {
    display: block;
    border-bottom: none;
    padding-bottom: 0;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-list .material-symbols-outlined {
    color: var(--primary-color);
}

.contact-list a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-list a:hover {
    text-decoration: underline;
}

/* Form Enhancements */
.form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(244, 37, 140, 0.5);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(244, 37, 140, 0.25);
    border-color: var(--primary-color);
}

.form-check-label {
    color: rgba(255, 255, 255, 0.7);
}

.form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.invalid-feedback {
    color: #ff6b6b;
}

.is-invalid {
    border-color: #ff6b6b !important;
}

.text-danger {
    color: #ff6b6b !important;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Form row spacing */
.form-section .row {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

.form-section .row > [class*="col-"] {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

/* Alert Styles */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid transparent;
}

.alert-success {
    background-color: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.alert-danger {
    background-color: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.alert .material-symbols-outlined {
    margin-right: 0.5rem;
}

/* Registration Progress */
.registration-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.progress-step .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
}

.progress-step.completed .step-number {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.progress-step.active .step-number {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 0 10px rgba(244, 37, 140, 0.5);
}

.progress-step .step-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.progress-step.completed .step-label,
.progress-step.active .step-label {
    color: white;
}

.progress-line {
    width: 60px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 0.5rem;
    margin-bottom: 1.5rem;
}

.progress-line.completed {
    background-color: var(--primary-color);
}

/* Form Section Card */
.form-section-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-section-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section-title .material-symbols-outlined {
    color: var(--primary-color);
}

/* Summary Card */
.summary-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(244, 37, 140, 0.3);
    border-radius: 0.5rem;
    padding: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row.total {
    border-top: 2px solid rgba(244, 37, 140, 0.5);
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-weight: 700;
}

.summary-row .label {
    color: rgba(255, 255, 255, 0.6);
}

.summary-row .value {
    color: white;
    font-weight: 500;
}

/* Deposit Notice */
.deposit-notice {
    display: flex;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(244, 37, 140, 0.1), rgba(217, 70, 239, 0.1));
    border: 1px solid rgba(244, 37, 140, 0.3);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.deposit-icon {
    flex-shrink: 0;
}

.deposit-icon .material-symbols-outlined {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.deposit-content h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.deposit-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

/* Next Steps List */
.next-steps-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.next-step-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.next-step-item .step-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--fuchsia-500));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.next-step-item .step-icon.bg-success {
    background: #22c55e;
}

.next-step-item .step-icon .material-symbols-outlined {
    font-size: 1rem;
}

.next-step-item strong {
    color: white;
    display: block;
    margin-bottom: 0.25rem;
}

/* Payment Form Card */
.payment-form-card,
.payment-summary-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.refund-policy {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    padding: 1rem;
}

.refund-policy h4 {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.refund-policy ul {
    margin: 0;
    padding-left: 1.25rem;
}

.refund-policy li {
    margin-bottom: 0.25rem;
}

/* Badge */
.badge {
    padding: 0.35rem 0.65rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 0.25rem;
}

.badge.bg-success {
    background-color: #22c55e !important;
}

/* Outline Button */
.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hamburger-line {
    display: block;
    width: 20px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

@media (min-width: 768px) {
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* Mobile Menu Container */
.mobile-menu-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background-color: #111;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-container {
    transform: translateX(0);
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-header .header-brand {
    gap: 0.5rem;
}

.mobile-menu-header .header-title {
    font-size: 1rem;
}

.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-close .material-symbols-outlined {
    font-size: 1.5rem;
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 0;
    flex-grow: 1;
}

.mobile-menu-link {
    display: block;
    padding: 1rem 1.5rem;
    color: white;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-menu-link:hover {
    background-color: rgba(244, 37, 140, 0.1);
    border-left-color: var(--primary-color);
    color: var(--primary-color);
}

/* Mobile Menu Actions */
.mobile-menu-actions {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-actions .btn {
    font-size: 1rem;
    font-weight: 600;
    border-radius: 9999px;
}

/* SweetAlert2 Dark Theme */
.sweetalert-dark {
    background-color: #1a1a1a !important;
    border: 1px solid rgba(244, 37, 140, 0.3) !important;
    box-shadow: 0 0 20px rgba(244, 37, 140, 0.2) !important;
}

.sweetalert-title {
    color: #ffffff !important;
    font-weight: 700 !important;
}

.sweetalert-content {
    color: rgba(255, 255, 255, 0.9) !important;
}

.swal2-popup {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
}

.swal2-title {
    color: #ffffff !important;
}

.swal2-content {
    color: rgba(255, 255, 255, 0.9) !important;
}

.swal2-confirm {
    background-color: #f4258c !important;
    border: none !important;
    border-radius: 9999px !important;
    padding: 0.75rem 2rem !important;
    font-weight: 600 !important;
    transition: all 0.3s !important;
}

.swal2-confirm:hover {
    background-color: #d946ef !important;
    transform: scale(1.05) !important;
}

.swal2-error {
    border-color: #dc3545 !important;
}

.swal2-success {
    border-color: #28a745 !important;
}