* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f7fa;
    color: #222;
}

nav {
    background: #274061;

    padding: 20px 80px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.logo img {
    height: 80px;
    display:block;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2196f3;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

nav a:hover {
    color: #7ec8ff;
}

nav a:hover {
    color: #2196f3;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 40px 20px;
    background: #f5f5f5;
}

.stat-box {
    background: white;
    padding: 18px 28px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    font-weight: bold;
}

.hero {
    text-align: center;
    padding: 25px 20px 80px;
    background: white;
}

.hero-image{
    width:100%;
    max-width:1200px;
    max-height:700px;
    object-fit:cover;

    border-radius:20px;

    display:block;

    margin:auto;
}

.hero h1 {
    color: #2196f3;
    font-size: 52px;
    margin-bottom: 20px;
}

.hero-buttons {
    display: grid;
    grid-template-columns: 220px 260px 220px;
    justify-content: center;
    gap: 18px;
    margin-top: 30px;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 56px;

    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    color: white;
}

.line-btn {
    background: #06c755;
}

.fb-btn {
    background: #1877f2;
}

.call-btn {
    background: #2196f3;
}

.map-btn {
    grid-column: 2 / 3;

    background: white;
    color: #4285f4;
    border: 2px solid #4285f4;

}

.services,
.why-us,
.reviews,
.contact {
    padding: 90px 20px;
    text-align: center;
}

.services h2,
.why-us h2,
.reviews h2,
.contact h2 {
    font-size: 38px;
    margin-bottom: 45px;
}

.service-grid,
.why-grid,
.review-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card,
.why-card,
.review-card {
    width: 280px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card:hover,
.why-card:hover,
.review-card:hover {
    transform: translateY(-6px);
}

.card h3,
.why-card h3 {
    color: #2196f3;
    margin-bottom: 15px;
}

.why-us,
.reviews {
    background: white;
}

.stars {
    font-size: 22px;
    margin-bottom: 15px;
}

.review-card p {
    line-height: 1.8;
}

.review-card h4 {
    color: #2196f3;
    margin-top: 20px;
}

.contact-box {
    max-width: 720px;
    margin: auto;
    background: white;
    padding: 45px;
    border-radius: 22px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-box p {
    font-size: 18px;
    margin: 15px 0;
}

.contact-btn {
    display: inline-block;
    margin-top: 25px;
    background: #06c755;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: bold;
}

.line-qr {
    margin-top: 30px;
}

.line-qr img {
    width: 220px;
    max-width: 100%;
    border-radius: 15px;
}

footer {
    background: #274061;
    color: white;
    text-align: center;
    padding: 25px;
}

@media (max-width: 768px) {
    nav {
        padding: 8px 40px;
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo img {
        height: 60px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-image {
        border-radius: 15px;
    }

    .card,
    .why-card,
    .review-card {
        width: 100%;
        max-width: 340px;
    }
}.hero-buttons{
    margin-top:30px;
}

.btn{
    display:inline-block;
    margin:10px;
    padding:15px 30px;
    border-radius:12px;
    text-decoration:none;
    color:white;
    font-weight:bold;
}

.line-btn{
    background:#06C755;
}

.call-btn{
    background:#2196f3;
}

.map-btn {
    background: white;
    color: #4285F4 !important;
    border: 2px solid #4285F4;

    font-weight: bold;

    box-shadow: 0 4px 10px rgba(66,133,244,0.15);
}

.btn {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
}.map-box {
    max-width: 1000px;
    margin: 30px auto;
    height: 450px;

    border-radius: 20px;
    overflow: hidden;

    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.top-banner{
    background:#7dbbd3;
    color:white;

    text-align:center;

    padding:12px;

    font-weight:bold;
}

nav{
    position:sticky;
    top:0;
    z-index:999;
}
/* Floating LINE */

.floating-line{

    position:fixed;

    bottom:25px;

    right:25px;

    z-index:9999;

    transition:0.3s;
}

.floating-line img{

    width:70px;

    height:70px;

    border-radius:50%;

    box-shadow:0 4px 15px rgba(0,0,0,0.25);
}

.floating-line:hover{

    transform:scale(1.1);
}
.reviews{
    padding:60px 20px;
    background:white;
    text-align:center;
}

.reviews h2{
    font-size:38px;
    margin-bottom:50px;
}

.review-grid{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.review-card{
    width:320px;
    background:#f8f9fa;
    border-radius:20px;
    padding:30px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

.review-card:hover{
    transform:translateY(-8px);
}

.stars{
    font-size:24px;
    margin-bottom:15px;
}

.review-card p{
    line-height:1.8;
    min-height:90px;
}

.review-card h4{
    color:#2196f3;
    margin-top:20px;
}
.google-review-btn {
    display: inline-block;
    margin-top: 40px;
    background: #ffffff;
    color: #1a73e8;
    border: 2px solid #1a73e8;
    padding: 15px 30px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(26,115,232,0.15);
}

.google-review-btn:hover {
    background: #1a73e8;
    color: white;
}
.gallery {
    padding: 60px 20px;
    background: #f5f7fa;
    text-align: center;
}

.gallery h2 {
    font-size: 38px;
    margin-bottom: 45px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 1200px;
    margin: auto;
}

.gallery-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.12);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid img {
        height: 180px;
    }
}
.review-card p{
    min-height: 80px;
}
.fb-btn{
    background:#1877F2;
    color:white;
    text-decoration:none;
    padding:15px 28px;
    border-radius:12px;
    font-weight:bold;
    transition:0.3s;
    display:inline-block;
}

.fb-btn:hover{
    background:#1664d9;
    transform:translateY(-3px);
}
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-5px) scale(1.03);

    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}
/* ===== Fix Mobile Overflow Buttons ===== */

@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    .hero-buttons {
        width: 100%;
        max-width: 100%;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 15px !important;
        margin: 25px auto 0 !important;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .hero-buttons .btn,
    .hero-buttons a {
        width: 100% !important;
        max-width: 320px !important;
        min-width: 0 !important;
        margin: 0 auto !important;
        box-sizing: border-box;
        text-align: center;
    }

    .line-btn,
    .fb-btn,
    .call-btn,
    .map-btn {
        position: static !important;
        left: auto !important;
        right: auto !important;
        transform: none;
    }

    .btn:hover {
        transform: translateY(-4px) scale(1.02);
    }
}
@media (max-width: 768px) {
    .stats {
        display: none !important;
    }
}