/* 基本樣式重置 */
@charset "utf-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);/*思源黑體 Noto Sans TC*/

body {
    font-family: "微軟正黑體", "Arial Unicode MS";
	line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
	word-wrap: break-word;
	word-break: break-all;
	padding: 0;
	margin: 0;
}

a{color:#333333;text-decoration: none}
a:hover{color:#0a7237; text-decoration: none}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* 導航欄樣式 */
header {
    background-color: rgba(255,255,255,0.90);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 2.0rem;
    font-weight: bold;
    color: #2c3e50;
}

.logo img {
    height: 70px;
    margin-right: 10px;
}

@media (max-width: 768px) {
.logo img {
    height: 50px;
	}
	
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    position: relative;
    margin-left: 2rem;
	margin-top: 1rem;
	font-family: "Noto Sans TC","微軟正黑體", "Arial Unicode MS";
}

.nav-menu a {
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
	color:#333333;
}

.nav-menu a:hover {
    color: #033f16;
}

/* 下拉式選單 */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 5px;
    top: 100%;
    left: 0;
	max-height: 80vh; /* 視窗高度的 80% */
    overflow-y: auto; /* 超出時可滾動 */
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    display: block;
    border-bottom: 1px solid #eee;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
    color: #033f16;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* 手機版菜單按鈕 */
.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s;
}

/* Banner輪播樣式 */
.banner {
    position: relative;
    margin-top: 70px;
    overflow: hidden;
    height: 500px;
}


.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background-color: white;
}

/* 主要內容樣式 */
.container {
    max-width: 1200px;
    margin: 0.1rem auto;
    padding: 0 1rem;
}

.intro {
    text-align: center;
    margin-bottom: 3rem;
}

.intro h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.intro p {
    font-size: 1.1rem;
    color: #7f8c8d;
}

.services {
    margin: 4rem 0;
}

.services h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 0.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    color: #7f8c8d;
}

