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

/* Remove underlines from all links */
a {
    text-decoration: none;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #F27127 0%, #D65A1A 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: none;
    padding: 0 40px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.logo img {
    width: 100px;
    height: 100px;
    /* object-fit: contain; */
    background: white;
    border-radius: 20%;
    padding: 15px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: white;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #FFD54F;
}

.header-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-link:hover {
    color: #FFD54F;
    background: rgba(255,255,255,0.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle:hover {
    color: #FFD54F;
}

/* Mobile Navigation */
.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #F27127 0%, #D65A1A 100%);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-top: 1px solid rgba(255,255,255,0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav .nav-link {
    display: block;
    padding: 1rem 2rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: background-color 0.3s ease, padding-left 0.3s ease;
}

.mobile-nav .nav-link:last-child {
    border-bottom: none;
}

.mobile-nav .nav-link:hover {
    background: rgba(255,255,255,0.1);
    padding-left: 2.5rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.5);
    width: 120%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 40px;
    margin-left: -10%;
}

.hero-content {
    color: white;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 0;
    font-weight: 300;
}

.highlight {
    color: #F27127;
    font-weight: 600;
}

.cta-button {
    background: linear-gradient(135deg, #F27127 0%, #D65A1A 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: 600;
    width: fit-content;
    display: inline-block;
    align-self: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(242, 113, 39, 0.3);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: white;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: #F27127;
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

.service-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-card li {
    padding: 0.3rem 0;
    color: #666;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #F27127;
}

.travel-info {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: #F37E36FF;
    border-radius: 10px;
}

/* Registration Section */
.registration {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F27127 0%, #D65A1A 100%);
    color: white;
    text-align: center;
}

.registration h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.registration p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #F27127;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    text-align: center;
}

.contact-overlay {
    background: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.contact h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.contact p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-icons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.contact-icon {
    color: white;
    transition: color 0.3s ease, transform 0.3s ease;
}

.contact-icon:hover {
    color: #F27127;
    transform: scale(1.1);
}

.form-button {
    background: linear-gradient(135deg, #F27127 0%, #D65A1A 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin: 1rem 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(242, 113, 39, 0.3);
}

.contact-footer {
    color: white;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: #f8f9fa;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.faq-item {
    background: white;
    margin-bottom: 1rem;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #F27127;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #666;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.scroll-top {
    background: #F27127;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.scroll-top:hover {
    transform: translateY(-2px);
}

.footer-social {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer-social a {
    color: white;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #F27127;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-copyright {
    color: #95a5a6;
    font-size: 0.9rem;
}

.footer-copyright p {
    margin-bottom: 0.5rem;
}

/* Form Section Styles */
.form-section {
    padding: 8rem 0 4rem;
    min-height: 100vh;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-container h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Form Styles */
.contact-form {
    margin-bottom: 3rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F27127;
    box-shadow: 0 0 0 3px rgba(242, 113, 39, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox Styles */
.checkbox-group {
    margin-bottom: 1.5rem;
}

.form-group .checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 0;
}

.checkbox-text {
    flex: 1;
    margin-top: 0;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    opacity: 0;
    position: absolute;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 0;
}

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

.checkbox-label input[type="checkbox"]:checked + .checkmark:after {
    content: "✓";
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.checkbox-label a {
    color: #F27127;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: none;
}

/* Submit Button */
.submit-button {
    background: linear-gradient(135deg, #F27127 0%, #D65A1A 100%);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem auto 0;
    font-family: inherit;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(242, 113, 39, 0.3);
}

/* Contact Info */
.contact-info {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

.contact-info h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.contact-methods {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #F27127;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 0.75rem 1.5rem;
    border: 2px solid #F27127;
    border-radius: 50px;
}

.contact-method:hover {
    background: #F27127;
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header .container {
        padding: 0 30px;
    }

    .header-left {
        gap: 1.5rem;
    }

    .social-icons {
        gap: 0.75rem;
    }

    .header-nav {
        gap: 1.5rem;
    }

    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.95rem;
    }

    /* Hero Section Tablet Responsive */
    .hero-overlay {
        padding-right: 30px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .header .container {
        padding: 0 20px;
        position: relative;
    }

    .header-left {
        gap: 1rem;
    }

    .social-icons {
        display: none;
    }

    .header-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo img {
        width: 50px;
        height: 50px;
    }

    /* Hero Section Mobile Responsive */
    .hero {
        background-attachment: scroll;
        min-height: 100vh;
    }

    .hero-overlay {
        width: 100%;
        margin-left: 0;
        padding: 0 20px;
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        gap: 1.5rem;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-content h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-options {
        flex-direction: column;
        align-items: center;
    }

    .contact-icons {
        gap: 1rem;
    }

    .footer-social {
        gap: 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .form-container {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
    }

    .form-container h1 {
        font-size: 2rem;
    }

    .contact-methods {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .submit-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header .container {
        padding: 0 15px;
    }

    .header-left {
        gap: 0.5rem;
    }

    .logo {
        font-size: 1rem;
    }

    .logo img {
        width: 45px;
        height: 45px;
    }

    .mobile-nav .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    /* Hero Section Small Mobile Responsive */
    .hero-overlay {
        padding: 0 15px;
    }

    .hero-content {
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.1;
    }

    .hero-content h2 {
        font-size: 1.4rem;
        line-height: 1.2;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }

    .form-container {
        margin: 0 0.5rem;
        padding: 1.5rem 1rem;
    }

    .form-container h1 {
        font-size: 1.8rem;
    }

    .contact-method {
        width: 100%;
        justify-content: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Add padding top to account for fixed header */
section {
    scroll-margin-top: 100px;
}