.hero-contact {
    position: relative;
    height: 400px;
    display: flex;
    align-items: flex-start;
    padding-top: 70px;
    overflow: hidden;
}

.hero-contact::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
    pointer-events: none;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-contact h1 {
    color: #fff;
    font-size: 72px;
    font-weight: 500;
    z-index: 1;
}

.hero-contact .container {
    margin: 0;
}

.contact-info-section {
  padding: 80px 0 64px;
}
 
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
}
 
.contact-info-left h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  color: #1a1a1a;
}
 
.contact-info-right p {
  margin: 0 0 32px;
  font-size: 1rem;
  line-height: 1.7;
  color: #1a1a1a;
}
 
.contact-methods {
  display: flex;
  flex-direction: column;
}
 
.contact-method-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #000000;
  text-decoration: none;
  color: #1a1a1a;
}
 
.contact-method-item span {
  font-size: 1.5rem;
  font-weight: 600;
}

.faq-section {
    padding: 24px 0 80px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start;
}

.faq-title-wrap .section-title {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.faq-list {
    border-top: 1px solid #d8d8dc;
}

.faq-item {
    border-bottom: 1px solid #d8d8dc;
}

.faq-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    padding: 22px 4px;
    font-size: 15.5px;
    font-weight: 400;
    color: #17171a;
    text-align: left;
    cursor: pointer;
}

.faq-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #d8d8dc;
    font-size: 15px;
    font-weight: 400;
    color: #7a7a7f;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.faq-item.active .faq-toggle {
    color: #17171a;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: #17171a;
    color: #fff;
    border-color: #17171a;
}

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

.faq-answer p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #7a7a7f;
    margin: 0 0 22px;
    padding-right: 40px;
}

.pricing-cta-section {
    padding: 40px 0 80px;
}

.pricing-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid #e6e6e9;
    padding: 32px 36px;
}

.pricing-cta-content h3 {
    font-size: 22px;
    font-weight: 500;
    color: #17171a;
    margin: 0 0 6px;
}

.pricing-cta-content p {
    font-size: 14px;
    color: #7a7a7f;
    margin: 0;
}

.pricing-cta-arrow {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ececec;
    color: #17171a;
    font-size: 14px;
    font-weight: 500;
    padding: 14px 24px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}

.pricing-cta-arrow:hover {
    background: #e0e0e0;
}

.contact-form-section {
    padding: 60px 0 100px;
    background: transparent;
}

.contact-card-form {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 50px;
}

.contact-left-form {
    flex: 1;
}

.contact-left-form h2 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 10px;
}

.contact-right-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-right-form input,
.contact-right-form select,
.contact-right-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    font-family: inherit;
    background: #fff;
    color: #333;
}

.contact-right-form select {
    appearance: auto;
    cursor: pointer;
}

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

.btn-submit {
    background: #555;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: var(--primary-black);
}

@media (max-width: 768px) {
    .hero-contact h1 {
        font-size: 45px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-card-form {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }
}
