@charset "utf-8";
/* CSS Document */

.features-container {
    text-align: center;
    margin-bottom: 2.5rem;
}

#features-heading, #transformation-heading, #reviews-heading {
    font-size: 2.1rem;
    margin: 0 0 0.6rem;
    color: #173f2a;
    text-align: center;
}
.header {
    position: relative;
    background-image: url('header-background.jpg');
    background-size: cover;
    background-position: center;
    min-height: 250px;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 260px;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-items: center;
    padding: 20px;
}

.logo-container {
    flex-shrink: 0;
}

.logo {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background-image: url('round-hp-logo.png');
    background-size: cover;
    border: 5px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}


/* Right side – Quote button + address */
.header-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    z-index: 10;
}

.quote-btn {
    background: linear-gradient(135deg, #ff9a56 0%, #ff6b35 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.quote-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.6);
}

.address {
    font-size: 16px;
    color: white;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
    line-height: 1.5;
    font-weight: 500;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 24px;
}
/* Hero stack on smaller screens */
@media (max-width: 968px) {

    .header {
        min-height: 300px;
    }

    .top-bar {
        flex-direction: column;
        align-items: center;
    }

    .logo {
        width: 150px;
        height: 150px;
    }

   

    .header-right {
        margin-top: 20px;
        align-items: center;
    }

    .address {
        font-size: 15px;
        text-align: center;
    }

}

@media (max-width: 480px) {
    .logo {
        width: 120px;
        height: 120px;
    }
}