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

body {
    font-family: 'Inter', sans-serif;
    background: #f5f8fa;
    min-height: 100vh;
    padding: 20px;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

/* Header */
.header {
    background: #ff6b35;
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.header-content i {
    font-size: 48px;
}

.header h1 {
    font-size: 2.2rem;
    font-weight: 700;
}

.header-description {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.header-description p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    opacity: 0.98;
}

.header-description p:last-child {
    margin-bottom: 0;
}

.header-description strong {
    font-weight: 600;
    font-size: 1.05rem;
}

.header-description ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.header-description ul li {
    padding: 8px 0 8px 30px;
    position: relative;
    line-height: 1.6;
}

.header-description ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
    color: #fff;
}

/* Main Content */
.main-content {
    padding: 40px 30px;
}

/* Intro Section */
.intro-section {
    text-align: center;
    margin-bottom: 40px;
}

.intro-section h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.intro-section h2 i {
    color: #00a99d;
}

.intro-section > p {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits */
.benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: #e6f7f6;
    border-radius: 12px;
    min-width: 150px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 32px;
    color: #ff6b35;
}

.benefit-item span {
    font-weight: 500;
    color: #333;
    text-align: center;
}

/* Booking Section */
.booking-section {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.booking-form h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 20px;
    margin-top: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #00a99d;
}

.booking-form h3:first-child {
    margin-top: 0;
}

/* Form Groups */
.form-group {
    margin-bottom: 25px;
}

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

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

.form-group label i {
    color: #00a99d;
    margin-right: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00a99d;
    box-shadow: 0 0 0 3px rgba(0, 169, 157, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 16px;
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
    background: #e55a28;
}

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

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Contact Section */
.contact-section {
    background: #e6f7f6;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.contact-section h3 {
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-section h3 i {
    color: #00a99d;
}

.contact-section > p {
    color: #666;
    margin-bottom: 20px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
}

.contact-item i {
    color: #00a99d;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.contact-item a {
    color: #00a99d;
    text-decoration: none;
    font-weight: 500;
}

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

/* Footer */
.footer {
    background: #004d47;
    color: white;
    padding: 25px;
    text-align: center;
}

.footer p {
    margin-bottom: 5px;
}

.footer-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Modal */
.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;
}

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

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    text-align: center;
    animation: slideDown 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.modal-icon {
    font-size: 64px;
    color: #10b981;
    margin-bottom: 20px;
}

.modal-content h2 {
    color: #333;
    margin-bottom: 15px;
}

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

.booking-reference {
    background: #f0fdf4;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border: 2px solid #10b981;
}

.booking-reference strong {
    color: #333;
}

.booking-reference span {
    color: #00a99d;
    font-weight: 600;
    font-family: monospace;
    font-size: 1.1rem;
}

.modal-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.3s ease;
}

.modal-btn:hover {
    transform: translateY(-2px);
    background: #e55a28;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .container {
        border-radius: 15px;
    }

    .header {
        padding: 30px 20px;
    }

    .header h1 {
        font-size: 1.6rem;
    }

    .header-content i {
        font-size: 36px;
    }

    .header-description {
        padding: 20px;
        text-align: left;
    }

    .header-description p {
        font-size: 0.95rem;
    }

    .header-description ul li {
        font-size: 0.95rem;
        padding: 6px 0 6px 25px;
    }

    .main-content {
        padding: 30px 20px;
    }

    .intro-section h2 {
        font-size: 1.5rem;
    }

    .benefits {
        gap: 15px;
    }

    .benefit-item {
        min-width: 120px;
        padding: 15px;
    }

    .booking-section {
        padding: 25px 20px;
    }

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

    .modal-content {
        margin: 20% auto;
        padding: 30px 20px;
        max-width: 90%;
    }

    .contact-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.4rem;
    }

    .header-content {
        flex-direction: column;
        gap: 10px;
    }

    .header-description {
        padding: 15px;
    }

    .header-description p {
        font-size: 0.9rem;
    }

    .header-description ul li {
        font-size: 0.9rem;
        padding: 5px 0 5px 22px;
    }

    .benefits {
        flex-direction: column;
        align-items: stretch;
    }

    .benefit-item {
        min-width: auto;
    }
}
