/* Стили для страницы контактов */

/* Секция контактной информации */
.contact-info-section {
    margin-bottom: 4rem;
}

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

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    margin-bottom: 1rem;
    color: var(--p-text-700);
}

.contact-card a {
    color: var(--p-brand);
    text-decoration: none;
    font-weight: bold;
}

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

.contact-card a:focus-visible {
  outline: 2px solid var(--p-brand);
  outline-offset: 2px;
  border-radius: 4px;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--p-text-500);
    font-style: italic;
    display: block;
    margin-top: 0.5rem;
}

.contact-card:hover,
.contact-card:focus-within,
.info-block:hover,
.info-block:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

/* Секция формы обратной связи */
.contact-form-section {
    background: var(--p-bg-alt);
    padding: 3rem 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    color: var(--p-text-700);
    margin-bottom: 0.5rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #bdbdbd;
    opacity: 1;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Дополнительная информация */
.additional-info-section {
    background: var(--p-bg-alt);
    padding: 3rem 0;
    margin-top: 3rem;
}

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

.info-block {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform .25s ease, box-shadow .25s ease;
}

.info-block h3 {
    margin-bottom: 1rem;
    color: var(--p-text-700);
}

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

.info-block li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.info-block li::before {
    content: "•";
    color: var(--p-brand);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Секция "О компании" */
.about-company-section {
    background: white;
    padding: 4rem 0;
    margin: 3rem 0;
}

.about-company-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}

.about-company-image {
    position: relative;
}

.about-company-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: block;
}

.about-company-text h2 {
    color: var(--p-text-700);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--p-text-600);
}

.about-company-text p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--p-text-600);
}

.about-founder {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--p-bg-alt);
    border-radius: 10px;
    border-left: 4px solid var(--p-brand);
}

.about-founder p {
    margin-bottom: 0.5rem;
    color: var(--p-text-700);
}

.about-founder p:last-child {
    margin-bottom: 0;
}

.founder-experience {
    color: var(--p-text-500);
    font-style: italic;
}

/* Секция карты */
.service-area-section {
    background: var(--p-bg-alt);
    padding: 4rem 0;
    margin-top: 3rem;
}

.service-area-section h2 {
    text-align: center;
    color: var(--p-text-700);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.service-area-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--p-text-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.map-container iframe {
    display: block;
    border: none;
}

/* Honeypot поле (скрыто от пользователей, но видно ботам) */
.honeypot {
    position: absolute;
    left: -5000px;
}
