/* ===================================
   FM Services - Exact Recreation
   =================================== */

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

body {
    font-family: 'Lato', Arial, sans-serif;
    font-weight: 400;
    color: #3c4043;
    line-height: 1.6;
    background-color: #fff;
}

/* ===================================
   Header with Bubbles Background
   =================================== */

.site-header {
    position: relative;
    height: 450px;
    background-image: url('img/bubbles-correct.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.header-bg {
    display: none;
}

/* Hide CSS bubbles - using image instead */
.bubble,
.sparkles {
    display: none;
}

/* Small logo top-left */
.header-logo-small {
    position: absolute;
    top: 15px;
    left: 20px;
    z-index: 10;
}

.header-logo-small img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* Center logo */
.header-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
}

.main-logo {
    max-height: 280px;
    width: auto;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.2));
}

/* ===================================
   Welcome Section
   =================================== */

.welcome-section {
    padding: 80px 0;
    background: #fff;
}

.welcome-title {
    font-size: 48px;
    font-weight: 400;
    color: #4a90a4;
    margin-bottom: 30px;
    text-decoration: underline;
    text-underline-offset: 8px;
    text-align: center;
}

.welcome-text {
    font-size: 18px;
    color: #3c4043;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
}

.welcome-image {
    text-align: center;
}

.welcome-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ===================================
   Services Section
   =================================== */

.services-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    font-size: 42px;
    font-weight: 400;
    color: #4a90a4;
    text-align: center;
    margin-bottom: 50px;
    text-decoration: underline;
    text-underline-offset: 8px;
}

/* Service blocks - simple style like original */
.service-block {
    background: #fff;
    height: 100%;
}

.service-block .service-image {
    margin-bottom: 25px;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 4px;
}

.service-block .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-block h3 {
    font-size: 18px;
    font-weight: 700;
    color: #3c4043;
    margin: 0 0 10px 0;
}

.service-block p {
    font-size: 15px;
    color: #5f6368;
    margin: 0;
    line-height: 1.6;
}

/* ===================================
   Contact Section
   =================================== */

.contact-section {
    padding: 80px 0;
    background: #fff;
}

.contact-card {
    text-align: center;
}

.contact-image {
    width: 100%;
    padding: 20px;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #3c4043;
    margin-bottom: 10px;
}

.contact-card .address {
    font-size: 16px;
    color: #5f6368;
    margin-bottom: 30px;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 16px;
    color: #3c4043;
    margin-bottom: 15px;
}

.contact-info a {
    color: #4a90a4;
    text-decoration: none;
}

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

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.social-links span {
    font-weight: 700;
    color: #3c4043;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #4a90a4;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #3d7a8a;
}

.social-links a img {
    width: 20px;
    height: 20px;
}

/* ===================================
   Contact Form Section
   =================================== */

.contact-form-section {
    padding: 80px 0;
    background: #fff;
}

.form-note {
    text-align: center;
    font-size: 16px;
    color: #3c4043;
    margin-bottom: 40px;
}

.form-note a {
    color: #4a90a4;
    text-decoration: none;
}

.form-note a:hover {
    text-decoration: underline;
}

.google-form-container {
    max-width: 700px;
    margin: 0 auto;
}

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

/* ===================================
   Photos Section
   =================================== */

.photos-section {
    padding: 80px 0;
    background: #fff;
}

.photos-section .section-title {
    text-decoration: none;
    color: #4a90a4;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.photo-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.photo-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.photo-item:hover img {
    transform: scale(1.05);
}

/* ===================================
   Footer
   =================================== */

.site-footer {
    background: #f8f9fa;
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    text-align: center;
}

.footer-brand {
    font-size: 18px;
    color: #3c4043;
    margin-bottom: 10px;
}

.footer-btw {
    font-size: 14px;
    color: #5f6368;
    margin-bottom: 15px;
}

.footer-contact {
    font-size: 14px;
    color: #3c4043;
    margin-bottom: 15px;
}

.footer-contact a {
    color: #4a90a4;
    text-decoration: none;
}

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

.footer-copyright {
    font-size: 12px;
    color: #5f6368;
    margin: 0;
}

/* ===================================
   Responsive Styles
   =================================== */

@media (max-width: 991.98px) {
    .site-header {
        height: 350px;
    }

    .main-logo {
        max-height: 200px;
    }

    .welcome-title {
        text-align: center;
    }

    .welcome-text {
        text-align: center;
    }

    .welcome-image {
        margin-top: 40px;
    }

    .contact-card {
        margin-top: 40px;
    }
}

@media (max-width: 767.98px) {
    .site-header {
        height: 280px;
    }

    .main-logo {
        max-height: 150px;
    }

    .header-logo-small img {
        height: 35px;
    }

    .welcome-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .form-container {
        padding: 25px;
    }

    .photo-gallery {
        grid-template-columns: 1fr;
    }
}