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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(to bottom, #07274b 0%, #0d3a5f 30%, #1a3a6b 60%, #2a4a7a 100%);
    min-height: 100vh;
    padding: 0;
    margin: 0;
    color: #333;
}

.top-bar {
    background-color: #1a3a6b;
    padding: 14px 0;
    width: 100%;
    position: relative;
    z-index: 10;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-top {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.phone-top:hover {
    color: #FFD700;
}

.phone-top svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.services-bar {
    background-color: #FFD700;
    padding: 20px 0;
    width: 100%;
    position: relative;
    z-index: 10;
}

.services-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    position: relative;
}

.services-left,
.services-right {
    color: #1a3a6b;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.services-left {
    text-align: left;
    justify-self: start;
}

.services-right {
    text-align: right;
    justify-self: end;
}

@media (max-width: 768px) {
    .services-bar {
        padding: 15px 0;
    }
    
    .services-bar-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    
    .logo-container {
        margin: 5px 0;
        order: 1;
        grid-column: unset;
    }
    
    .logo {
        max-height: 100px;
    }
    
    .services-left {
        order: 2;
        font-size: 0.7rem;
        text-align: center;
        width: 100%;
        justify-self: unset;
    }
    
    .services-right {
        order: 3;
        font-size: 0.7rem;
        text-align: center;
        width: 100%;
        justify-self: unset;
    }
}

.container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px);
}

.content {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 50px 20px;
    text-align: center;
    position: relative;
    width: 100%;
}

.logo-container {
    margin: 0;
    justify-self: center;
    grid-column: 2;
}

.logo {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    width: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
    object-fit: contain;
}

.logo-fallback {
    display: none;
}

.business-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a3a6b;
    letter-spacing: 1.5px;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
}

.main-content {
    margin-top: 25px;
    position: relative;
    z-index: 1;
}

.coming-soon {
    font-size: 1.9rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 18px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.coming-soon::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
}

.subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 8px;
    margin-bottom: 35px;
    font-style: italic;
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}


.contact-info {
    margin: 35px 0 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.contact-item {
    font-size: 1.05rem;
    width: 100%;
    max-width: 500px;
}

.contact-label {
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: 6px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.2px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.contact-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    padding: 4px 8px;
    border-radius: 6px;
    position: relative;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.contact-link:hover {
    color: #ffffff;
    background-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-1px);
}

.contact-text {
    color: #ffffff;
    display: block;
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}


.social-links {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 3px solid rgba(255, 215, 0, 0.6);
}

.find-us {
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.facebook-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #1a3a6b;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 14px 32px;
    border: 3px solid #1a3a6b;
    background-color: #FFD700;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.facebook-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(26, 58, 107, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.facebook-link:hover::before {
    width: 300px;
    height: 300px;
}

.facebook-link:hover {
    background-color: #1a3a6b;
    color: #FFD700;
    border-color: #FFD700;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(26, 58, 107, 0.35);
}

.facebook-link svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    position: relative;
    z-index: 1;
}


/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px 15px;
        min-height: auto;
    }

    .content {
        padding: 15px 15px;
    }
    
    .main-content {
        margin-top: 10px;
    }

    .business-name {
        font-size: 1.8rem;
    }

    .coming-soon {
        font-size: 1.4rem;
        letter-spacing: 1.5px;
    }

    .contact-item {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px 15px;
    }
    
    .content {
        padding: 10px 15px;
    }
    
    .main-content {
        margin-top: 5px;
    }

    .business-name {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .coming-soon {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .contact-item {
        font-size: 0.9rem;
    }

    .facebook-link {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}