.contact {
    margin: 4rem 0;
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.contact-info p {
    margin: 1rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info i {
    margin-right: 10px;
    color: #e74c3c;
}

/* 頁尾樣式 */
footer {
    background-color: #033f16;
    color: #f2f2f2;
    padding: 3rem 0 0;
}

footer a{color: #f2f2f2;}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #f29f3f;
}

.footer-section p, .footer-section li {
    margin-bottom: 1rem;
    color: #bdc3c7;
}

.footer-section ul li a:hover {
    color: #f29f3f;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* 響應式設計 */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 65px;
        right: -100%;/*left: -100%*/
        background-color: #fff;
        width: 80%;
        height: calc(100vh - 70px);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        transition: right 0.3s ease;/* transition: left 0.3s ease*/
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;/*left: 0*/
    }

    .nav-menu li {
        margin: 1rem 0;
        width: 100%;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        display: none;
        width: 100%;
        margin-top: 0.5rem;
        padding-left: 1rem;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .menu-toggle {
        display: flex;
    }

    /* 漢堡菜單動畫 */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }


}

 /* 行動呼籲按鈕 */

        .cta-button {

            display: inline-block;
            background-color: #0d82f5;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 20px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }

        

        .cta-button:hover {
            background-color: #e65a2b;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(230, 90, 43, 0.3);
        }

    

        .text-center {
            text-align: center;

        }

        /* 右下角浮動按鈕樣式 */
        .floating-buttons {
            position: fixed;
            right: 20px;
            bottom: 20px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .float-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .float-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
        }
        
        .float-btn img {
            width: 30px;
            height: 30px;
        }
        
        .phone {
            background-color: #4CAF50;
        }
        
        .line {
            background-color: #06C755;
        }
        
        .top {
            background-color: #f29f3f;
        }
		.booking {
  background-color: #FF9800; /* 橘色預約按鈕 */
}
     /* 英雄區塊 */

        .hero {

            background-color: var(--primary-color);

            color: white;

            padding: 80px 0;

            text-align: center;

        }

        

        .hero h1 {

            font-size: 2.5rem;

            margin-bottom: 20px;

            color: white;

        }

        

        .tagline {

            display: flex;

            justify-content: center;

            flex-wrap: wrap;

            gap: 15px;

            margin-top: 20px;

        }

        

        .tagline-item {

            background-color: rgba(255,255,255,0.2);

            padding: 8px 15px;

            border-radius: 20px;

            font-size: 14px;

        }

        

        /* 服務保證區塊 */

        .service-highlights {

            padding: 60px 0;

        }

        

        .section-title {

            text-align: center;

            margin-bottom: 0px;

        }

        

        .guarantee-grid {

            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        

        .guarantee-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;

        }

        

        .guarantee-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        

        .guarantee-card h3 {
            color: var(--accent-color);
            margin-bottom: 15px;
            font-size: 1.2rem;

        }

        

        .guarantee-card i {
            font-size: 2rem;
            color: var(--primary-color);

            margin-bottom: 15px;

            display: block;

        }

        

        /* 評價區塊 */

        .reviews {

            background-color: var(--secondary-color);

            padding: 20px 0;

        }

        

        .review-grid {

            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;

        }

        

        .review-card {

            background: white;
            padding: 8px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);

        }


        

        .review-card p {

           /* margin-bottom: 15px;*/

            font-style: italic;

        }

        

        .reviewer {

            font-weight: bold;

            color: var(--primary-color);

        }

.breadcrumb{font-weight: normal;font-size: 15px}
main {
        margin-top: 100px;
        padding-bottom: 50px;
    }
@media (max-width: 768px) {
        main {
            margin-top: 80px;
 }
        
}
/*****************小圖*****************/
.circle-img {
    width: 100%;
    aspect-ratio: 1 / 1; /* 確保寬高相等 */
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 220px; /* 可選：限制最大大小 */
    margin: 0 auto;
}

.circle-img:hover {
    transform: scale(1.08);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.card-title {
    font-weight: 600;
    text-align: center;
}
.card-text {
    text-align: center;
    color: #6c757d;
}

/* Hao Jiao She conversion homepage refresh */
:root {
    --hjs-green-950: #062f24;
    --hjs-green-900: #073f2e;
    --hjs-green-800: #0b5a41;
    --hjs-green-700: #10704f;
    --hjs-mint: #eaf5ee;
    --hjs-paper: #fbfaf5;
    --hjs-ink: #18231e;
    --hjs-muted: #64736b;
    --hjs-gold: #d2a84d;
    --hjs-line: #d8e5dc;
    --hjs-shadow: 0 18px 48px rgba(6, 47, 36, .16);
}

body.hjs-home {
    background: var(--hjs-mint);
    color: var(--hjs-ink);
    font-family: "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
    word-break: normal;
}

.hjs-home header {
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(6, 47, 36, .12);
    box-shadow: 0 10px 28px rgba(6, 47, 36, .10);
}

.hjs-home .navbar {
    padding: .5rem 5%;
}

.hjs-home .logo img {
    height: 70px;
    filter: none;
}

.hjs-home .nav-menu a {
    color: var(--hjs-green-950);
    font-weight: 700;
}

.hjs-home .nav-menu a:hover {
    color: var(--hjs-green-700);
}

.hjs-home .dropdown-content {
    background: #fff;
    border-top: 4px solid var(--hjs-gold);
    box-shadow: 0 20px 50px rgba(0,0,0,.16);
}

.hjs-home .dropdown-content a {
    color: var(--hjs-ink);
}

.hjs-home .menu-toggle .bar {
    background-color: var(--hjs-green-950);
}

.hjs-home main {
    margin-top: 0;
    padding-bottom: 0;
}

.hjs-hero {
    position: relative;
    min-height: 760px;
    display: grid;
    align-items: end;
    overflow: hidden;
    background: var(--hjs-green-950);
}

.hjs-hero-media,
.hjs-hero-overlay {
    position: absolute;
    inset: 0;
}

.hjs-hero-media {
    display: block;
    background: url("../images/codex/home-hero.jpg") center 34%/cover no-repeat;
    transform: none;
}

.hjs-hero-overlay {
    background:
        linear-gradient(180deg, rgba(6,47,36,.06) 0%, rgba(6,47,36,.02) 30%, rgba(6,47,36,.30) 64%, rgba(6,47,36,.74) 100%),
        linear-gradient(90deg, rgba(6,47,36,.52) 0%, rgba(6,47,36,.20) 36%, rgba(6,47,36,.03) 76%, rgba(6,47,36,.02) 100%);
}

.hjs-hero-inner {
    position: relative;
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding-top: 455px;
    padding-bottom: 96px;
    color: #fff;
}

.hjs-kicker {
    margin: 0 0 14px;
    color: #f2d68f;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hjs-kicker.dark {
    color: var(--hjs-green-700);
}

.hjs-hero h1 {
    display: none;
    max-width: 760px;
    margin: 0;
    font-size: clamp(44px, 6vw, 82px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: 0;
}

.hjs-lead {
    max-width: 560px;
    margin: 16px 0 24px;
    color: rgba(255,255,255,.94);
    font-size: 19px;
    text-shadow: 0 2px 14px rgba(0,0,0,.32);
}

.hjs-hero-actions,
.hjs-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hjs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 8px;
    font-weight: 900;
    text-decoration: none;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.hjs-btn:hover {
    transform: translateY(-2px);
}

.hjs-btn-primary {
    background: #06c755;
    color: #fff !important;
    box-shadow: 0 14px 30px rgba(6, 199, 85, .28);
}

.hjs-btn-primary:hover {
    background: #05b24d;
}

.hjs-btn-ghost {
    border: 1px solid rgba(255,255,255,.52);
    color: #fff !important;
    background: rgba(255,255,255,.08);
}

.hjs-btn-light {
    background: #fff;
    color: var(--hjs-green-900) !important;
}

.hjs-hero-points {
    margin-top: 26px;
}

.hjs-hero-points span {
    border: 1px solid rgba(242,214,143,.42);
    color: #f7e7b8;
    border-radius: 999px;
    padding: 8px 14px;
    background: rgba(0,0,0,.16);
    font-size: 14px;
}

.hjs-hero-points a {
    border: 1px solid rgba(242,214,143,.42);
    color: #f7e7b8 !important;
    border-radius: 999px;
    padding: 8px 14px;
    background: rgba(0,0,0,.16);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.hjs-quick {
    width: min(1120px, calc(100% - 40px));
    margin: -74px auto 0;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    border: 1px solid var(--hjs-line);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--hjs-shadow);
}

.hjs-quick a {
    padding: 24px;
    color: var(--hjs-ink);
    border-right: 1px solid var(--hjs-line);
    text-decoration: none;
    transition: background .22s ease, transform .22s ease;
}

.hjs-quick a:hover {
    background: var(--hjs-mint);
}

.hjs-quick a:last-child {
    border-right: 0;
}

.hjs-quick strong,
.hjs-quick span {
    display: block;
}

.hjs-quick strong {
    color: var(--hjs-green-900);
    font-size: 22px;
    margin-bottom: 4px;
}

.hjs-quick span {
    color: var(--hjs-muted);
}

.hjs-section {
    padding: 92px 20px;
}

.hjs-wrap {
    max-width: 1120px;
    margin: 0 auto;
}

.hjs-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(480px, 560px);
    gap: 46px;
    align-items: center;
}

.hjs-section h2 {
    color: var(--hjs-green-950);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.18;
    margin: 0 0 18px;
    font-weight: 900;
}

.hjs-section p {
    color: var(--hjs-muted);
    font-size: 18px;
}

.hjs-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.hjs-trust a {
    background: #fff;
    border: 1px solid var(--hjs-line);
    border-radius: 12px;
    padding: 18px;
    text-decoration: none;
    transition: transform .22s ease, box-shadow .22s ease;
}

.hjs-trust a:hover,
.hjs-service-card:hover,
.hjs-branch-grid a:hover,
.hjs-action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(6,47,36,.14);
}

.hjs-trust b {
    display: block;
    color: var(--hjs-green-800);
    font-size: 30px;
}

.hjs-trust span {
    color: var(--hjs-muted);
    font-size: 14px;
}

.hjs-image-card {
    display: block;
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--hjs-shadow);
    border: 8px solid #fff;
}

