/* Events Page Specific Styles */

/* Events Hero Section */
.events-hero {
    background: linear-gradient(rgba(6, 24, 22, 0.85), rgba(26, 92, 72, 0.85)), 
                url('images/events-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.events-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.3) 100%);
}

.events-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.events-hero h1 {
    font-size: 3.8rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.events-hero p {
    font-size: 1.4rem;
    margin: 0 auto 50px;
    color: #f0f0f0;
    max-width: 700px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 180, 0, 0.2);
    transform: translateY(-3px);
}

.highlight-item i {
    color: #ffb400;
    font-size: 1.2rem;
}

.highlight-item span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Event Spaces Section */
.spaces-section {
    padding: 100px 0;
    background-color: #fff;
}

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

.space-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.space-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #ffb400;
}

.space-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.space-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.space-card:hover .space-image img {
    transform: scale(1.05);
}

.space-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(12, 59, 46, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.space-card:hover .space-overlay {
    opacity: 1;
}

.space-info {
    text-align: center;
    color: white;
    padding: 20px;
}

.space-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #ffb400;
}

.space-info p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.btn-view-space {
    background: linear-gradient(to right, #ffb400, #ff9800);
    color: #0c3b2e;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view-space:hover {
    background: linear-gradient(to right, #ff9800, #ffb400);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 180, 0, 0.3);
}

.space-content {
    padding: 25px;
}

.space-content h3 {
    font-size: 1.6rem;
    color: #0c3b2e;
    margin-bottom: 15px;
}

.space-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.space-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.space-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 0.95rem;
}

.space-features i {
    color: #4caf50;
    font-size: 0.9rem;
}

/* Event Types Section */
.event-types-section {
    padding: 100px 0;
}

.event-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.event-type-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}

.event-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #ffb400;
}

.event-type-card.featured {
    border: 2px solid #ffb400;
    background: linear-gradient(to bottom, #fffaf0, white);
}

.event-type-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0c3b2e 0%, #1a5c48 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.event-type-card:hover .event-type-icon {
    background: linear-gradient(135deg, #ffb400 0%, #ff9800 100%);
    transform: scale(1.1);
}

.event-type-card h3 {
    font-size: 1.6rem;
    color: #0c3b2e;
    margin-bottom: 15px;
}

.event-type-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.event-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.event-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 0.95rem;
}

.event-features i {
    color: #4caf50;
    font-size: 0.9rem;
}

