/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

/* Header Styles */
.header {
    background-color: #e8e8e8;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 18px;
}

.nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.btn-search {
    background-color: #10b981;
    color: white !important;
    padding: 8px 16px;
    border-radius: 4px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 12px;
    border-radius: 8px;
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
}

.hero-section h1 {
    font-size: 32px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-section h1::before {
    /* content: "🎉"; */
    font-size: 28px;
}

.hero-section p {
    font-size: 16px;
    opacity: 0.95;
}

/* Progress Indicator */
.progress-indicator {
    display: flex;
    justify-content: space-between;
    max-width: 600px;
    margin: 5px auto;
    position: relative;
}

.progress-indicator::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

.step.active .step-circle,
.step.completed .step-circle {
    background-color: #10b981;
    color: white;
}

.step span {
    font-size: 14px;
    color: #666;
}

.step.active span {
    color: #10b981;
    font-weight: 600;
}

/* Form Styles */
.event-form {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto 40px;
}

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

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

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

.form-section {
    padding: 20px 112px;
}

.form-section h2 {
    color: #10b981;
    font-size: 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon {
    font-size: 24px;
}

.form-group {
    margin-bottom: 25px;
    background: #e5e7eb3d;
    padding: 11px;
    border-radius: 9px;
    border: 2px solid lightgrey;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.required {
    color: #e74c3c;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="url"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #dddddd99;
    border-radius: 9px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10b981;
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.char-count {
    text-align: right;
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.inline-fields {
    display: grid;
    /* grid-template-columns: 2fr 1fr 1fr; */
    gap: 10px;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 13px;
}

/* Radio Group */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 2px solid #dddddd99;
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.3s ease;
    
}

.radio-label:hover {
    background-color: #f9f9f9;
}

.radio-label input[type="radio"] {
    cursor: pointer;
}

.radio-label input[type="radio"]:checked + .radio-label {
    border-color: #10b981;
    background-color: #f0fdf4;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox-group label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-group a {
    color: #10b981;
    text-decoration: underline;
}

/* Info Box */
.info-box {
    background-color: #d9f9e6;
    padding: 20px;
    border-radius: 6px;
    margin: 20px 0;
    border-left: 4px solid #10b981;
}

.info-box h4 {
    color: #059669;
    margin-bottom: 12px;
    font-size: 16px;
}

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

.info-box ul li {
    padding: 5px 0;
    color: #333;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.form-note {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.form-note input[type="checkbox"] {
    margin-top: 3px;
}

.form-note label {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.form-note a {
    color: #10b981;
    text-decoration: underline;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: #10b981;
    color: white;
}

.btn-primary:hover {
    background-color: #059669;
}

.btn-secondary {
    background-color: #6b7280;
    color: white;
}

.btn-secondary:hover {
    background-color: #4b5563;
}

.btn-success {
    background-color: #10b981;
    color: white;
}

.btn-success:hover {
    background-color: #059669;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    animation: slideUp 0.3s ease;
}

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

.modal-icon {
    width: 80px;
    height: 80px;
    background-color: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 20px;
}

.modal-content h2 {
    color: #10b981;
    margin-bottom: 10px;
    font-size: 24px;
}

.modal-content > p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.modal-body {
    background-color: #d9f9e6;
    padding: 20px;
    border-radius: 6px;
    margin: 20px 0;
    text-align: left;
}

.modal-body p {
    font-weight: 600;
    margin-bottom: 10px;
}

.modal-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.modal-body ul li {
    padding: 8px 0;
    color: #333;
}

.modal-body .btn {
    width: 100%;
    margin-top: 10px;
}

/* Footer Styles */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
}

.footer-section a:hover {
    color: #10b981;
}

.footer-newsletter {
    background-color: #374151;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.footer-newsletter h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-newsletter p {
    color: #9ca3af;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    /* border: 1px solid #4b5563; */
    border-radius: 4px;
    /* background-color: #1f2937; */
    color: white;
}

.newsletter-form input::placeholder {
    color: #6b7280;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom .logo {
    justify-content: center;
    margin-bottom: 15px;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
    margin: 10px 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    color: #9ca3af;
    font-size: 14px;
    text-decoration: none;
}

.social-links a:hover {
    color: #10b981;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 24px;
    }

    .inline-fields {
        grid-template-columns: 1fr;
    }

    .form-section {
        padding: 20px;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }

    .progress-indicator {
        max-width: 100%;
    }

    .step span {
        font-size: 12px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .header .container {
        flex-direction: column;
        gap: 15px;
    }
}
/* =============================================================== */
/* Newsletter Section */
.newsletter-section {
    background:linear-gradient(90deg, #014994 0%, #45b876 100%);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    width: 80%;
    margin: auto;
}

.newsletter-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-title {
    font-size: 24px;
    margin: 0;
    font-weight: bold;
}

.newsletter-text {
    font-size: 14px;
    margin: 0;
    opacity: 0.95;
    line-height: 1.5;
}

.newsletter-right {
    display: flex;
    justify-content: flex-end;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    width: 100%;
        background: white;
    padding: 4px;
    border-radius: 5px;
}

.email-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
}

.email-input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.subscribe-btn {
    padding: 12px 24px;
    background:#2abf60;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: #0f4028;
}

/* Responsive Design */
@media (max-width: 768px) {
    .newsletter-section {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .newsletter-right {
        justify-content: stretch;
    }

    .newsletter-title {
        font-size: 20px;
    }

    .newsletter-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .newsletter-section {
        padding: 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .subscribe-btn {
        width: 100%;
    }

    .newsletter-title {
        font-size: 18px;
    }
}