* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #d4a24c;
    --dark: #131a22;
    --text: #21262d;
    --muted-bg: #f4f6f8;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background-image: url("/image/general/background.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
    display: block;
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    height: 80px;
    background: white;
    opacity:90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6vw;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.header img {
    height: 66px;
}

.header-nav {
    display: none;
    align-items: center;
    gap: 22px;
}

.header-nav a {
    text-decoration: none;
    color: #151515;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.header-nav a:hover {
    color: var(--primary);
}

.header-phone {
    font-weight: 600;
    font-size: 16px;
    color: #111;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mobile-menu {
    display: none;
    position: relative;
}

.mobile-menu summary {
    list-style: none;
    cursor: pointer;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    padding: 8px 12px;
    background: #fff;
    font-weight: 600;
}

.mobile-menu summary::-webkit-details-marker {
    display: none;
}

.mobile-menu-panel {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: #fff;
    border: 1px solid #dfdfdf;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
    min-width: 190px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mobile-menu-panel a {
    text-decoration: none;
    color: #111;
    padding: 10px 12px;
    font-weight: 600;
    border-bottom: 1px solid #efefef;
}

.mobile-menu-panel a:last-child {
    border-bottom: 0;
}

/* PAGE CONTAINER */
.container {
    width: min(100% - 32px, 1280px);
    margin: 16px auto 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    max-width: 1280px;
    flex: 1 0 auto;
}

.container.manage-container {
    width: calc(100% - 32px);
    max-width: none;
}

/* HERO */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    background: #0f1419;
}

.slider-track {
    display: flex;
    width: 100%;
    transition: transform 900ms ease;
    will-change: transform;
}

#showcaseSliderTrack {
    height: clamp(360px, 65vh, 670px);
}

.slide {
    flex: 0 0 100%;
    min-width: 100%;
}

.slide-main {
    position: relative;
    overflow: hidden;
}

.slide-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-main-single {
    height: clamp(360px, 65vh, 670px);
}

.slide-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.45));
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items : end;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(1.9rem, 3.5vw, 3.2rem);
    margin-bottom: 10px;
}

.hero-content p {
    font-size: clamp(1rem, 1.7vw, 1.35rem);
    margin-bottom: 22px;
}

.btn-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 999px;
    padding: 12px 26px;
    font-weight: 700;
    background: var(--primary);
    color: black;
    box-shadow: 0 8px 22px rgba(212, 162, 76, 0.36);
    transition: all 0.24s ease;
}

.btn-home:hover {
    transform: translateY(-2px);
    background: #bc8b38;
}

/* HOME SECTIONS */
.home-section {
    padding: 56px 16px;
    border-radius: 18px;
}