.btn-inquire {
    display: inline-block;
    background: linear-gradient(to right, #0c3b2e, #1a5c48);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-inquire:hover {
    background: linear-gradient(to right, #1a5c48, #0c3b2e);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(12, 59, 46, 0.2);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(to right, #ffb400, #ff9800);
    color: #0c3b2e;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(255, 180, 0, 0.3);
}

/* Packages Section */
.packages-section {
    padding: 100px 0;
    background-color: #fff;
}

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

.package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #0c3b2e;
}

.package-card.featured {
    border-color: #ffb400;
    background: linear-gradient(to bottom, #fffaf0, white);
}

.package-header {
    background: linear-gradient(135deg, #0c3b2e 0%, #1a5c48 100%);
    color: white;
    padding: 30px;
    text-align: center;
    position: relative;
}

.package-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffb400;
}

.per-person {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(to right, #ffb400, #ff9800);
    color: #0c3b2e;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    transform: rotate(10deg);
    box-shadow: 0 5px 15px rgba(255, 180, 0, 0.3);
}

.package-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.package-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 0.95rem;
}

.package-features .fa-check {
    color: #4caf50;
}

.package-features .fa-times {
    color: #ff6b6b;
}

.package-minimum {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.package-minimum p {
    margin: 0;
    color: #0c3b2e;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.package-minimum i {
    color: #ffb400;
}

.btn-select-package {
    background: linear-gradient(to right, #0c3b2e, #1a5c48);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
}

.btn-select-package:hover {
    background: linear-gradient(to right, #1a5c48, #0c3b2e);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(12, 59, 46, 0.2);
}

.custom-package {
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin-top: 50px;
    border: 2px solid #ffb400;
}

.custom-package h3 {
    font-size: 2rem;
    color: #0c3b2e;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.custom-package h3 i {
    color: #ffb400;
}

.custom-package p {
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.btn-custom-inquiry {
    background: linear-gradient(to right, #ffb400, #ff9800);
    color: #0c3b2e;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-custom-inquiry:hover {
    background: linear-gradient(to right, #ff9800, #ffb400);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 180, 0, 0.3);
}

/* Inquiry Form Section */
.inquiry-section {
    padding: 100px 0;
}

.inquiry-form-container {
    max-width: 800px;
    margin: 50px auto 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #f0f0f0;
    max-height: 80vh; /* FIX: Limit form height */
    overflow-y: auto; /* FIX: Allow form to scroll */
}

.event-inquiry-form {
    display: flex;
    flex-direction: column;
}

.form-step {
    padding: 30px;
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.form-step h3 {
    font-size: 1.5rem;
    color: #0c3b2e;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #0c3b2e 0%, #1a5c48 100%);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #0c3b2e;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: #ffb400;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0c3b2e;
    box-shadow: 0 0 0 3px rgba(12, 59, 46, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.checkbox-label:hover {
    background-color: #f0f9f0;
    border-color: #0c3b2e;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    border-color: #0c3b2e;
    background-color: #0c3b2e;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom:after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.review-summary {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #e0e0e0;
}

.summary-section {
    margin-bottom: 25px;
}

.summary-section:last-child {
    margin-bottom: 0;
}

.summary-section h4 {
    font-size: 1.2rem;
    color: #0c3b2e;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-section h4 i {
    color: #ffb400;
}

.summary-content {
    background: white;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #f0f0f0;
}

.summary-content p {
    margin: 8px 0;
    color: #555;
    font-size: 1rem;
}

.summary-content p span {
    font-weight: 600;
    color: #0c3b2e;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
    margin-top: 20px;
}

.btn-prev,
.btn-next,
.btn-submit {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.btn-prev {
    background-color: #f8f9fa;
    border: 2px solid #ddd;
    color: #666;
}

.btn-prev:hover:not(:disabled) {
    background-color: #e9ecef;
    border-color: #ccc;
}

.btn-prev:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-next {
    background: linear-gradient(to right, #0c3b2e, #1a5c48);
    color: white;
}

.btn-next:hover:not(:disabled) {
    background: linear-gradient(to right, #1a5c48, #0c3b2e);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(12, 59, 46, 0.2);
}

.btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-submit {
    background: linear-gradient(to right, #ffb400, #ff9800);
    color: #0c3b2e;
    padding: 12px 40px;
}

.btn-submit:hover:not(:disabled) {
    background: linear-gradient(to right, #ff9800, #ffb400);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 180, 0, 0.3);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.step-indicator {
    display: flex;
    gap: 10px;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-dot.active {
    background-color: #0c3b2e;
    transform: scale(1.2);
}

/* Event Testimonials */
.event-testimonials {
    padding: 100px 0;
    background-color: #fff;
}

.testimonials-slider {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

.testimonial-quote {
    position: relative;
    margin-bottom: 30px;
}

.testimonial-quote i:first-child {
    position: absolute;
    top: -15px;
    left: -15px;
    font-size: 2rem;
    color: #ffb400;
    opacity: 0.3;
}

.testimonial-quote i:last-child {
    position: absolute;
    bottom: -15px;
    right: -15px;
    font-size: 2rem;
    color: #ffb400;
    opacity: 0.3;
}

.testimonial-quote p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
    padding: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffb400;
}

.author-info h4 {
    font-size: 1.3rem;
    color: #0c3b2e;
    margin-bottom: 5px;
}

.author-info p {
    color: #666;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.event-rating {
    display: flex;
    gap: 5px;
}

.event-rating i {
    color: #ffb400;
    font-size: 1.1rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-prev,
.slider-next {
    background: #f8f9fa;
    border: 2px solid #ddd;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    font-size: 1.2rem;
}

.slider-prev:hover,
.slider-next:hover {
    background: #0c3b2e;
    border-color: #0c3b2e;
    color: white;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: #0c3b2e;
    transform: scale(1.2);
}

/* Event FAQ */
.event-faq {
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #0c3b2e;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: white;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #0c3b2e;
    font-weight: 600;
    flex: 1;
}

.faq-question i {
    color: #0c3b2e;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 500px;
    border-top: 1px solid #e0e0e0;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Event CTA */
.event-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0c3b2e 0%, #1a5c48 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.3rem;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.btn-cta {
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
    justify-content: center;
}

.btn-cta.phone {
    background: white;
    color: #0c3b2e;
}

.btn-cta.email {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cta.primary {
    background: linear-gradient(to right, #ffb400, #ff9800);
    color: #0c3b2e;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta.phone:hover {
    background: #f0f0f0;
}

.btn-cta.email:hover {
    background: white;
    color: #0c3b2e;
}

.btn-cta.primary:hover {
    background: linear-gradient(to right, #ff9800, #ffb400);
}

/* Success Modal */
.event-success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    padding: 20px;
}

.success-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: scaleIn 0.3s ease;
    position: relative;
    max-height: 90vh; /* FIX: Limit height */
    overflow-y: auto; /* FIX: Allow scrolling */
}

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.success-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #666;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
    z-index: 2;
}

.success-close:hover {
    color: #ff6b6b;
}

.success-icon {
    font-size: 64px;
    color: #4caf50;
    margin-bottom: 20px;
}

.success-content h3 {
    font-size: 2rem;
    color: #0c3b2e;
    margin-bottom: 15px;
}

.success-content > p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.success-details {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    margin-bottom: 25px;
}

.success-details p {
    margin: 10px 0;
    color: #555;
}

.success-details strong {
    color: #0c3b2e;
    min-width: 160px;
    display: inline-block;
}

.success-next-steps {
    background: #fffaf0;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: left;
    border: 1px solid #ffb400;
}

.success-next-steps h4 {
    font-size: 1.2rem;
    color: #0c3b2e;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.success-next-steps h4 i {
    color: #ffb400;
}

.success-next-steps ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.success-next-steps li {
    margin-bottom: 10px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.success-next-steps li i {
    color: #4caf50;
}

.btn-success {
    background: linear-gradient(to right, #0c3b2e, #1a5c48);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-success:hover {
    background: linear-gradient(to right, #1a5c48, #0c3b2e);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(12, 59, 46, 0.2);
}

/* Space Details Modal - FIXED VERSION */
.space-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    padding: 20px;
}

.space-modal-content {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh; /* FIX: Limit height */
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.space-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #666;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.space-modal-close:hover {
    color: #ff6b6b;
    background: rgba(255, 255, 255, 1);
}

.space-modal-body {
    padding: 40px;
    flex: 1;
    overflow-y: auto; /* FIX: Allow scrolling */
    max-height: calc(90vh - 80px); /* FIX: Calculate available height */
}

/* Space Details Content */
.space-details {
    padding: 10px;
}

.space-details-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 20px;
}

.space-details-header h2 {
    font-size: 2.2rem;
    color: #0c3b2e;
    margin-bottom: 10px;
}

.space-capacity {
    font-size: 1.2rem;
    color: #ff9800;
    font-weight: 600;
    background: #fffaf0;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    border: 1px solid #ffb400;
}

.space-details-image {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.space-details-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.space-details-image:hover img {
    transform: scale(1.05);
}

.space-details-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.space-details-section h3 {
    font-size: 1.4rem;
    color: #0c3b2e;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ffb400;
}

.space-details-section h3 i {
    color: #ffb400;
}

.space-details-section p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.space-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.space-details-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.space-details-section ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 0.95rem;
    padding-left: 5px;
}

.space-details-section ul li i {
    color: #4caf50;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.specifications {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: #f0f9f0;
    border-color: #0c3b2e;
}

.spec-label {
    font-weight: 600;
    color: #0c3b2e;
}

.spec-value {
    font-weight: 600;
    color: #ff9800;
}

.best-for-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.tag {
    background: linear-gradient(to right, #f0f9f0, #e8f5e9);
    color: #2e7d32;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #c8e6c9;
    transition: all 0.3s ease;
}

.tag:hover {
    background: linear-gradient(to right, #e8f5e9, #c8e6c9);
    transform: translateY(-2px);
}

.space-details-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.btn-select-space {
    flex: 1;
    background: linear-gradient(to right, #0c3b2e, #1a5c48);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-select-space:hover {
    background: linear-gradient(to right, #1a5c48, #0c3b2e);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(12, 59, 46, 0.2);
}

.btn-inquire-space {
    flex: 1;
    background: linear-gradient(to right, #ffb400, #ff9800);
    color: #0c3b2e;
    padding: 15px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    text-align: center;
}

.btn-inquire-space:hover {
    background: linear-gradient(to right, #ff9800, #ffb400);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 180, 0, 0.3);
}

/* Toast Notifications */
.toast {
    position: fixed;
    top: 100px;
    right: 30px;
    background: white;
    color: #333;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5000;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    border-left: 4px solid #0c3b2e;
    max-width: 350px;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-success {
    border-left-color: #4caf50;
}

.toast-error {
    border-left-color: #ff6b6b;
}

.toast i {
    font-size: 1.2rem;
}

.toast-success i {
    color: #4caf50;
}

.toast-error i {
    color: #ff6b6b;
}

.toast span {
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Form validation states */
input.valid,
select.valid,
textarea.valid {
    border-color: #4caf50 !important;
    background-color: #f9fff9 !important;
}

input.invalid,
select.invalid,
textarea.invalid {
    border-color: #ff6b6b !important;
    background-color: #fff9f9 !important;
    animation: shake 0.3s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Footer Active Link */
.footer-links a.active {
    color: #ffb400;
    font-weight: 600;
}

.footer-links a.active i {
    color: #ffb400;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .packages-grid,
    .event-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .space-details-grid {
        grid-template-columns: 1fr;
    }
    
    .space-details-actions {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .events-hero h1 {
        font-size: 2.5rem;
    }
    
    .events-hero p {
        font-size: 1.1rem;
    }
    
    .hero-highlights {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .spaces-grid,
    .packages-grid,
    .event-types-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 300px;
    }
    
    .testimonial-content {
        padding: 30px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .btn-prev,
    .btn-next,
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
    
    .step-indicator {
        order: -1;
        margin-bottom: 20px;
    }
    
    .success-content {
        padding: 30px 20px;
    }
    
    .success-details strong {
        min-width: auto;
        display: block;
        margin-bottom: 5px;
    }
    
    .space-modal-body {
        padding: 30px 20px;
    }
    
    .space-details-actions {
        flex-direction: column;
    }
    
    .space-details-image {
        height: 250px;
    }
    
    .space-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .space-modal-body {
        max-height: calc(95vh - 80px);
    }
}

@media (max-width: 576px) {
    .events-hero {
        padding: 100px 0;
    }
    
    .events-hero h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .custom-package {
        padding: 30px 20px;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .success-content h3 {
        font-size: 1.5rem;
    }
    
    .space-details-header h2 {
        font-size: 1.8rem;
    }
    
    .space-details-image {
        height: 200px;
    }
    
    .space-details-section h3 {
        font-size: 1.2rem;
    }
    
    .inquiry-form-container {
        max-height: 70vh;
    }
}

/* Admin Panel Styles */
.admin-panel-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(to right, #0c3b2e, #1a5c48);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.admin-panel-btn:hover {
    background: linear-gradient(to right, #1a5c48, #0c3b2e);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.admin-panel-btn i {
    font-size: 1.2rem;
}

/* Admin Login Modal */
.admin-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    padding: 20px;
}

.login-modal-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: scaleIn 0.3s ease;
}

.login-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #666;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.login-modal-close:hover {
    color: #ff6b6b;
}

.login-icon {
    font-size: 64px;
    color: #0c3b2e;
    margin-bottom: 20px;
}

.login-modal-content h3 {
    font-size: 1.8rem;
    color: #0c3b2e;
    margin-bottom: 10px;
}

.login-modal-content p {
    color: #666;
    margin-bottom: 30px;
}

.login-modal-content .form-group {
    text-align: left;
    margin-bottom: 20px;
}

.login-modal-content .form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #0c3b2e;
    margin-bottom: 8px;
}

.login-modal-content input[type="password"] {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.login-modal-content input[type="password"]:focus {
    outline: none;
    border-color: #0c3b2e;
    box-shadow: 0 0 0 3px rgba(12, 59, 46, 0.1);
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 42px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: #0c3b2e;
}

.btn-login {
    width: 100%;
    background: linear-gradient(to right, #0c3b2e, #1a5c48);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.btn-login:hover {
    background: linear-gradient(to right, #1a5c48, #0c3b2e);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(12, 59, 46, 0.2);
}

.login-info {
    margin-top: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    text-align: left;
    font-size: 0.9rem;
}

.login-info p {
    margin: 5px 0;
    color: #666;
}

.login-info i {
    color: #ffb400;
    margin-right: 8px;
}

.login-info code {
    background: #ffb400;
    color: #0c3b2e;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

/* Admin Panel Modal */
.admin-panel-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    padding: 20px;
}

.admin-modal-content {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.admin-modal-header {
    padding: 25px 30px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #0c3b2e, #1a5c48);
    color: white;
    border-radius: 15px 15px 0 0;
}

.admin-modal-header h3 {
    margin: 0;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.admin-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.admin-modal-body {
    padding: 30px;
    flex: 1;
    overflow-y: auto;
}

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

.stat-card {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #0c3b2e;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0c3b2e;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 1rem;
    font-weight: 600;
}

.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.btn-admin-action {
    padding: 12px 25px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f0f9f0;
    color: #0c3b2e;
    border: 2px solid #0c3b2e;
}

.btn-admin-action:hover {
    background: #0c3b2e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(12, 59, 46, 0.2);
}

.btn-admin-action.danger {
    background: #fff5f5;
    color: #d32f2f;
    border-color: #d32f2f;
}

.btn-admin-action.danger:hover {
    background: #d32f2f;
    color: white;
}

.search-filter {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.search-filter input,
.search-filter select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-filter input:focus,
.search-filter select:focus {
    outline: none;
    border-color: #0c3b2e;
    box-shadow: 0 0 0 3px rgba(12, 59, 46, 0.1);
}

.inquiries-list-container {
    background: #f9f9f9;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.inquiries-list {
    max-height: 400px;
    overflow-y: auto;
}

.inquiry-item {
    background: white;
    border-bottom: 1px solid #f0f0f0;
    padding: 20px;
    transition: all 0.3s ease;
}

.inquiry-item:hover {
    background: #f8fff8;
    transform: translateX(5px);
}

.inquiry-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.inquiry-ref {
    font-size: 0.9rem;
    color: #666;
    background: #f0f0f0;
    padding: 5px 10px;
    border-radius: 4px;
    font-family: monospace;
}

.inquiry-date {
    color: #666;
    font-size: 0.9rem;
}

.inquiry-status {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-pending {
    background: #fff3e0;
    color: #f57c00;
}

.status-contacted {
    background: #e8f5e9;
    color: #388e3c;
}

.status-confirmed {
    background: #e3f2fd;
    color: #1976d2;
}

.status-cancelled {
    background: #ffebee;
    color: #d32f2f;
}

.inquiry-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.inquiry-section {
    margin-bottom: 15px;
}

.inquiry-section h4 {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.inquiry-section p {
    margin: 5px 0;
    font-size: 0.95rem;
}

.inquiry-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-action {
    padding: 8px 15px;
    border-radius: 6px;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-action.contact {
    background: #e8f5e9;
    color: #388e3c;
    border: 1px solid #388e3c;
}

.btn-action.contact:hover {
    background: #388e3c;
    color: white;
}

.btn-action.confirm {
    background: #e3f2fd;
    color: #1976d2;
    border: 1px solid #1976d2;
}

.btn-action.confirm:hover {
    background: #1976d2;
    color: white;
}

.btn-action.cancel {
    background: #ffebee;
    color: #d32f2f;
    border: 1px solid #d32f2f;
}

.btn-action.cancel:hover {
    background: #d32f2f;
    color: white;
}

.btn-action.delete {
    background: #f5f5f5;
    color: #666;
    border: 1px solid #ddd;
}

.btn-action.delete:hover {
    background: #d32f2f;
    color: white;
    border-color: #d32f2f;
}

.no-inquiries {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.no-inquiries i {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-inquiries p {
    font-size: 1.2rem;
}

.admin-modal-footer {
    padding: 20px 30px;
    border-top: 2px solid #f0f0f0;
    background: #f9f9f9;
    border-radius: 0 0 15px 15px;
}

.session-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.session-info p {
    margin: 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

#sessionTimer {
    font-weight: 700;
    color: #0c3b2e;
    font-family: monospace;
    font-size: 1.1rem;
}

.btn-logout {
    background: linear-gradient(to right, #ff6b6b, #ff5252);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-logout:hover {
    background: linear-gradient(to right, #ff5252, #ff6b6b);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
}

/* Change Password Modal */
.change-password-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.change-password-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.change-password-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #666;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.change-password-close:hover {
    color: #ff6b6b;
}

.password-icon {
    font-size: 48px;
    color: #0c3b2e;
    text-align: center;
    margin-bottom: 20px;
}

.change-password-content h3 {
    text-align: center;
    color: #0c3b2e;
    margin-bottom: 30px;
}

.change-password-content .form-group {
    margin-bottom: 20px;
}

.change-password-content label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #0c3b2e;
    margin-bottom: 8px;
}

.change-password-content input[type="password"] {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.change-password-content input[type="password"]:focus {
    outline: none;
    border-color: #0c3b2e;
    box-shadow: 0 0 0 3px rgba(12, 59, 46, 0.1);
}

.password-hint {
    display: block;
    color: #666;
    font-size: 0.85rem;
    margin-top: 5px;
}

.password-strength {
    margin: 20px 0 30px;
}

.strength-meter {
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    margin-bottom: 8px;
    overflow: hidden;
}

.strength-meter::after {
    content: '';
    display: block;
    height: 100%;
    width: 0;
    background: #ff6b6b;
    transition: all 0.3s ease;
}

.strength-text {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

.form-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-cancel {
    flex: 1;
    background: #f8f9fa;
    border: 2px solid #ddd;
    color: #666;
    padding: 12px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    background: #e9ecef;
    border-color: #ccc;
}

.btn-save-password {
    flex: 1;
    background: linear-gradient(to right, #0c3b2e, #1a5c48);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-save-password:hover {
    background: linear-gradient(to right, #1a5c48, #0c3b2e);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(12, 59, 46, 0.2);
}

/* Responsive Styles for Admin Panel */
@media (max-width: 768px) {
    .admin-panel-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .admin-modal-content {
        width: 95%;
    }
    
    .admin-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .search-filter {
        grid-template-columns: 1fr;
    }
    
    .inquiry-content {
        grid-template-columns: 1fr;
    }
    
    .inquiry-actions {
        flex-wrap: wrap;
    }
    
    .session-info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .admin-actions {
        justify-content: center;
    }
    
    .btn-admin-action {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .login-modal-content {
        padding: 30px 20px;
    }
    
    .change-password-content {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .admin-stats {
        grid-template-columns: 1fr;
    }
    
    .admin-panel-btn {
        bottom: 10px;
        right: 10px;
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .admin-panel-btn i {
        font-size: 1rem;
    }
}