

* {
    
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #122033;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.top-bar {
    background: #071b36;
    color: white;
    padding: 10px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
}

.header {
    height: 75px;
    background: white;
    border-bottom: 1px solid #ddd;
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo img {
    width: 150px;
}

.desktop-nav {
    display: flex;
    gap: 22px;
    margin-left: auto;
}

.desktop-nav a {
    text-decoration: none;
    color: #172235;
    font-size: 14px;
}

.nav-call {
    background: #159447;
    color: white;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
}

.menu-btn {
    display: none;
}

.hero {
    min-height: 600px;
    background: #eef8f1;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 58px;
    line-height: 1.05;
    margin: 15px 0;
}

.hero-content h1 span {
    color: #159447;
}

.hero-content p {
    font-size: 18px;
    color: #667085;
    margin-bottom: 25px;
}

.section-tag {
    color: #159447;
    font-size: 13px;
    font-weight: bold;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.hero-features div {
    font-size: 12px;
}

.hero-features span {
    color: #159447;
    font-size: 22px;
    display: block;
}

.hero-features strong,
.hero-features small {
    display: block;
}

.hero-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.btn-primary {
    background: #159447;
    color: white;
}

.btn-whatsapp {
    border: 1px solid #159447;
    color: #159447;
    background: white;
}

.booking-card {
    background: white;
    padding: 28px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

.booking-card h2 {
    font-size: 25px;
    margin-bottom: 8px;
}

.booking-card h2 span {
    color: #159447;
}

.input-group {
    margin: 12px 0;
}

.input-group input,
.input-group select {
    width: 100%;
    height: 46px;
    padding: 0 12px;
    border: 1px solid #ddd;
    border-radius: 7px;
}

.form-btn {
    width: 100%;
    height: 46px;
    border: none;
    border-radius: 7px;
    background: #159447;
    color: white;
    font-weight: bold;
}

.section {
    padding: 80px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading h2 {
    font-size: 34px;
    margin: 8px 0;
}

.section-heading p {
    color: #667085;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card {
    padding: 30px 20px;
    border: 1px solid #e1e7e3;
    border-radius: 14px;
    text-align: center;
    background: white;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transform: translateY(-3px);
}

.service-icon {
    font-size: 35px;
    margin-bottom: 12px;
}

.service-card h3 {
    margin-bottom: 8px;
}

.service-card p {
    color: #667085;
    font-size: 13px;
}

.brands {
    padding: 60px 0;
    background: #f7faf8;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.brand {
    height: 80px;
    background: white;
    border: 1px solid #e3e8e5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand img {
    max-width: 80%;
    max-height: 50px;
}

.trust-section {
    padding: 80px 0;
}

.trust-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.trust-content h2 {
    font-size: 38px;
    margin: 10px 0 30px;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.trust-stats div {
    border-left: 3px solid #159447;
    padding-left: 12px;
}

.trust-stats strong {
    display: block;
    font-size: 20px;
}

.trust-stats span {
    font-size: 11px;
    color: #667085;
}

.trust-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
}

.calculator-section {
    padding: 70px 0;
    background: #eef8f1;
}

.calculator-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: center;
}

.calculator-image img {
    width: 100%;
}

.calculator-form {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
}

.calculator-form input,
.calculator-form select {
    height: 45px;
    border: 1px solid #ddd;
    border-radius: 7px;
    padding: 0 10px;
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin: 15px 0;
}

.calculator-results div {
    background: white;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
}

.calculator-results strong {
    display: block;
    color: #159447;
    font-size: 18px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.project-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.project-info {
    padding: 15px;
}

.project-info strong,
.project-info span {
    display: block;
}

.project-info span {
    color: #667085;
    font-size: 11px;
}

.insurance-section {
    padding: 30px 0;
}

.insurance-container {
    background: #071b36;
    color: white;
    border-radius: 15px;
    padding: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.white-btn {
    background: white;
    color: #071b36;
    padding: 12px 22px;
    border-radius: 7px;
    font-weight: bold;
}

.testimonials {
    background: #f7faf8;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.testimonial {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e1e7e3;
}

.stars {
    color: #f1b52b;
    margin-bottom: 12px;
}

.testimonial p {
    color: #667085;
    font-size: 13px;
    margin-bottom: 15px;
}

.about-section {
    padding: 80px 0;
    text-align: center;
}

.about-content {
    max-width: 700px;
    margin: auto;
}

.about-content h2 {
    font-size: 36px;
    margin: 10px 0;
}

.contact-section {
    padding: 80px 0;
    background: #f1f7f4;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 38px;
    margin: 10px 0 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item > span {
    font-size: 22px;
}

.map-box {
    min-height: 350px;
    background: #dce6df;
    border-radius: 15px;
    position: relative;
}

.map-placeholder {
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-btn {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: #159447;
    color: white;
    padding: 12px;
    text-align: center;
    border-radius: 7px;
}

.footer {
    background: #071b36;
    color: white;
}

.footer-grid {
    padding: 60px 0;
    display: grid;
    grid-template-columns: 1.5fr repeat(4,1fr);
    gap: 30px;
}

.footer-about img {
    width: 150px;
    margin-bottom: 15px;
}

.footer-column h3 {
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-column a,
.footer-column p,
.footer-about p {
    display: block;
    color: #aab8c9;
    font-size: 11px;
    margin-bottom: 9px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 15px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
}

.mobile-actions {
    display: none;
}


/* ==========================
   MOBILE
========================== */

@media(max-width:768px) {

    .container {
        width: calc(100% - 28px);
    }

    .header {
        height: 65px;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .desktop-nav {
        display: none;
    }

    .nav-call {
        margin-left: auto;
        width: 42px;
        height: 42px;
        padding: 0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-call div {
        display: none;
    }

    .menu-btn {
        display: block;
        background: none;
        border: none;
        font-size: 25px;
    }

    .hero {
        min-height: auto;
        padding: 35px 0;
    }

    .hero-container {
        display: block;
    }

    .hero-content h1 {
        font-size: 39px;
    }

    .hero-features {
        grid-template-columns: repeat(2,1fr);
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

    .booking-card {
        margin-top: 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 10px;
    }

    .brands-grid {
        grid-template-columns: repeat(3,1fr);
        gap: 8px;
    }

    .trust-container,
    .calculator-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .trust-stats {
        grid-template-columns: repeat(2,1fr);
    }

    .calculator-form {
        grid-template-columns: 1fr;
    }

    .calculator-results {
        grid-template-columns: repeat(3,1fr);
    }

    .projects-grid {
        display: flex;
        overflow-x: auto;
    }

    .project-card {
        min-width: 85%;
    }

    .testimonial-grid {
        display: flex;
        overflow-x: auto;
    }

    .testimonial {
        min-width: 85%;
    }

    .insurance-container {
        display: block;
    }

    .insurance-container .white-btn {
        display: inline-block;
        margin-top: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-about {
        grid-column: span 2;
    }

    .footer-bottom .container {
        display: block;
        text-align: center;
    }

    .mobile-actions {
        display: grid;
        grid-template-columns: repeat(4,1fr);
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: white;
        z-index: 9999;
        box-shadow: 0 -5px 20px rgba(0,0,0,.15);
    }

    .mobile-actions a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 9px;
        font-weight: bold;
    }

    .mobile-actions span {
        font-size: 17px;
    }

    body {
        padding-bottom: 60px;
    }
}
/* ==============================
   MOBILE MENU FIX
============================== */

.mobile-menu {
    display: none !important;
}

@media (max-width: 768px) {

    .mobile-menu {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: #ffffff;
        z-index: 9998;
        padding: 10px 18px 18px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    }

    .mobile-menu.active {
        display: block !important;
    }

    .mobile-menu a {
        display: block;
        padding: 13px 5px;
        color: #122033;
        text-decoration: none;
        border-bottom: 1px solid #eeeeee;
        font-size: 14px;
        font-weight: 600;
    }
}