.hjs-image-card img {
    width: 100%;
    height: 540px;
    object-fit: cover;
}

.hjs-image-card-wide {
    align-self: center;
}

.hjs-image-card-wide img {
    aspect-ratio: 16 / 11;
    height: auto;
    object-fit: cover;
    object-position: center center;
}

.hjs-services {
    background: var(--hjs-paper);
}

.hjs-section-head {
    max-width: 720px;
    margin-bottom: 34px;
}

.hjs-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.hjs-service-card {
    display: block;
    background: #fff;
    border: 1px solid var(--hjs-line);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(6,47,36,.09);
    text-decoration: none;
    transition: transform .22s ease, box-shadow .22s ease;
}

.hjs-service-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.hjs-service-card div {
    padding: 22px;
}

.hjs-service-card span {
    display: block;
    color: var(--hjs-gold);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 8px;
}

.hjs-service-card h3,
.hjs-branch-grid h3,
.hjs-action-card h3 {
    color: var(--hjs-green-950);
    font-size: 24px;
    font-weight: 900;
    margin: 0 0 10px;
}

.hjs-service-card p {
    font-size: 16px;
    margin: 0;
}

.hjs-service-feature {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--hjs-green-950), var(--hjs-green-800));
}

.hjs-service-feature h3,
.hjs-service-feature p {
    color: #fff;
}

.hjs-card-cta,
.hjs-action-card span {
    display: inline-block;
    margin-top: 18px;
    color: var(--hjs-green-800);
    font-weight: 900;
}

.hjs-service-feature .hjs-card-cta {
    color: #fff;
    background: #06c755;
    border-radius: 8px;
    padding: 12px 18px;
}

.hjs-branches {
    background: linear-gradient(180deg, var(--hjs-green-950), var(--hjs-green-900));
}

.hjs-branches h2,
.hjs-branches .hjs-section-head p {
    color: #fff;
}

