/* =========================
   GLOBAL STYLES
========================= */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #222;
}

a {
    color: inherit;
    text-decoration: none;
}

section {
    margin-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
}

h2 {
    font-size: 28px;
}

p {
    line-height: 1.6;
}

.btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 24px;
    background: #f97316;
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.2s ease;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.btn:hover {
    background: #ea580c;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #111;
    color: white;
}

.nav-logo {
    font-weight: 800;
    color: #f97316;
    font-size: 18px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: white;
    font-weight: 600;
    transition: 0.2s;
}

.nav-links a:hover {
    color: #f97316;
}

.nav-call {
    background: #f97316;
    color: white !important;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 800;
}

.nav-call:hover {
    background: #ea580c;
    color: white;
}


/* =========================
   HERO
========================= */

.hero {
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
                url("images/photo4.jpg") center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 120px 20px;
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-box {
    background: white;
    padding: 12px 18px;
    border-radius: 6px;
    margin-bottom: 22px;
}

.logo {
    max-width: 360px;
    width: 100%;
    height: auto;
    margin-bottom: 0;
}

.hero .logo-box,
.hero p,
.hero .btn {
    position: relative;
    z-index: 2;
}

.hero p {
    color: #ffffff;
    font-size: 20px;
    margin-top: 10px;
}

.hero .btn {
    margin-top: 30px;
}

.hero span {
    color: #f97316;
    font-weight: 700;
}


/* =========================
   TRUST BAR
========================= */

.trust {
    background: #f8f8f8;
    padding: 30px 20px;
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-weight: 600;
    color: #333;
    align-items: center;
}

.trust-grid div {
    color: #333;
    white-space: nowrap;
    font-size: 15px;
}

.trust-grid div span {
    color: #f97316;
}


/* =========================
   WHY CHOOSE US
========================= */

.why {
    padding: 60px 20px;
    text-align: center;
}

.why h2 {
    margin-bottom: 30px;
}

.why-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.why-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    max-width: 260px;
}

.why-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.why h3 {
    color: #f97316;
}


/* =========================
   SERVICES
========================= */

.services {
    padding: 60px 20px;
    text-align: center;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-list div {
    background: #f8f8f8;
    padding: 25px 15px;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-top: 4px solid #f97316;
}


/* =========================
   SERVICE SHOWCASE
========================= */

.service-showcase {
    padding: 60px 20px;
    text-align: center;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 30px auto 0;
}

.showcase-item {
    overflow: hidden;
    border-radius: 10px;
    transition: 0.25s ease;
}

.showcase-item:hover {
    transform: translateY(-4px);
}

.showcase-grid img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: 0.25s ease;
}

.showcase-grid img:hover {
    transform: scale(1.03);
}


/* =========================
   BEFORE & AFTER
========================= */

.before-after {
    padding: 60px 20px;
    text-align: center;
    background: #f9f9f9;
}

.ba-sub {
    margin-bottom: 30px;
    color: #555;
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 28px;
    row-gap: 16px;
    max-width: 1300px;
    margin: 0 auto;
}

.ba-item {
    display: flex;
    gap: 8px;
}

.ba-side {
    width: 50%;
    text-align: center;
}

.ba-side img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    margin: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.ba-label {
    display: block;
    margin-bottom: 3px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
}

.ba-label.after {
    color: #f97316;
}

.ba-img {
    cursor: pointer;
    transition: 0.2s ease;
}

.ba-img:hover {
    transform: scale(1.03);
}


/* =========================
   COMMUNITY
========================= */

.community {
    padding: 60px 20px;
    text-align: center;
}

.community-content {
    max-width: 1000px;
    margin: 0 auto;
}

.community-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.community-images img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 10px;
}

.community-photo.main {
    object-position: center 25%;
}

.community-photo.honor {
    object-position: center center;
}

.community p {
    max-width: 700px;
    margin: 0 auto;
}


/* =========================
   REVIEWS
========================= */

.testimonials {
    padding: 60px 20px;
    text-align: center;
}

.review-summary {
    color: #f97316;
    font-weight: 700;
    margin-top: -10px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 30px auto 0;
}

.testimonial {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial span {
    font-weight: 600;
    color: #f97316;
}


/* =========================
   GALLERY
========================= */

.gallery {
    padding: 60px 20px;
    text-align: center;
}

.gallery-sub {
    margin-bottom: 30px;
    color: #555;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    max-width: 1300px;
    margin: 0 auto;
}

.gallery img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
    transition: 0.2s ease;
}

.gallery img:hover {
    transform: scale(1.03);
}


/* =========================
   CALL TO ACTION
========================= */

.cta {
    background: #f97316;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.cta h2 {
    margin-bottom: 10px;
}

.cta p {
    margin-bottom: 20px;
    color: white;
}

.cta .btn {
    background: white;
    color: #f97316;
}

.cta .btn:hover {
    background: #f4f4f4;
}


/* =========================
   CONTACT
========================= */

.contact {
    padding: 40px;
    text-align: center;
    background: #f4f4f4;
}

.contact-card {
    background: white;
    max-width: 600px;
    margin: 25px auto 0;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-btn {
    background: #f97316;
    color: white !important;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 700;
    transition: 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.social-btn:hover {
    background: #ea580c;
    transform: translateY(-2px);
}

.social-btn.disabled {
    background: #ccc;
    color: #555 !important;
    cursor: default;
}

.social-btn.disabled:hover {
    transform: none;
}

.social-btn i {
    font-size: 18px;
}

.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    font-size: 14px;
}

.icon-box.fb {
    background: #1877f2;
    color: white;
}

.icon-box.ig {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
    color: white;
}

.contact-form {
    max-width: 500px;
    margin: 30px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

.contact-form button {
    margin-top: 10px;
    border: none;
    cursor: pointer;
}


/* =========================
   FOOTER
========================= */

.footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

.footer p {
    margin: 6px 0;
}

.footer strong {
    color: #f97316;
}

.footer-small {
    font-size: 13px;
    color: #aaa;
}


/* =========================
   LIGHTBOX
========================= */

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.close,
.prev,
.next {
    border: none;
    background: none;
    color: white;
    cursor: pointer;
    user-select: none;
    z-index: 10000;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    padding: 10px;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}


/* =========================
   MOBILE CALL BUTTON
========================= */

.mobile-call-btn {
    display: none;
}


/* =========================
   MOBILE STYLES
========================= */

@media (max-width: 700px) {
    section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .navbar {
        flex-direction: column;
        gap: 10px;
    }

    .nav-right {
        flex-direction: column;
        gap: 12px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .hero {
        padding: 90px 20px;
    }

    .hero p {
        font-size: 18px;
    }

    .logo {
        max-width: 300px;
    }

    .service-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .ba-grid {
        grid-template-columns: 1fr;
    }

    .ba-item {
        flex-direction: column;
    }

    .ba-side {
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery img {
        height: 180px;
    }

    .community-images {
        grid-template-columns: 1fr;
    }

    .community-images img {
        height: 300px;
    }

    .contact {
        padding: 40px 20px;
    }

    .mobile-call-btn {
        display: block;
        position: fixed;
        bottom: 15px;
        left: 15px;
        right: 15px;
        background: #f97316;
        color: white;
        text-align: center;
        padding: 14px;
        border-radius: 8px;
        font-weight: 800;
        z-index: 9998;
        box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    }
}