/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Special+Gothic:wght@500&display=swap');

/* === RESET === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* === BASE === */
html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1a1a2e;
    background: #fff;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Special Gothic', sans-serif;
    color: #203B72;
    line-height: 1.2;
}

a {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

/* === LAYOUT === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === BUTTONS === */
.btn-primary {
    display: inline-block;
    background: #10A4DE;
    color: #fff;
    padding: 14px 32px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
    background: #0d8fc0;
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    border: 2px solid #203B72;
    color: #203B72;
    padding: 8px 20px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
    background: #203B72;
    color: #fff;
}

/* === HEADER === */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 3px solid #10A4DE;
    padding: 14px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.header-contact a {
    text-decoration: none;
    font-size: 0.875rem;
    color: #203B72;
    font-weight: 500;
}

.header-contact a.phone {
    font-size: 1.5rem;
}

.header-contact a:hover {
    color: #10A4DE;
}

.header-logo img {
    height: 62px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-nav a:first-child {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: #203B72;
}

.header-nav a:first-child:hover {
    color: #10A4DE;
}

/* === HERO === */
.hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    background-image: url('../img/splash.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(32, 59, 114, 0.72);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 80px 24px;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 620px;
    margin: 0 auto 32px;
}

/* === CALL BANNER === */
.call-banner {
    background: #203B72;
    padding: 18px 0;
    text-align: center;
}

.call-banner a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s;
}

.call-banner a .subtitle {
    position: relative;
    top: 5px;
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
}

.call-banner a .number {
    font-size: 2.4rem;
    font-weight: 700;
}

.call-banner a:hover {
    opacity: 0.85;
}

/* === SERVICES === */
.services {
    padding: 80px 0;
    text-align: center;
}

.services h2 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #203B72;
    margin-bottom: 56px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    padding: 32px 20px;
    border: 1px solid #e8edf5;
    border-radius: 4px;
    transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover {
    border-color: #10A4DE;
    transform: translateY(-4px);
}

.service-card img {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
}

.service-card h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.65;
}

/* === PARALLAX QUOTE === */
.parallax-quote {
    position: relative;
    padding: 100px 0;
    text-align: center;
    background-image: url('../img/p1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.parallax-quote::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(32, 59, 114, 0.68);
}

.parallax-quote .container {
    position: relative;
    z-index: 1;
}

.parallax-quote p {
    font-family: 'Special Gothic', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.6rem);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    max-width: 800px;
    margin: 0 auto;
}

/* === FOOTER === */
footer {
    background: #203B72;
    padding: 24px 0;
    text-align: center;
}

.footer-inner p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    letter-spacing: 0.3px;
}

/* === CONTACT PAGE === */
#contact-page {
    padding: 72px 0;
}

#contact-page address a.phone {
    font-size: 2rem;
}

#contact-page-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 72px;
    align-items: start;
}

#contact-page-intro h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

#contact-page-intro > p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 36px;
    line-height: 1.7;
}

#contact-page-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-style: normal;
}

#contact-page-details a {
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: #203B72;
    transition: color 0.2s;
}

#contact-page-details a:hover {
    color: #10A4DE;
}

#contact-page-details span {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
}

/* === FORM === */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #203B72;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid #dde4f0;
    border-radius: 3px;
    font-size: 0.95rem;
    font-family: inherit;
    color: #1a1a2e;
    background: #fff;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10A4DE;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aab;
}

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

#contact-submit {
    background: #203B72;
    color: #fff;
    border: none;
    padding: 13px 36px;
    border-radius: 3px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.5px;
}

#contact-submit:hover {
    background: #10A4DE;
    transform: translateY(-2px);
}

#contact-success {
    background: #e8f4fb;
    border-left: 4px solid #10A4DE;
    padding: 14px 16px;
    border-radius: 3px;
    margin-bottom: 24px;
}

#contact-success p {
    font-size: 0.9rem;
    color: #203B72;
}

/* === MAP === */
.map-section {
    padding: 0 24px 72px;
}

#map {
    max-width: 1200px;
    margin: 0 auto;
    height: 380px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #dde4f0;
}

/* === RESPONSIVE === */

@media (max-width: 960px) 
{
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #contact-page-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) 
{
    .header-contact {
        display: none;
    }

    .header-inner {
        justify-content: space-between;
    }

    .header-logo img {
        height: 48px;
    }

    .header-nav a:first-child {
        display: none;
    }

    .btn-outline {
        white-space: nowrap;
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        letter-spacing: 1px;
    }

    .call-banner a {
        font-size: 1.1rem;
    }
}
