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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #0a1f44;
}

a {
    text-decoration: none;
    color: inherit;
}

.top-bar {
    background: #0a1f44;
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid #5ba4e6;
}

.top-bar-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.top-bar span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.top-bar a {
    color: rgba(255,255,255,0.85);
    transition: color 0.2s;
}

.top-bar a:hover {
    color: #fff;
}

.top-bar-emergency {
    background: #5ba4e6;
    color: #fff !important;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-weight: 600;
}

.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s;
}

.header.scrolled {
    box-shadow: 0 4px 25px rgba(0,0,0,0.15);
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo {
    width: 200px;
    height: auto;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: center;
}

.nav-links li a {
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #0a1f44;
    transition: all 0.2s;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 3px solid transparent;
}

.nav-links li a:hover {
    color: #5ba4e6;
    border-bottom-color: #5ba4e6;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #0a1f44;
    transition: color 0.2s;
}

.header-phone i {
    font-size: 1.25rem;
    color: #5ba4e6;
}

.phone-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    font-weight: 600;
}

.phone-number {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    color: #0a1f44;
}

.header-btn {
    background: #0a1f44;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.header-btn:hover {
    background: #5ba4e6;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(91,164,230,0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: #0a1f44;
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.hero {
    position: relative;
    background: url('hero-bathroom.jpg') center/cover no-repeat;
    min-height: 85vh;
    display: flex;
    align-items: flex-end;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,31,68,0.1) 0%,
        rgba(10,31,68,0.15) 40%,
        rgba(10,31,68,0.6) 70%,
        rgba(10,31,68,0.92) 100%
    );
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
    width: 100%;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(91,164,230,0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(91,164,230,0.5);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    color: #fff;
    max-width: 700px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    opacity: 0.92;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    color: #5ba4e6;
}

.hero-stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.hero-actions {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: #5ba4e6;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #3d8fd4;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(91,164,230,0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    transform: translateY(-3px);
}

.trust-bar {
    background: #0a1f44;
    padding: 1.25rem 0;
    border-bottom: 3px solid #5ba4e6;
}

.trust-bar-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.trust-item i {
    color: #5ba4e6;
    font-size: 1.2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: #e8f1fb;
    color: #0a1f44;
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-tag.light {
    background: rgba(91,164,230,0.2);
    color: #fff;
}

.section-title {
    font-size: 2.75rem;
    color: #0a1f44;
    margin-bottom: 1rem;
}

.section-title.light {
    color: #fff;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-subtitle.light {
    color: rgba(255,255,255,0.75);
}

.services {
    padding: 6rem 2rem;
    background: #f5f8fc;
}

.services-container {
    max-width: 1300px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10,31,68,0.06);
    transition: all 0.3s;
    border: 1px solid #e0e8f0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(10,31,68,0.12);
    border-color: #5ba4e6;
}

.service-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-card-body {
    padding: 1.75rem;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: #0a1f44;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #0a1f44;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.service-link {
    color: #5ba4e6;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 0.75rem;
    color: #0a1f44;
}

.cta-banner {
    background: #0a1f44;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(91,164,230,0.08);
    border-radius: 50%;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(91,164,230,0.05);
    border-radius: 50%;
}

.cta-banner-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.cta-banner-text h2 {
    font-size: 2.25rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.cta-banner-text p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
}

.cta-banner-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cta-phone {
    background: #fff;
    color: #0a1f44;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-cta-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-cta-book {
    background: #5ba4e6;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-cta-book:hover {
    background: #3d8fd4;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(91,164,230,0.4);
}

.about {
    padding: 6rem 2rem;
    background: #fff;
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-col {
    position: relative;
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(10,31,68,0.12);
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #0a1f44;
    color: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(10,31,68,0.3);
    border: 3px solid #5ba4e6;
}

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    color: #5ba4e6;
}

.exp-text {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
    font-weight: 600;
}