.home-section h2 {
    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
    text-align: center;
    margin-bottom: 26px;
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    background: var(--muted-bg);
    border: 1px solid #e2e8ef;
    border-radius: 14px;
    text-align: center;
    font-weight: 700;
    padding: 28px 14px;
    box-shadow: 0 8px 22px rgba(20, 30, 40, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 28px rgba(20, 30, 40, 0.14);
}

.testimonials {
    border-radius: 18px;
    padding: 54px 20px;
    color: black;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.testimonial-card {
    text-align: center;
    padding: 22px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: white;
}

.testimonial-card p {
    margin-bottom: 10px;
    font-style: italic;
}

.before-after-slider-wrap {
    overflow: hidden;
    border-radius: 16px;
}

.before-after-slider {
    display: flex;
    transition: transform 700ms ease;
    will-change: transform;
}

.before-after-slide {
    flex: 0 0 100%;
    min-width: 100%;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.before-after-card {
    background-color:white;
    text-align:center;
    border: 1px solid #e6ebf0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(20, 31, 43, 0.08);
}

.before-after-card img {
    width: 100%;
    height: clamp(230px, 31vw, 360px);
    object-fit: cover;
}

.before-after-card span {
    display: block;
    padding: 12px 14px;
    font-weight: 700;
}

.cta {
    margin-top: 8px;
    margin-bottom: 30px;
    border-radius: 18px;
    text-align: center;
    padding: 56px 20px;
}

.cta h2 {
    color: white;
    margin-bottom: 18px;
    font-size: clamp(1.45rem, 2.7vw, 2.2rem);
}

/* MOBILE BUTTONS + FOOTER */
.mobile-buttons {
    display: none;
    justify-content: center;
    gap: 12px;
    margin: 20px auto;
    width: min(100%, 420px);
}

.mobile-buttons.is-hidden-on-footer {
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
}

.mobile-buttons a {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    background: #fff;
    color: #111;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 0;
}

.mobile-buttons img {
    height: 24px;
}

.mobile-bottom-menu {
    position: relative;
    flex: 1;
}

.mobile-bottom-menu summary {
    list-style: none;
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    background: #fff;
    color: #111;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 0;
    cursor: pointer;
}

.mobile-bottom-menu summary::-webkit-details-marker {
    display: none;
}

.mobile-bottom-menu summary img {
    height: 26px;
    width: auto;
}

.mobile-bottom-menu-panel {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 82px;
    z-index: 60;
    background: #fff;
    border: 1px solid #dfdfdf;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(16px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-bottom-menu[open] .mobile-bottom-menu-panel {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-bottom-menu-panel a {
    text-decoration: none;
    color: #111;
    padding: 12px 14px;
    font-weight: 600;
    border-bottom: 1px solid #efefef;
}

.mobile-bottom-menu-panel a:last-child {
    border-bottom: 0;
}

.site-footer {
    width: 100%;
    text-align: center;
    font-size: 14px;
    padding: 16px 0 22px;
    color: black;
    background-color: white;
    margin-top: auto;
}

.site-footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-bottom: 6px;
}

.site-footer-links a {
    text-decoration: none;
    color: #1b1b1b;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-link-icon {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.footer-link-icon svg {
    width: 16px;
    height: 16px;
    display: block;
    fill: currentColor;
}

.site-footer-copy {
    opacity: 0.75;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 993px) {
    .header-nav {
        display: inline-flex;
    }
}

@media (max-width: 768px) {
    .container {
        width: calc(100% - 20px);
    }

    .hero {
        border-radius: 14px;
    }

    .slider-track {
        height: clamp(300px, 56vh, 480px);
    }

    .slide {
        grid-template-columns: 0 100% 0;
    }

    .slide-side {
        display: none;
    }

    .before-after-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .before-after-card img {
        height: clamp(160px, 35vw, 240px);
    }

    .header {
        padding: 0 14px;
    }

    .mobile-menu {
        display: none;
    }

    .hero-content h1 {
        font-size: clamp(1.35rem, 7vw, 1.9rem);
    }

    .hero-content p {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
        margin-bottom: 14px;
    }

    .home-section {
        padding: 36px 10px;
    }

    .home-section h2,
    .cta h2 {
        font-size: clamp(1.2rem, 5.8vw, 1.6rem);
        margin-bottom: 16px;
    }

    .service-card {
        font-size: 0.95rem;
        padding: 18px 10px;
    }

    .testimonial-card p,
    .before-after-card span {
        font-size: 0.92rem;
    }

    .btn-home {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

@media (max-width: 560px) {
    .header img {
        height: 56px;
    }

    .header-phone {
        display: inline-flex;
        font-size: 14px;
    }

    .header-phone img {
        display: none;
    }

    .mobile-buttons {
        display: flex;
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: 10px;
        width: auto;
        margin: 0;
        z-index: 50;
        background: #fff;
        border-radius: 12px;
        padding: 8px;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .container {
        padding-bottom: 88px;
    }

    .site-footer {
        padding-bottom: 98px;
    }
}

section {
    margin-top:20px;
    color:black;
}

/* INNER PAGES */
.page-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 290px;
}

.page-hero img {
    width: 100%;
    height: clamp(290px, 45vw, 430px);
    object-fit: cover;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.35), rgba(8, 8, 8, 0.62));
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: #fff;
}

.page-hero-overlay h1 {
    font-size: clamp(26px, 6vw, 48px);
    line-height: 1.15;
    margin-bottom: 10px;
}

.page-hero-overlay p {
    font-size: clamp(14px, 3.5vw, 20px);
    max-width: 760px;
}

.page-section {
    padding: 20px 16px;
}


.blog-detail-section {
    padding-top: 10px;
}

.blog-detail-hero {
    margin: 0 0 20px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.blog-detail-hero img {
    width: 100%;
    max-height: clamp(220px, 42vw, 430px);
    object-fit: cover;
}

.page-section h2 {
    font-size: clamp(22px, 4.8vw, 34px);
    color: white;
    margin-bottom: 18px;
    text-align: center;
}

.premium-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.premium-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(20, 20, 20, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    opacity:90%;
}

.premium-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(20, 20, 20, 0.15);
}

.premium-card h3,
.premium-card h2 {
    font-size: clamp(18px, 4vw, 24px);
    color: #222;
    margin-bottom: 10px;
}

.premium-card p {
    color: #444;
    font-size: clamp(14px, 3.5vw, 16px);
    line-height: 1.6;
}

.card-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(232, 162, 58, 0.15);
    margin-bottom: 14px;
    font-size: 20px;
}

.cta-box {
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.full-mobile-btn {
    width: 100%;
}

.filter-row {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 18px;
}

.filter-btn {
    white-space: nowrap;
    border: 1px solid #dddddd;
    background: rgba(255, 255, 255, 0.95);
    color: #222;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 14px;
}

.filter-btn.active,
.filter-btn:hover {
    border-color: #e8a23a;
    color: #e8a23a;
}

.gallery-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    min-height: 180px;
    max-height: 220px;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-card iframe {
    width: 100%;
    height: 100%;
    min-height: 180px;
    border: 0;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.07);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-popup[hidden] {
    display: none;
}

.gallery-popup {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(12, 14, 18, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    touch-action: none;
}

.gallery-popup-content {
    width: min(90vw, 1100px);
    max-height: 84vh;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: none;
}

.gallery-popup-content img,
.gallery-popup-content iframe {
    max-width: 100%;
    width: auto;
    max-height: 84vh;
    border-radius: 12px;
}

.gallery-popup-content iframe {
    width: min(90vw, 1100px);
    aspect-ratio: 16 / 9;
    border: 0;
}

.gallery-popup-close,
.gallery-popup-nav {
    position: absolute;
    border: 0;
    border-radius: 999px;
    width: 44px;
    height: 44px;
    font-size: 30px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    cursor: pointer;
}

.gallery-popup-close {
    top: 18px;
    right: 18px;
}

.gallery-popup-prev {
    left: 18px;
}

.gallery-popup-next {
    right: 18px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.info-card a {
    color: #222;
    text-decoration: none;
    font-weight: 600;
}

.premium-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.premium-form label {
    color: #222;
    font-size: 14px;
    font-weight: 600;
}

.premium-form input,
.premium-form textarea,
.premium-form select {
    width: 100%;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    padding: 12px;
    font-size: 15px;
    color: #222;
    background: #fff;
}

.map-wrap {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #ececec;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.map-wrap iframe {
    width: 100%;
    min-height: 320px;
    border: 0;
}

.info-note {
    margin-top: 16px;
    border-radius: 14px;
    background: #f3f3f3;
    color: #444;
    padding: 16px;
    font-weight: 600;
    text-align: center;
}

@media (min-width: 768px) {
    .page-section {
        padding: 30px 24px;
    }

    .premium-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .full-mobile-btn {
        width: auto;
    }

    .gallery-card {
        min-height: 200px;
    }

    .gallery-card img,
    .gallery-card iframe {
        min-height: 200px;
    }
}

@media (min-width: 992px) {
    .page-section {
        padding: 42px 40px;
    }

    .premium-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .services-page-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .contact-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 6px;
    }

    .gallery-card {
        min-height: 56px;
        max-height: 84px;
    }

    .gallery-card img,
    .gallery-card iframe {
        min-height: 56px;
    }

    .gallery-overlay {
        font-size: 10px;
        text-align: center;
        padding: 4px;
    }

    .gallery-popup {
        padding: 54px 12px 18px;
    }

    .gallery-popup-nav {
        bottom: 14px;
        top: auto;
        width: 42px;
        height: 42px;
    }

    .gallery-popup-prev {
        left: calc(50% - 58px);
    }

    .gallery-popup-next {
        right: calc(50% - 58px);
    }
}

.honeybot-field {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* BLOG DETAIL LANDING PAGE */
.landing-hero {
    display: grid;
    gap: 18px;
    align-items: center;
    color: white;
    background: linear-gradient(145deg, rgba(14, 26, 38, 0.88), rgba(9, 15, 27, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
}

.landing-hero-content h1 {
    font-size: clamp(24px, 6.2vw, 40px);
    line-height: 1.2;
    margin: 10px 0 14px;
}

.landing-hero-content p {
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(14px, 3.9vw, 18px);
    line-height: 1.65;
    margin-bottom: 16px;
}

.landing-badge {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(232, 162, 58, 0.16);
    border: 1px solid rgba(232, 162, 58, 0.45);
    color: #ffd391;
    font-weight: 700;
    font-size: 13px;
}

.landing-cta-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.landing-btn-alt {
    background: #ffffff;
    color: #1a1a1a;
    box-shadow: 0 8px 22px rgba(255, 255, 255, 0.24);
}

.landing-btn-alt:hover {
    background: #ececec;
}

.landing-quick-benefits {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.landing-quick-benefits li {
    position: relative;
    padding-left: 22px;
    font-weight: 600;
}

.landing-quick-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffd391;
}

.landing-hero-media {
    margin: 0;
}

.trust-grid .premium-card,
.services-page-grid .premium-card {
    height: 100%;
}

.landing-inline-cta {
    margin-top: 18px;
}

.landing-seo-copy {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(14px, 3.7vw, 17px);
    line-height: 1.75;
    max-width: 900px;
    margin: 0 auto 18px;
    text-align: center;
}

.landing-reviews {
    margin-top: 16px;
}

.landing-district-list {
    margin: 6px 0 20px;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
    gap: 10px;
    padding: 0;
}

.landing-district-list li {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    padding: 10px 12px;
    font-weight: 600;
    text-align: center;
}

@media (min-width: 900px) {
    .landing-hero {
        grid-template-columns: 1.1fr 0.9fr;
        padding: 26px;
    }

    .landing-cta-group {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .services-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
