/* HERO */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 60px 80px;
    position: relative;
    overflow: hidden;
    background: url('../assets/hero.png') top center/cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white-85);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 20px;
    color: var(--color-dark);
    animation: fadeInUp 0.8s ease;
}

.hero .subtitle {
    font-size: 24px;
    color: var(--color-gray-700);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero .tagline {
    font-size: 18px;
    color: var(--color-gray-600);
    margin-bottom: 0;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* CONTACT SECTION */
.contact {
    padding: 120px 60px;
    background: var(--gradient-bg);
}

.contact-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

/* CONTACT INFO */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 120px;
}

.info-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 32px;
    border: 2px solid var(--color-gray-200);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--color-primary);
}

.info-icon {
    font-size: 32px;
    color: var(--color-primary);
    margin-bottom: 16px;
    display: block;
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.info-card p {
    color: var(--color-gray-700);
    margin-bottom: 4px;
    font-size: 16px;
}

.info-card a {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 18px;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--color-primary-light);
}

.info-detail {
    font-size: 14px !important;
    color: var(--color-gray-600) !important;
}

.info-highlight {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 36px 32px;
    color: white;
    margin-top: 8px;
}

.info-highlight h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
}

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

.info-highlight li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--color-white-90);
}

.info-highlight i {
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

/* CONTACT FORM */
.contact-form-container {
    background: var(--color-white);
    border-radius: 24px;
    padding: 50px;
    border: 2px solid var(--color-gray-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.form-header p {
    color: var(--color-gray-600);
    font-size: 16px;
    line-height: 1.6;
}

.form-header a {
    color: var(--color-primary);
    font-weight: 600;
    transition: color 0.3s ease;
}

.form-header a:hover {
    color: var(--color-primary-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--color-gray-200);
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--color-gray-100);
    color: var(--color-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(28, 36, 75, 0.08);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231C244B' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

.btn-primary {
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--gradient-primary);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 30px var(--color-primary-30);
    margin-top: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px var(--color-primary-30);
}

.btn-primary i {
    font-size: 16px;
}

.form-note {
    color: var(--color-gray-600);
    font-size: 14px;
    margin-top: -8px;
}

.form-message {
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    animation: slideIn 0.3s ease;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

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

/* FAQ SECTION */
.faq {
    padding: 120px 60px;
    background: var(--color-white);
}

.section-header {
    max-width: 600px;
    margin: 0 auto 80px;
    text-align: center;
}

.section-title {
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--color-dark);
    line-height: 1.1;
}

.section-subtitle {
    color: var(--color-gray-600);
    font-size: 20px;
    line-height: 1.6;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--color-gray-100);
    border: 2px solid var(--color-gray-200);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-primary);
}

.faq-item.active {
    background: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: 0 8px 24px rgba(28, 36, 75, 0.1);
}

.faq-question {
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 18px;
    color: var(--color-dark);
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-question i {
    font-size: 14px;
    color: var(--color-primary);
    transition: transform 0.3s ease;
    margin-left: 16px;
    flex-shrink: 0;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 28px 24px;
}

.faq-answer p {
    color: var(--color-gray-700);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-info {
        position: static;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 30px 60px;
        min-height: 50vh;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero .subtitle {
        font-size: 20px;
    }

    .hero .tagline {
        font-size: 16px;
    }

    .contact {
        padding: 60px 30px;
    }

    .contact-form-container {
        padding: 30px 24px;
    }

    .form-header h2 {
        font-size: 26px;
    }

    .faq {
        padding: 60px 30px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .faq-answer p {
        font-size: 15px;
    }
}