.about-content-col .section-tag {
    margin-bottom: 1rem;
}

.about-content-col h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-lead {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-content-col > p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
}

.about-feature i {
    color: #5ba4e6;
    font-size: 1.1rem;
}

.testimonials {
    padding: 6rem 2rem;
    background: #0a1f44;
    color: #fff;
}

.testimonials-container {
    max-width: 1300px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: rgba(91,164,230,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(91,164,230,0.2);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s;
}

.testimonial-card:hover {
    background: rgba(91,164,230,0.14);
    transform: translateY(-4px);
}

.stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1.25rem;
}

.stars i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-card > p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid rgba(91,164,230,0.2);
    padding-top: 1.25rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(91,164,230,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5ba4e6;
    font-size: 0.9rem;
}

.testimonial-author strong {
    display: block;
    color: #fff;
    font-size: 1rem;
}

.testimonial-author span {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
}

.contact {
    padding: 6rem 2rem;
    background: #f5f8fc;
}

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-col .section-tag {
    margin-bottom: 1rem;
}

.contact-info-col h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0a1f44;
}

.contact-info-col > p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: #0a1f44;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5ba4e6;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail h4 {
    font-size: 1rem;
    margin-bottom: 0.15rem;
    color: #0a1f44;
}

.contact-detail a {
    color: #5ba4e6;
    font-weight: 600;
    transition: color 0.2s;
}

.contact-detail a:hover {
    color: #3d8fd4;
}

.contact-detail span {
    display: block;
    color: #666;
    font-size: 0.9rem;
}

.contact-form-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(10,31,68,0.08);
    border: 1px solid #e0e8f0;
}

.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #0a1f44;
    text-align: center;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid #e0e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.3s;
    background: #f5f8fc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5ba4e6;
    background: #fff;
}

.form-group textarea {
    resize: vertical;
}

.btn-form-submit {
    width: 100%;
    background: #0a1f44;
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.btn-form-submit:hover {
    background: #5ba4e6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91,164,230,0.4);
}

.footer {
    background: #0a1f44;
    color: rgba(255,255,255,0.7);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    padding: 4rem 0 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    width: 180px;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links-col h4,
.footer-contact-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links-col h4::after,
.footer-contact-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #5ba4e6;
}

.footer-links-col ul {
    list-style: none;
}

.footer-links-col ul li {
    margin-bottom: 0.6rem;
}

.footer-links-col ul li a {
    color: rgba(255,255,255,0.7);
    transition: all 0.2s;
    font-size: 0.9rem;
}

.footer-links-col ul li a:hover {
    color: #5ba4e6;
    padding-left: 0.5rem;
}

.footer-contact-col p {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact-col a {
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}

.footer-contact-col a:hover {
    color: #5ba4e6;
}

.footer-contact-col i {
    color: #5ba4e6;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(91,164,230,0.15);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.85rem;
}

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .header-container {
        padding: 0.5rem 1rem;
    }

    .logo {
        width: 150px;
    }

    .main-nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li a {
        padding: 0.75rem 0;
        border-bottom: 1px solid #eee;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-container {
        padding: 4rem 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stat-number {
        font-size: 1.75rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
        justify-content: center;
    }

    .trust-bar-container {
        flex-direction: column;
        gap: 0.75rem;
    }

    .services {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .cta-banner-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-banner-text h2 {
        font-size: 1.75rem;
    }

    .cta-banner-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-phone,
    .btn-cta-book {
        text-align: center;
        justify-content: center;
    }

    .about {
        padding: 4rem 1.5rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-img {
        height: 350px;
    }

    .about-experience-badge {
        bottom: -15px;
        right: 15px;
    }

    .about-content-col h2 {
        font-size: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .testimonials {
        padding: 4rem 1.5rem;
    }

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

    .contact {
        padding: 4rem 1.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info-col h2 {
        font-size: 2rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-stat {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
    }

    .about-img {
        height: 250px;
    }
}
