:root {
    --bg-dark: #071324; /* Deep navy blue */
    --bg-darker: #040a14;
    --gold-primary: #d4a351;
    --gold-light: #f5d18d;
    --gold-gradient: linear-gradient(135deg, #f5d18d 0%, #d4a351 50%, #b8860b 100%);
    --text-light: #ffffff;
    --text-muted: #a0aabf;
    --bg-light: #fbfbfb;
    --bg-card: #ffffff;
    --border-color: rgba(212, 163, 81, 0.2);
    
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-light);
    background-color: var(--bg-dark);
    background: url('hero_bg.png') center/cover fixed no-repeat;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--bg-dark);
}

.section-title.light {
    color: var(--text-light);
    text-align: left;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

/* Buttons */
.btn {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 30px; /* Smoother pill shape */
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #f5d18d 0%, #d4a351 100%);
    color: #071324;
    box-shadow: 0 4px 15px rgba(212, 163, 81, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 163, 81, 0.4);
    background: linear-gradient(135deg, #fce1a8 0%, #e8b662 100%);
}

.btn-primary:hover::after {
    left: 200%;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-light);
}

.btn-outline:hover {
    background: rgba(212, 163, 81, 0.1);
    transform: translateY(-2px);
}

.btn-icon i {
    margin-right: 0.5rem;
}

.full-width {
    width: 100%;
    margin-top: 1rem;
}

/* Header */
header {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 1.5rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.perfect-logo-img {
    height: 160px; /* Increased size even more */
    width: auto;
    display: block;
    mix-blend-mode: normal; 
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap; /* Prevents squishing/overlapping by wrapping to next line if needed */
    gap: 1rem; /* Smaller gap since we have padding now */
    justify-content: center;
}

nav a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-normal);
    
    /* Modern Glassmorphic Box */
    padding: 0.6rem 1.2rem;
    border-radius: 30px; 
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: inline-block;
    white-space: nowrap;
}

nav a:hover {
    color: var(--gold-primary);
    background: rgba(212, 163, 81, 0.08);
    box-shadow: 0 10px 25px rgba(212, 163, 81, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 163, 81, 0.3);
    transform: translateY(-2px);
}

