* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a1628 0%, #1a2f4f 100%);
    color: #f5f5f5;
    min-height: 100vh;
    min-width: 336px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../background.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    pointer-events: none;
    opacity: 0.3;
    z-index: 0;
}

.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
    background: #1a2f4f;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.logo {
    font-size: 3em;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 10px;
    color: #d4af37;
    text-transform: uppercase;
    font-family: 'Garamond', 'Georgia', serif;
}

.subtitle {
    font-size: 1.1em;
    color: #b8b8b8;
    margin-bottom: 40px;
    letter-spacing: 2px;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
}

.divider {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 30px auto;
}

.divider span {
    width: 8px;
    height: 8px;
    background: #d4af37;
    transform: rotate(45deg);
}

.photo-row {
    display: flex;
    gap: 0;
    max-width: 700px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.photo-row img {
    width: 33.333%;
    height: 175px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .photo-row {
        flex-wrap: wrap;
    }
    
    .photo-row img {
        width: 50%;
        height: 150px;
    }
    
    .photo-row img:last-child {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .photo-row {
        flex-direction: column;
        flex-wrap: nowrap;
    }
    
    .photo-row img {
        width: 100%;
        height: 200px;
    }
}

.description {
    font-size: 1.05em;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #d0d0d0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Contact Section */
.contact-section {
    margin-top: 50px;
}

.contact-title {
    font-size: 1.4em;
    margin-bottom: 25px;
    color: #d4af37;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1em;
    color: #d0d0d0;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: background 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.contact-item a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #d4af37;
}

/* Service Area Section */
.service-area-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.section-title {
    font-size: 1.4em;
    margin-bottom: 25px;
    color: #d4af37;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.service-area-intro {
    font-size: 1.05em;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #d0d0d0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.map-container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.map-container iframe,
.map-container #map {
    width: 100%;
    height: 400px;
    display: block;
}

.locations-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 0 auto;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.location-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.location-item h3 {
    font-size: 1em;
    font-weight: 400;
    color: #d0d0d0;
    letter-spacing: 0.5px;
}

.location-icon {
    font-size: 1.1em;
    color: #d4af37;
}

.icon {
    font-size: 1.3em;
    color: #d4af37;
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    flex-shrink: 0;
}

svg.icon {
    font-family: inherit;
}

.footer {
    margin: 50px -40px -60px -40px;
    padding: 10px 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 0.85em;
    color: #b8b8b8;
    line-height: 1.6;
}

.footer a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .container {
        padding: 40px 25px;
    }

    .logo {
        font-size: 2em;
    }

    .subtitle {
        font-size: 0.9em;
    }

    .map-container iframe,
    .map-container #map {
        height: 300px;
    }

    .location-item {
        padding: 10px 16px;
    }

    .location-item h3 {
        font-size: 0.95em;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-item {
        justify-content: center;
    }

    .footer {
        font-size: 0.75em;
        margin: 50px -25px -40px -25px;
        padding: 8px 25px;
    }
}

@media (max-width: 400px) {
    .container {
        padding: 30px 15px;
    }

    .logo {
        font-size: 1.5em;
        letter-spacing: 2px;
    }

    .subtitle {
        font-size: 0.85em;
        letter-spacing: 1.5px;
    }

    .description {
        font-size: 0.95em;
        line-height: 1.6;
    }

    .service-area-intro {
        font-size: 0.95em;
    }

    .map-container iframe,
    .map-container #map {
        height: 250px;
    }

    .location-item {
        padding: 10px 15px;
    }

    .location-item h3 {
        font-size: 0.9em;
    }

    .contact-title,
    .section-title {
        font-size: 1.2em;
    }

    .contact-item {
        font-size: 0.95em;
        padding: 10px 15px;
        gap: 10px;
        justify-content: center;
    }

    .footer {
        font-size: 0.7em;
        margin: 50px -15px -30px -15px;
        padding: 8px 15px;
    }
}