.hjs-branch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hjs-branch-grid a {
    display: block;
    background: rgba(255,255,255,.94);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    box-shadow: var(--hjs-shadow);
    text-decoration: none;
    transition: transform .22s ease, box-shadow .22s ease;
}

.hjs-branch-grid img {
    width: min(280px, 70%);
    margin: 0 auto 18px;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,.16));
}

.hjs-branch-grid p {
    margin: 0 0 8px;
    color: var(--hjs-muted);
}

.hjs-action-grid {
    background: var(--hjs-mint);
}

.hjs-action-grid .hjs-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.hjs-action-card {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 20px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--hjs-line);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(6,47,36,.08);
    text-decoration: none;
    transition: transform .22s ease, box-shadow .22s ease;
}

.hjs-action-card img {
    width: 160px;
}

.hjs-action-card p {
    color: var(--hjs-muted);
    margin: 0 0 10px;
}

.hjs-reserve {
    padding: 54px 20px;
    background: var(--hjs-green-950);
    color: #fff;
}

.hjs-reserve .hjs-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
}

.hjs-reserve h2 {
    color: #fff;
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
}

.hjs-home footer {
    background: #041f18;
}

.hjs-home footer a {
    color: #fff;
}

.hjs-home .footer-section h3::after {
    background-color: var(--hjs-gold);
}

.hjs-home .line {
    background-color: #06c755;
}

.hjs-mobile-reserve {
    display: none;
}

@media (max-width: 992px) {
    .hjs-home .nav-menu {
        background: var(--hjs-green-950);
    }
    .hjs-split,
    .hjs-service-grid,
    .hjs-action-grid .hjs-wrap {
        grid-template-columns: 1fr;
    }
    .hjs-quick,
    .hjs-branch-grid {
        grid-template-columns: 1fr;
    }
    .hjs-quick a {
        border-right: 0;
        border-bottom: 1px solid var(--hjs-line);
    }
    .hjs-quick a:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 768px) {
    body.hjs-home {
        padding-bottom: 70px;
    }
    .hjs-home .logo img {
        height: 50px;
    }
    .hjs-hero {
        min-height: 660px;
    }
    .hjs-hero-media {
        background-position: 62% top;
        background-size: auto 350px;
    }
    .hjs-hero-overlay {
        background:
            linear-gradient(180deg, rgba(6,47,36,.10) 0%, rgba(6,47,36,.05) 35%, rgba(6,47,36,.72) 76%, rgba(6,47,36,.94) 100%),
            linear-gradient(90deg, rgba(6,47,36,.26) 0%, rgba(6,47,36,.10) 100%);
    }
    .hjs-hero-inner {
        width: min(calc(100% - 28px), 1120px);
        padding-top: 300px;
        padding-bottom: 70px;
    }
    .hjs-hero h1 {
        display: none;
    }
    .hjs-lead {
        font-size: 16px;
        line-height: 1.7;
        margin: 12px 0 18px;
        overflow-wrap: anywhere;
        word-break: break-word;
        max-width: 100%;
    }
    .hjs-section h2 {
        font-size: clamp(26px, 7.7vw, 32px);
        line-height: 1.24;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .hjs-section p {
        font-size: 16px;
        line-height: 1.8;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .hjs-hero-points a {
        max-width: 100%;
        font-size: 13px;
        padding: 7px 12px;
    }
    .hjs-hero-points a:nth-child(n+3) {
        display: none;
    }
    .hjs-hero-actions .hjs-btn,
    .hjs-btn {
        width: 100%;
    }
    .hjs-quick {
        width: calc(100% - 28px);
        margin-top: -54px;
    }
    .hjs-section {
        padding: 58px 16px;
    }
    .hjs-trust {
        grid-template-columns: 1fr;
    }
    .hjs-image-card img {
        height: 320px;
    }
    .hjs-image-card-wide img {
        aspect-ratio: 16 / 11;
        height: auto;
    }
    .hjs-service-card img {
        height: 220px;
    }
    .hjs-action-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hjs-action-card img {
        margin: 0 auto;
    }
    .hjs-reserve .hjs-wrap {
        display: block;
    }
    .hjs-reserve .hjs-btn {
        margin-top: 20px;
    }
    .floating-buttons {
        bottom: 82px;
        right: 14px;
    }
    .hjs-mobile-reserve {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        display: grid;
        grid-template-columns: 1.4fr .9fr;
        background: #fff;
        border-top: 1px solid var(--hjs-line);
        box-shadow: 0 -10px 30px rgba(6,47,36,.2);
        padding: 9px;
        gap: 8px;
    }
    .hjs-mobile-reserve a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        border-radius: 8px;
        font-weight: 900;
        color: #fff;
        background: #06c755;
    }
    .hjs-mobile-reserve a:last-child {
        background: var(--hjs-green-900);
    }
}
       
