
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Хедер страницы */
.page-header {
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.glow-title {
    /* font-family: 'Space Grotesk', sans-serif; */
    font-size: 4.5rem;
    font-weight: 700;

    color:white;
    text-shadow: 1px 1px 1px #474747;

    /* background: linear-gradient(90deg, #00f5ff, #ff00aa, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    animation: gradientShift 8s linear infinite;
    margin-bottom: 16px;
    letter-spacing: -2px; */
}

.subtitle {
    font-size: 1.35rem;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Основной контент */
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 120px;
}

/* Блок контактов */
.contact-block {
    background: linear-gradient(
  135deg,
  #c0c0c2 0%,
  #a6a9ac 20%,
  #8c9093 40%,
  #a6a9ac 60%,
  #b9bcbf 80%,
  #cccccc 90%,
  #adaeb2 100%
  
);
    border-radius: 24px;
    padding: 52px 48px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 245, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-block::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,245,255,0.08) 0%, transparent 70%);
    opacity: 0.6;
}

.block-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary);
    text-shadow: 1px 1px 1px #474747;
    display: flex;
    align-items: center;
    gap: 16px;
}

.block-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.icon-circle {
    width: 56px;
    height: 56px;
    background: rgba(0, 245, 255, 0.1);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.6rem;
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.contact-item:hover .icon-circle {
    transform: scale(1.1) rotate(8deg);
    background: rgba(0, 245, 255, 0.2);
}

.contact-info h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: #fff;
}

.contact-info a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.05rem;
}

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

/* Блок с картой */
.map-block {
    background: var(--card);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 245, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 245, 255, 0.08);
    position: relative;
    height: 520px;
}

.map-container {
    width: 100%;
    height: 100%;
    background: #0a0a0f;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #111118 0%, #1a1a24 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--text-muted);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.map-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(transparent 50%, rgba(0,245,255,0.03) 50%),
        linear-gradient(90deg, transparent 50%, rgba(0,245,255,0.03) 50%);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

.map-pin {
    width: 28px;
    height: 28px;
    background: var(--accent);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 40px #ff00aa,
                0 0 80px #ff00aa;
    animation: pulse 2s infinite;
}

.map-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.map-label {
    margin-top: 24px;
    text-align: center;
}

/* Форма обратной связи */
.form-section {
    margin-top: 100px;
}

.form-title {
    /* font-family: 'Space Grotesk', sans-serif; */
    color:white;
    text-shadow: 1px 1px 1px #474747;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
    /* background: linear-gradient(90deg, #fff, var(--primary)); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
}

.form-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.25rem;
    max-width: 580px;
    margin: 0 auto 60px;
}

.contact-form {
    background: linear-gradient(
  135deg,
  #c0c0c2 0%,
  #a6a9ac 20%,
  #8c9093 40%,
  #a6a9ac 60%,
  #b9bcbf 80%,
  #cccccc 90%,
  #adaeb2 100%
  
);
    border-radius: 24px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 820px;
    margin: 0 auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.form-group {
    margin-bottom: 28px;
}

.form-group.full {
    grid-column: 1 / -1;
}

label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

input, textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    padding: 18px 24px;
    color: white;
    font-size: 1.05rem;
    transition: all 0.4s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.7);
}

textarea {
    min-height: 160px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(
       to bottom,
   #c0c0c2 0%,
  #a6a9ac 20%,
  #8c9093 40%,
  #a6a9ac 60%,
  #b9bcbf 80%,
  #cccccc 90%,
  #adaeb2 100%
        /* 90deg,
        transparent,
        var(--color-primary),
        transparent */
    );
    color: white;
    border: none;
    padding: 18px 52px;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: block;
    margin: 20px auto 0;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.4);
}

/* Декоративные элементы */
.scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(0, 245, 255, 0.015) 50%
    );
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 1;
    animation: scan 8s linear infinite;
    opacity: 0.3;
}

@keyframes scan {
    0% { background-position: 0 0; }
    100% { background-position: 0 200px; }
}

@media (max-width: 968px) {
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .glow-title {
        font-size: 3.2rem;

    }
}

.maps {

  
  /* display: block; */
  /* margin-left: auto;
  margin-right: auto; */
  width: 100%;
  height: 100%;
}