html, body { overflow-x: hidden; }

.hero-zone {
    padding: 190px 0 130px;
    background: linear-gradient(135deg, #0d2137 0%, #1a365d 100%);
    position: relative;
    overflow: hidden;
}
.hero-zone::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.07) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}
.hero-content h1 {
    font-family: 'Georgia', serif;
    font-size: 60px;
    color: #ffffff;
    margin-bottom: 32px;
    line-height: 1.08;
}
.hero-content p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 19px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9;
}

.contact-section {
    padding: 140px 0;
    background: #ffffff;
    position: relative;
}
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #1a365d, #d4a853, #1a365d);
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}
.contact-info { padding-top: 40px; }
.contact-info h3 {
    font-family: 'Georgia', serif;
    font-size: 32px;
    color: #0d2137;
    margin-bottom: 48px;
    font-weight: 700;
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 36px;
}
.info-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.12) 0%, rgba(26, 54, 93, 0.08) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #1a365d;
    flex-shrink: 0;
    transition: all 0.4s ease;
}
.info-item:hover .info-icon {
    background: linear-gradient(135deg, #d4a853 0%, #b58a32 100%);
    color: #ffffff;
}
.info-content h4 {
    font-family: 'Georgia', serif;
    font-size: 18px;
    color: #0d2137;
    margin-bottom: 8px;
    font-weight: 700;
}
.info-content p { color: #4a5568; font-size: 15px; line-height: 1.7; }

.contact-form {
    background: linear-gradient(180deg, rgba(26, 54, 93, 0.02) 0%, rgba(212, 168, 83, 0.04) 100%);
    border-radius: 28px;
    padding: 20px;
    border: 1px solid rgba(26, 54, 93, 0.06);
    box-shadow: 0 14px 50px rgba(0,0,0,0.04);
}
.contact-form h3 {
    font-family: 'Georgia', serif;
    font-size: 28px;
    color: #0d2137;
    margin-bottom: 40px;
    font-weight: 700;
}
.form-group { margin-bottom: 28px; }
.form-group label {
    display: block;
    color: #0d2137;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 0.03em;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid rgba(26, 54, 93, 0.1);
    border-radius: 14px;
    font-size: 15px;
    transition: all 0.4s ease;
    background: #ffffff;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #d4a853;
    box-shadow: 0 0 0 4px rgba(212, 168, 83, 0.1);
}
.form-group textarea { min-height: 160px; resize: vertical; }
.form-group button {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #1a365d 0%, #2d4a6f 100%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.form-group button:hover {
    background: linear-gradient(135deg, #2d4a6f 0%, #1a365d 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.3);
}

.features-section {
    padding: 140px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f7fafc 100%);
}
.features-section .section-title { margin-bottom: 72px; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.feature-item {
    text-align: center;
    padding: 48px 32px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #edf2f7;
    transition: all 0.5s ease;
    position: relative;
}
.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 5px;
    background: linear-gradient(90deg, #1a365d, #d4a853);
    border-radius: 0 0 3px 3px;
    transition: width 0.5s ease;
}
.feature-item:hover {
    box-shadow: 0 16px 45px rgba(13, 33, 55, 0.08);
    transform: translateY(-10px);
    border-color: rgba(212, 168, 83, 0.25);
}
.feature-item:hover::before { width: 90px; }
.feature-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, #d4a853 0%, #b58a32 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #0d2137;
    box-shadow: 0 12px 35px rgba(212, 168, 83, 0.35);
}
.feature-item h4 {
    font-family: 'Georgia', serif;
    font-size: 18px;
    color: #0d2137;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: 0.03em;
}
.feature-item p { color: #4a5568; font-size: 14px; line-height: 1.7; }

.site-footer {
    background: #0a1a2c;
    padding: 90px 0 36px;
    color: #ffffff;
    border-top: 8px solid #d4a853;
}
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 56px; margin-bottom: 56px; }
.footer-logo img { height: 58px; margin-bottom: 28px; }
.footer-about p { color: rgba(255, 255, 255, 0.55); line-height: 1.9; font-size: 14px; }
.footer-col h4 {
    color: #d4a853;
    margin-bottom: 28px;
    font-size: 15px;
    font-family: 'Georgia', serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 16px; }
.footer-col a { color: rgba(255, 255, 255, 0.55); text-decoration: none; transition: all 0.3s ease; font-size: 14px; }
.footer-col a:hover { color: #d4a853; padding-left: 8px; }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 36px;
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
}

@media (max-width: 767px) {
    .hero-content h1 { font-size: 40px; }
    .contact-layout { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
}
@media (min-width: 768px) and (max-width: 991px) {
    .contact-layout { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}