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

:root {
    /* Cinematic Color Palette */
    --deep-purple: #6B2E8E;
    --vibrant-magenta: #D946A6;
    --electric-blue: #3B82F6;
    --sunset-orange: #F97316;
    --golden-yellow: #FBBF24;
    --teal-accent: #14B8A6;
    --deep-navy: #0F172A;
    --midnight-blue: #1E293B;
    --charcoal: #334155;
    --soft-white: #F8FAFC;
    --pure-white: #FFFFFF;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #6B2E8E 0%, #D946A6 50%, #F97316 100%);
    --gradient-card: linear-gradient(145deg, rgba(107, 46, 142, 0.1) 0%, rgba(217, 70, 166, 0.1) 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.95) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(107, 46, 142, 0.1);
    --shadow-md: 0 4px 16px rgba(217, 70, 166, 0.2);
    --shadow-lg: 0 8px 32px rgba(107, 46, 142, 0.3);
    --shadow-glow: 0 0 40px rgba(217, 70, 166, 0.4);
}


body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--deep-navy);
    background-color: var(--soft-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar */
.navbar {
    background: var(--gradient-overlay);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(217, 70, 166, 0.2);
}

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

.logo h1 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--vibrant-magenta), var(--sunset-orange), var(--golden-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(217, 70, 166, 0.5);
}

.nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-links span {
    color: var(--soft-white);
    margin-right: 1rem;
    font-weight: 500;
}

/* Notification Icon */
.notification-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.notification-icon:hover {
    transform: scale(1.1);
}

.bell-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(217, 70, 166, 0.5));
}

.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 0.15rem 0.4rem;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.6);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.btn-nav {
    background: transparent;
    color: var(--soft-white);
    border: 2px solid var(--vibrant-magenta);
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(217, 70, 166, 0.4), transparent);
    transition: left 0.5s;
}

.btn-nav:hover::before {
    left: 100%;
}

.btn-nav:hover {
    background: var(--vibrant-magenta);
    border-color: var(--vibrant-magenta);
    box-shadow: 0 0 20px rgba(217, 70, 166, 0.6);
    transform: translateY(-2px);
}

.btn-nav.btn-primary {
    background: linear-gradient(135deg, var(--vibrant-magenta), var(--deep-purple));
    border: none;
    color: var(--pure-white);
}

.btn-nav.btn-primary:hover {
    background: linear-gradient(135deg, var(--deep-purple), var(--vibrant-magenta));
    box-shadow: var(--shadow-glow);
}


/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(217, 70, 166, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(107, 46, 142, 0.3) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--pure-white);
    max-width: 900px;
    padding: 3rem;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-size: 5.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF, #FBBF24, #F97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 80px rgba(251, 191, 36, 0.5);
    letter-spacing: 6px;
    line-height: 1.2;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.6)); }
    50% { filter: drop-shadow(0 0 40px rgba(249, 115, 22, 0.8)); }
}

.hero-subtitle {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 0.9rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--vibrant-magenta), var(--sunset-orange));
    color: var(--pure-white);
    box-shadow: 0 4px 20px rgba(217, 70, 166, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--pure-white);
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--deep-purple);
    border-color: var(--pure-white);
    transform: translateY(-3px) scale(1.05);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.15rem;
}


/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--soft-white) 0%, rgba(217, 70, 166, 0.05) 100%);
    position: relative;
}

.about h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--deep-purple), var(--vibrant-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.about-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--pure-white);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(217, 70, 166, 0.1);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--deep-purple), var(--vibrant-magenta), var(--sunset-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--vibrant-magenta);
}

.about-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.about-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--deep-purple);
    font-weight: 700;
}

.about-card p {
    color: var(--charcoal);
    line-height: 1.8;
    font-size: 1rem;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--gradient-overlay);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(217, 70, 166, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.services h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    font-weight: 800;
    color: var(--pure-white);
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(217, 70, 166, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(217, 70, 166, 0.2), transparent);
    transition: left 0.6s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    background: rgba(217, 70, 166, 0.1);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 40px rgba(217, 70, 166, 0.3);
    border-color: var(--vibrant-magenta);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--golden-yellow), var(--sunset-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.service-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1rem;
}

/* Call to Action */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--teal-accent) 0%, var(--electric-blue) 50%, var(--deep-purple) 100%);
    text-align: center;
    color: var(--pure-white);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -250px;
    right: -250px;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.welcome-message {
    font-size: 1.4rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    display: inline-block;
    margin-top: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: var(--deep-navy);
    padding: 2.5rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(217, 70, 166, 0.3);
}

