/* Hero Section */

.hero {
    margin-top: 70px;
    padding: 80px 5% 60px;
    background: linear-gradient(135deg, #ffffff 0%, #f7fffe 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(53, 209, 209, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-content .highlight {
    color: #35D1D1;
}

.hero-content p {
    font-size: 18px;
    color: #718096;
    margin-bottom: 0;
    line-height: 1.7;
}


/* Contact Section */

.contact-section {
    padding: 80px 5%;
    background: white;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}


/* Contact Info */

.contact-info {
    position: sticky;
    top: 100px;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
    line-height: 1.2;
}

.contact-info p {
    font-size: 16px;
    color: #718096;
    margin-bottom: 32px;
    line-height: 1.7;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: white;
    border: 2px solid rgba(53, 209, 209, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
    display: flex;
    gap: 16px;
    align-items: start;
}

.info-card:hover {
    border-color: #35D1D1;
    box-shadow: 0 8px 24px rgba(53, 209, 209, 0.15);
    transform: translateY(-2px);
}

.info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(53, 209, 209, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.info-content h3 {
    font-size: 18px;
    color: #1a202c;
    font-weight: 600;
    margin-bottom: 6px;
}

.info-content p {
    font-size: 15px;
    color: #718096;
    margin-bottom: 0;
}

.info-content a {
    color: #35D1D1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.info-content a:hover {
    color: #2bb8b8;
    text-decoration: underline;
}




/* Contact Form */

.contact-form-wrapper {
    background: white;
    border: 2px solid rgba(53, 209, 209, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(53, 209, 209, 0.08);
}

.form-header {
    margin-bottom: 32px;
}

.form-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.form-header p {
    font-size: 15px;
    color: #718096;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
}

.form-group label span {
    color: #35D1D1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #35D1D1;
    box-shadow: 0 0 0 4px rgba(53, 209, 209, 0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #35D1D1 0%, #2bb8b8 100%);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(53, 209, 209, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}


/* FAQ Section */

.faq-section {
    padding: 80px 5%;
    background: #f7fffe;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

.faq-header p {
    font-size: 16px;
    color: #718096;
}

.faq-item {
    background: white;
    border: 2px solid rgba(53, 209, 209, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #35D1D1;
}

.faq-question {
    padding: 24px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(53, 209, 209, 0.02);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin: 0;
}

.faq-icon {
    font-size: 24px;
    color: #35D1D1;
    transition: transform 0.3s;
    min-width: 24px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 28px 24px;
}

.faq-answer p {
    font-size: 15px;
    color: #718096;
    line-height: 1.7;
    margin: 0;
}


/* Map Section */

.map-section {
    padding: 80px 5%;
    background: white;
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
}

.map-header {
    text-align: center;
    margin-bottom: 40px;
}

.map-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

.map-header p {
    font-size: 16px;
    color: #718096;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(53, 209, 209, 0.1);
    box-shadow: 0 10px 40px rgba(53, 209, 209, 0.1);
    height: 450px;
    background: linear-gradient(135deg, #e0f7f7 0%, #d1f2f2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-placeholder {
    text-align: center;
    color: #718096;
}

.map-placeholder-icon {
    font-size: 80px;
    margin-bottom: 16px;
}

.map-placeholder h3 {
    font-size: 24px;
    color: #1a202c;
    margin-bottom: 8px;
}

.map-placeholder p {
    font-size: 16px;
    color: #718096;
}


/* Responsive */

@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-info {
        position: static;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero {
        padding: 60px 5% 40px;
    }
    .hero-content h1 {
        font-size: 36px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .contact-section,
    .faq-section,
    .map-section {
        padding: 60px 5%;
    }
    .contact-info h2,
    .faq-header h2,
    .map-header h2 {
        font-size: 28px;
    }
    .contact-form-wrapper {
        padding: 28px 24px;
    }
    .form-header h3 {
        font-size: 24px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .logo {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
    .map-wrapper {
        height: 300px;
    }
    .map-placeholder-icon {
        font-size: 60px;
    }
}