.header-btn {
    background: linear-gradient(135deg, #ebd1a2 0%, #d5b169 100%);
    color: #000;
    font-weight: 700;
    padding: 0.6rem 1.5rem;
    font-size: 0.75rem;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(212, 163, 81, 0.2);
    transition: all 0.3s ease;
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(212, 163, 81, 0.4);
    background: linear-gradient(135deg, #f5dfb8 0%, #e2be78 100%);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 14rem 0 8rem; /* Further increased top padding to accommodate the larger logo */
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: transparent;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(2, 12, 27, 0.9) 0%, rgba(2, 12, 27, 0.4) 60%, transparent 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 600px;
}

.welcome-text {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    color: var(--text-light);
    line-height: 1.1;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Floating Menu */
.hero-floating-menu {
    background: rgba(7, 19, 36, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateX(20px);
    opacity: 0;
    animation: slideInRight 1s ease forwards 0.5s;
}

.hero-floating-menu ul {
    list-style: none;
}

.hero-floating-menu li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    cursor: pointer;
}

.hero-floating-menu li:last-child {
    border-bottom: none;
}

.hero-floating-menu li:hover {
    color: var(--gold-primary);
    transform: translateX(5px);
}

.hero-floating-menu i {
    color: var(--gold-primary);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* About Us Section */
.about-us {
    background-color: rgba(4, 10, 20, 0.85); /* Semi-transparent to show fixed background */
    padding: 6rem 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-subtitle {
    color: var(--gold-primary);
    font-size: 1.8rem;
    font-family: var(--font-serif);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.gold-divider {
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Services Section */
.services {
    background-color: rgba(4, 10, 20, 0.9); /* Dark overlay to contrast with white text */
    padding: 6rem 0;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Changed to 3 columns for 9 items */
    gap: 1.5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03); /* Glass effect */
    backdrop-filter: blur(10px);
    padding: 2.5rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(212, 163, 81, 0.15);
    border-radius: 8px;
    transition: var(--transition-normal);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--gold-primary);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    min-height: 60px;
}

/* Footer / Contact Section */
.footer-contact {
    background-color: rgba(4, 10, 20, 0.95);
    padding: 6rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.feature-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Form Styles */
.form-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row input, .form-row select {
    flex: 1;
    padding: 0.8rem 1rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.form-row input:focus, .form-row select:focus {
    outline: none;
    border-color: var(--gold-primary);
    background-color: rgba(255, 255, 255, 0.05);
}

.form-row input::placeholder {
    color: var(--text-muted);
}

/* Modal and Blur Effect */
#app-container {
    transition: filter 0.3s ease;
}

#app-container.blur {
    filter: blur(8px);
    pointer-events: none;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(4px);
}

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

.modal-content {
    background: var(--bg-darker);
    padding: 3rem;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
    border: 1px solid var(--gold-primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.close-modal:hover {
    color: var(--gold-primary);
    transform: scale(1.1);
}

/* Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    nav ul {
        gap: 1rem;
    }
    nav a {
        font-size: 0.65rem;
    }
    .header-btn {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 992px) {
    header {
        position: absolute !important;
        background-color: transparent !important;
        padding: 1.5rem 0;
    }
    .perfect-logo-img {
        height: 100px;
    }
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .hero-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }
    .hero-title {
        font-size: 3.5rem;
    }
    nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    .hero {
        padding: 13rem 0 4rem;
    }
    .hero-floating-menu {
        width: 100%;
        transform: none !important;
        opacity: 1 !important;
        animation: none !important;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    header {
        position: absolute !important;
        padding: 1rem 0;
        background-color: transparent !important;
    }
    .perfect-logo-img {
        height: 80px; /* Even smaller logo for mobile */
    }
    nav {
        width: 100%;
    }
    nav ul {
        display: flex;
        flex-wrap: nowrap; /* Prevent stacking */
        overflow-x: auto; /* Enable horizontal scrolling */
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        gap: 1rem;
        padding-bottom: 0.5rem;
    }
    nav a {
        font-size: 0.85rem; /* ~14px standard readability */
        padding: 0.5rem 1rem;
    }
    .input-group input, 
    .input-group select, 
    .dynamic-row input, 
    .dynamic-row select {
        font-size: 1rem !important; /* 16px prevents iOS auto-zoom */
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1.8rem;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    .hero-buttons .btn {
        width: 100%;
    }
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    .hero {
        padding: 13rem 0 4rem;
    }
    .hero-floating-menu {
        display: block !important;
        width: 100%;
        transform: none !important;
        opacity: 1 !important;
        animation: none !important;
        margin-top: 2rem;
    }
    .about-us, .services, .footer-contact {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-floating-menu {
        width: 100%;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

/* Site Footer */
.site-footer {
    background-color: rgba(4, 10, 20, 0.95);
    border-top: 1px solid rgba(212, 163, 81, 0.2);
    padding: 4rem 0 2rem;
    color: var(--text-muted);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.company-name {
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.abn {
    font-size: 0.85rem;
}

.footer-contact-info h4, .footer-emails h4 {
    color: var(--text-light);
    font-family: var(--font-serif);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.footer-contact-info p, .footer-emails p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.footer-contact-info i {
    color: var(--gold-primary);
}

.footer-emails a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

/* =========================================================================
   APPLICATION FORM PAGE STYLES
   ========================================================================= */

.application-main {
    padding: 6rem 0;
    position: relative;
    background: transparent;
}

.application-main::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(4, 10, 20, 0.85); /* Semi-transparent dark overlay to keep the form readable */
    z-index: 1;
}

.apply-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.apply-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

/* Progress Bar */
.progress-container {
    position: relative;
    margin-bottom: 3rem;
    padding-top: 1rem;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.progress-steps .step {
    background: var(--bg-darker);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-normal);
}

.progress-steps .step.active {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(212, 163, 81, 0.2);
}

.progress-steps .step.completed {
    background: var(--gold-gradient);
    color: #000;
    border-color: var(--gold-primary);
}

/* Form Styles */
.multi-step-form {
    background: var(--bg-darker);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

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

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

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group.full-width {
    grid-column: 1 / -1;
}

.input-group label {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--gold-light);
    font-weight: 500;
}

.input-group input, 
.input-group select, 
.dynamic-row input, 
.dynamic-row select {
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--text-light);
    font-family: var(--font-sans);
    transition: var(--transition-fast);
}

.input-group input:focus, 
.input-group select:focus, 
.dynamic-row input:focus, 
.dynamic-row select:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* Dynamic Rows */
.dynamic-list {
    margin-bottom: 1rem;
}

.dynamic-row {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 2fr auto;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    background: rgba(255,255,255,0.02);
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.05);
}

#liabilities-list .dynamic-row {
    grid-template-columns: 2fr 2fr 2fr 2fr auto;
}

.remove-btn {
    background: transparent;
    color: #ff4d4d;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
    transition: var(--transition-fast);
}

.remove-btn:hover {
    color: #ff1a1a;
    transform: scale(1.1);
}

.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2.5rem; }

/* Form Nav */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.employment-type-selector {
    display: flex;
    gap: 2rem;
}

.consent-box {
    background: rgba(212, 163, 81, 0.05);
    padding: 1.5rem;
    border-radius: 6px;
    border: 1px solid rgba(212, 163, 81, 0.2);
}

.consent-box p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
}

/* Responsive Form */
@media (max-width: 768px) {
    .form-grid { grid-template-columns: 1fr; }
    .dynamic-row { grid-template-columns: 1fr; }
    #liabilities-list .dynamic-row { grid-template-columns: 1fr; }
    .progress-steps { flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
    .progress-steps .step { flex: 1 1 45%; text-align: center; font-size: 0.75rem; padding: 0.5rem; margin-bottom: 0.5rem; }
    .multi-step-form { padding: 1.5rem; }
    .form-navigation { flex-direction: column; gap: 1rem; text-align: center; }
    .form-navigation .btn { width: 100%; }
    .employment-type-selector { flex-direction: column; gap: 1rem; }
}

/* Custom Success Notification Modal */
.success-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(4, 10, 20, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.success-modal-card {
    background: var(--bg-darker);
    border: 1px solid rgba(212, 163, 81, 0.3);
    border-radius: 16px;
    padding: 3rem 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 40px rgba(212, 163, 81, 0.15);
    transform: scale(0.8) translateY(20px);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.success-modal-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 163, 81, 0.1);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: var(--gold-primary);
    font-size: 2.5rem;
    box-shadow: 0 0 20px rgba(212, 163, 81, 0.3);
    animation: pulseGold 2s infinite;
}

@keyframes pulseGold {
    0% { box-shadow: 0 0 0 0 rgba(212, 163, 81, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(212, 163, 81, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 163, 81, 0); }
}

.success-modal-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.success-modal-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.success-modal-btn {
    background: var(--gold-gradient);
    color: #040a14;
    font-weight: 700;
    padding: 0.8rem 2.5rem;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 163, 81, 0.3);
    display: inline-block;
}

.success-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 163, 81, 0.5);
}

/* Custom Warning Notification Modal */
.warning-modal-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 204, 0, 0.1);
    border: 2px solid #ffcc00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: #ffcc00;
    font-size: 2.5rem;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
    animation: pulseWarning 2s infinite;
}

@keyframes pulseWarning {
    0% { box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(255, 204, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 204, 0, 0); }
}

.warning-modal-btn {
    background: #ffcc00;
    color: #040a14;
    font-weight: 700;
    padding: 0.8rem 2.5rem;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
    display: inline-block;
}

.warning-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.5);
}