.footer p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.footer p:first-child {
    font-weight: 600;
    color: var(--pure-white);
}


/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
    padding: 20px 0;
}

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

.modal-content {
    background: var(--pure-white);
    margin: 2rem auto;
    padding: 0;
    border: none;
    width: 90%;
    max-width: 550px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(107, 46, 142, 0.5);
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

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

.modal-header {
    background: var(--gradient-hero);
    padding: 2rem 2.5rem;
    text-align: center;
    position: relative;
    border-bottom: none;
}

.modal-header h2 {
    color: var(--pure-white);
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    padding: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.close {
    color: var(--pure-white);
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    line-height: 1;
    padding: 0;
}

.close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) rotate(90deg);
}

.modal-body {
    padding: 2rem 2.5rem 2.5rem 2.5rem;
}

/* Form Sections */
.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(107, 46, 142, 0.1);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 1.5rem;
    padding-bottom: 0;
}

.modal-content h3 {
    color: var(--deep-purple);
    margin: 0 0 1.2rem 0;
    padding: 0;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.optional-badge {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--charcoal);
    background: rgba(107, 46, 142, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
}

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

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--deep-navy);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid rgba(107, 46, 142, 0.15);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--soft-white);
    font-family: inherit;
    color: var(--deep-navy);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(51, 65, 85, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--vibrant-magenta);
    background: var(--pure-white);
    box-shadow: 0 0 0 4px rgba(217, 70, 166, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.5;
}

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

/* Checkbox Styling */
.checkbox-group {
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: var(--deep-navy);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.6rem;
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: var(--vibrant-magenta);
}

.checkbox-label span {
    font-size: 0.9rem;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--vibrant-magenta), var(--sunset-orange));
    color: var(--pure-white);
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(217, 70, 166, 0.3);
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 70, 166, 0.5);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    background: var(--charcoal);
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
}

/* Error and Success Messages */
.error-message {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: var(--pure-white);
    padding: 0.9rem 1.2rem;
    border-radius: 10px;
    margin-bottom: 1.2rem;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    display: none;
    line-height: 1.5;
}

.error-message.show {
    display: block;
}

.success-message {
    background: linear-gradient(135deg, #10B981, #059669);
    color: var(--pure-white);
    padding: 0.9rem 1.2rem;
    border-radius: 10px;
    margin-bottom: 1.2rem;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    line-height: 1.5;
}

/* Switch Modal Link */
.switch-modal {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(107, 46, 142, 0.1);
}

.switch-modal p {
    margin: 0;
    color: var(--charcoal);
    font-size: 0.9rem;
}

.switch-modal a {
    color: var(--vibrant-magenta);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.switch-modal a:hover {
    color: var(--deep-purple);
    text-decoration: underline;
    transform: translateX(2px);
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .about h2,
    .services h2,
    .cta h2 {
        font-size: 2.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .modal-content {
        margin: 1rem auto;
        width: 95%;
        max-width: 100%;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .form-section {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .about-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .modal-content {
        margin: 0.5rem auto;
        width: 98%;
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 1.2rem 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 1.2rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem 0.9rem;
        font-size: 0.9rem;
    }
    
    .btn-submit {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    .close {
        width: 32px;
        height: 32px;
        font-size: 1.5rem;
        right: 1rem;
    }
}

/* Select2 Custom Styles */
.select2-container--default .select2-selection--multiple {
    min-height: 38px !important;
    max-height: 80px;
    overflow-y: auto;
    border: 1px solid #cbd5e1 !important;
    border-radius: 6px !important;
    padding: 2px 4px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding: 0 !important;
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: var(--deep-purple) !important;
    border: none !important;
    color: white !important;
    padding: 1px 6px !important;
    margin: 1px 2px !important;
    border-radius: 3px !important;
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
    height: auto !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: white !important;
    margin-right: 3px !important;
    font-size: 0.75rem !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #fca5a5 !important;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: var(--vibrant-magenta) !important;
}

.select2-container--default .select2-selection--multiple .select2-search__field {
    margin: 1px 2px !important;
    padding: 0 !important;
    height: 24px !important;
    line-height: 24px !important;
    font-size: 0.9rem !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--deep-purple) !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
    margin-top: 4px !important;
}
