        .page-content {
            min-height: 0;
        }

        .surin-reference-home {
            overflow: hidden;
        }

.surin-reference-home .hero {
            min-height: clamp(500px, 43vw, 660px);
        }

        .surin-reference-home .list-card li a {
            display: block;
            color: inherit;
            text-decoration: none;
            transition: color .2s ease, transform .2s ease;
        }

        .surin-reference-home .list-card li a:hover,
        .surin-reference-home .list-card li a:focus-visible {
            color: var(--green);
            transform: translateX(4px);
        }

        .surin-reference-home .small-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .surin-reference-home .home-promo-section {
            padding-top: clamp(34px, 5vw, 70px);
            padding-bottom: 0;
        }

        .surin-reference-home .home-promo-heading {
            display: flex;
            align-items: end;
            justify-content: space-between;
            margin-bottom: 18px;
        }

        .surin-reference-home .home-promo-heading span {
            color: var(--gold);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: .15em;
        }

        .surin-reference-home .home-promo-heading h2 {
            margin: 3px 0 0;
            color: var(--navy);
            font-size: clamp(22px, 3vw, 34px);
        }

        .surin-reference-home .home-promo-slider {
            position: relative;
            width: 100%;
            height: auto !important;
            aspect-ratio: 19 / 6 !important;
            overflow: hidden;
            border-radius: 20px;
            background: var(--navy);
            box-shadow: 0 15px 40px rgba(11, 36, 48, .14);
            touch-action: pan-y;
        }

        .surin-reference-home .home-promo-track {
            position: relative;
            width: 100%;
            height: 100%;
            aspect-ratio: 19 / 6;
        }

        .surin-reference-home .home-promo-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity .55s ease, visibility .55s ease;
        }

        .surin-reference-home .home-promo-slide.active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .surin-reference-home .home-promo-slide-link {
            position: relative;
            display: block;
            width: 100%;
            height: 100%;
            aspect-ratio: 19 / 6;
        }

        .surin-reference-home .home-promo-slide img {
            width: 100%;
            height: 100%;
            aspect-ratio: 19 / 6;
            object-fit: cover;
        }

        .surin-reference-home .home-promo-overlay {
            position: absolute;
            inset: auto 0 0;
            padding: clamp(50px, 8vw, 100px) clamp(22px, 4vw, 52px) clamp(28px, 4vw, 46px);
            color: #fff;
            background: linear-gradient(0deg, rgba(5, 27, 36, .92), rgba(5, 27, 36, .5) 55%, transparent);
        }

        .surin-reference-home .home-promo-overlay h3 {
            max-width: 850px;
            margin: 0;
            color: #fff;
            font-size: clamp(20px, 3vw, 38px);
            line-height: 1.3;
            text-shadow: 0 2px 14px rgba(0, 0, 0, .25);
        }

        .surin-reference-home .home-promo-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 12px;
            color: var(--gold-light);
            font-size: 13px;
            font-weight: 800;
        }

        .surin-reference-home .home-promo-arrow {
            position: absolute;
            z-index: 3;
            top: 50%;
            width: 42px;
            height: 42px;
            display: grid;
            place-items: center;
            border: 1px solid rgba(255, 255, 255, .35);
            border-radius: 50%;
            background: rgba(5, 27, 36, .5);
            color: #fff;
            transform: translateY(-50%);
            backdrop-filter: blur(5px);
            transition: background .2s ease, color .2s ease;
        }

        .surin-reference-home .home-promo-arrow:hover {
            background: var(--gold);
            color: var(--navy);
        }

        .surin-reference-home .home-promo-prev {
            left: 16px;
        }

        .surin-reference-home .home-promo-next {
            right: 16px;
        }

        .surin-reference-home .home-promo-dots {
            position: absolute;
            z-index: 3;
            left: 50%;
            bottom: 13px;
            display: flex;
            gap: 7px;
            transform: translateX(-50%);
        }

        .surin-reference-home .home-promo-dot {
            width: 8px;
            height: 8px;
            padding: 0;
            border: 1px solid rgba(255, 255, 255, .75);
            border-radius: 50%;
            background: rgba(255, 255, 255, .25);
            transition: width .2s ease, background .2s ease;
        }

        .surin-reference-home .home-promo-dot.active {
            width: 25px;
            border-radius: 999px;
            background: var(--gold-light);
        }

        @media (max-width: 600px) {
            .surin-reference-home .home-promo-slider {
                height: auto;
                height: auto !important;
                aspect-ratio: 19 / 6 !important;
                border-radius: 18px;
            }

            .surin-reference-home .home-promo-heading {
                margin-bottom: 12px;
            }

            .surin-reference-home .home-promo-overlay {
                padding: 45px 18px 28px;
            }

            .surin-reference-home .home-promo-overlay h3 {
                display: -webkit-box;
                overflow: hidden;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 2;
            }

            .surin-reference-home .home-promo-cta {
                margin-top: 7px;
                font-size: 13px;
            }

            .surin-reference-home .home-promo-arrow {
                width: 36px;
                height: 36px;
            }

            .surin-reference-home .home-promo-prev {
                left: 9px;
            }

            .surin-reference-home .home-promo-next {
                right: 9px;
            }

            .surin-reference-home .home-promo-dots {
                bottom: 9px;
            }
        }

        .surin-reference-home .home-calendar-grid { display: flex; flex-wrap: wrap; }

        .surin-reference-home .home-calendar-year+.home-calendar-year {
            margin-top: 34px;
        }

        .surin-reference-home .home-calendar-year-heading {
            margin: 0 0 14px;
            color: var(--navy);
            font-size: clamp(20px, 2.4vw, 28px);
        }

        .surin-reference-home .home-calendar-card {
            min-width: 0;
            overflow: hidden;
            border: 1px solid var(--border);
            border-radius: 16px;
            background: #fff;
            box-shadow: var(--shadow);
        }

        .surin-reference-home .home-calendar-image {
            width: 100%;
            display: block;
            padding: 0;
            border: 0;
            background: #f5f1e8;
            cursor: zoom-in;
        }

        .surin-reference-home .home-calendar-image img {
            display: block;
            width: 100%;
            height: auto;
            object-fit: contain;
        }

        .surin-reference-home .home-calendar-card-content {
            padding: 16px;
        }

        .surin-reference-home .home-calendar-card h3 {
            margin: 0;
            color: var(--navy);
            font-size: 16px;
            line-height: 1.45;
        }

        .surin-reference-home .home-calendar-card p {
            display: -webkit-box;
            overflow: hidden;
            margin: 7px 0 0;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.65;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3;
        }

        .surin-reference-home .home-calendar-empty {
            grid-column: 1/-1;
            padding: 34px 20px;
            border-radius: 14px;
            background: rgba(255, 255, 255, .65);
            color: var(--muted);
            text-align: center;
        }

        

        .surin-reference-home .hero-bg {
            z-index: 0;
        }

        .surin-reference-home .hero-video {
            position: absolute;
            z-index: 1;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .surin-reference-home .hero-overlay {
            z-index: 2;
        }

        .surin-reference-home .hero-content {
            z-index: 3;
        }

        .surin-reference-home .hero-controls {
            position: absolute;
            z-index: 4;
            right: clamp(14px, 3vw, 34px);
            bottom: 65px;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 8px;
            max-width: calc(100% - 28px);
        }

        .surin-reference-home .hero-sound-toggle,
        .surin-reference-home .hero-fullscreen-toggle {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 7px 11px;
            border: 1px solid rgba(255, 255, 255, .15);
            border-radius: 999px;
            background: rgba(0, 0, 0, .35);
            color: #fff;
            font-size: 13px;
            white-space: nowrap;
            cursor: pointer;
            backdrop-filter: blur(8px);
        }

        .surin-reference-home .hero-sound-toggle i,
        .surin-reference-home .hero-fullscreen-toggle i {
            font-size: 14px;
        }

        .surin-reference-home .hero-sound-toggle:focus-visible,
        .surin-reference-home .hero-fullscreen-toggle:focus-visible {
            outline: 2px solid var(--gold-light);
            outline-offset: 2px;
        }

        .surin-reference-home .hero-video:fullscreen,
        .surin-reference-home .hero-video:-webkit-full-screen,
        .surin-reference-home .hero:fullscreen .hero-video,
        .surin-reference-home .hero:-webkit-full-screen .hero-video {
            width: 100%;
            height: 100%;
            object-fit: contain;
            background: #000;
        }

        @media(max-width:430px) {
            .surin-reference-home .hero-controls {
                gap: 6px;
                right: 14px
            }

            .surin-reference-home .hero-sound-toggle,
            .surin-reference-home .hero-fullscreen-toggle {
                gap: 5px;
                padding: 7px 9px;
                font-size: 10px
            }
        }

        .surin-reference-home .historical-map-preview {
            min-height: clamp(340px, 42vw, 620px);
            overflow: hidden;
            border-radius: 21px;
            background: var(--cream);
        }

        .surin-reference-home .historical-map-preview .surin-map-wrapper {
            max-width: none;
            height: 100%;
            min-height: inherit;
            padding: 0;
        }

        .surin-reference-home .historical-map-preview .surin-map-canvas {
            width: 100%;
            min-height: inherit;
            aspect-ratio: auto;
        }

        #historical-khmer-route {
            scroll-margin-top: 90px;
        }

        @media (max-width: 768px) {
            .surin-reference-home .historical-map-preview {
                min-height: clamp(340px, 72vw, 500px);
            }
        }

        .surin-reference-home .experience-grid {
            display: grid;
            grid-template-columns: repeat(12, minmax(0, 1fr));
            grid-template-rows: 240px 270px;
            gap: 11px;
        }

        .surin-reference-home .experience-item {
            min-width: 0;
            min-height: 0;
            display: flex;
            flex-direction: column;
            color: inherit;
            text-decoration: none;
        }

        .surin-reference-home .experience-item:nth-child(1) {
            grid-column: span 4;
        }

        .surin-reference-home .experience-item:nth-child(n+2) {
            grid-column: span 2;
        }

        .surin-reference-home .experience-image {
            position: relative;
            flex: 1 1 auto;
            min-height: 0;
            overflow: hidden;
            border-radius: 13px;
            background: var(--cream-2, #f5f1e8);
        }

        .surin-reference-home .experience-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(8, 45, 59, 0);
            transition: background .25s ease;
            pointer-events: none;
        }

        .surin-reference-home .experience-image img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .25s ease;
        }

        .surin-reference-home .experience-item:hover .experience-image img,
        .surin-reference-home .experience-item:focus-visible .experience-image img {
            transform: scale(1.03);
        }

        .surin-reference-home .experience-item:hover .experience-image::after,
        .surin-reference-home .experience-item:focus-visible .experience-image::after {
            background: rgba(8, 45, 59, .08);
        }

        .surin-reference-home .experience-title {
            margin: 8px 3px 0;
            color: var(--navy);
            font-size: 15px;
            line-height: 1.35;
            text-align: center;
        }

        @media (max-width: 1200px) {
            .surin-reference-home .experience-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
                grid-template-rows: none;
                grid-auto-rows: 230px;
            }

            .surin-reference-home .experience-item:nth-child(n) {
                grid-column: span 1;
            }
        }

        @media (max-width: 768px) {
            .surin-reference-home .experience-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                grid-auto-rows: 205px;
                gap: 8px;
            }
        }

        @media (max-width: 430px) {
            .surin-reference-home .experience-grid {
                grid-template-columns: 1fr;
                grid-auto-rows: 220px;
            }
        }

        .surin-reference-home .festival-gallery {
            display: grid;
            grid-template-columns: 1.7fr 1fr 1fr;
            grid-template-rows: repeat(2, minmax(0, 1fr));
            grid-auto-rows: minmax(0, 1fr);
            gap: 11px;
            height: clamp(430px, 34vw, 650px);
            min-height: 0;
        }

        .surin-reference-home .festival-item {
            position: relative;
            min-width: 0;
            min-height: 0;
            display: block;
            overflow: hidden;
            border-radius: 13px;
            background: var(--navy);
            color: #fff;
            text-decoration: none;
        }

        .surin-reference-home .festival-item:first-child {
            grid-row: 1 / span 2;
        }

        .surin-reference-home .festival-item img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .3s ease;
        }

        .surin-reference-home .festival-item::after {
            content: '';
            position: absolute;
            inset: 35% 0 0;
            background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .68));
            transition: background .3s ease;
            pointer-events: none;
        }

        .surin-reference-home .festival-title {
            position: absolute;
            z-index: 1;
            right: 14px;
            bottom: 12px;
            left: 14px;
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            line-height: 1.35;
            text-shadow: 0 1px 5px rgba(0, 0, 0, .3);
        }

        .surin-reference-home .festival-item:first-child .festival-title {
            font-size: clamp(18px, 2vw, 22px);
        }

        .surin-reference-home .festival-item:hover img,
        .surin-reference-home .festival-item:focus-visible img {
            transform: scale(1.03);
        }

        .surin-reference-home .festival-item:hover::after,
        .surin-reference-home .festival-item:focus-visible::after {
            background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .78));
        }

        /* Let the final incomplete row use the full gallery width. */
        .surin-reference-home .festival-gallery:not(.festival-count-1):not(.festival-count-2):not(.festival-count-3):not(.festival-count-4) .festival-item:last-child:nth-child(3n) {
            grid-column: span 3;
        }

        .surin-reference-home .festival-gallery:not(.festival-count-1):not(.festival-count-2):not(.festival-count-3):not(.festival-count-4) .festival-item:last-child:nth-child(3n + 1) {
            grid-column: span 2;
        }

        .surin-reference-home .festival-gallery.festival-count-1 {
            grid-template-columns: 1fr;
            grid-template-rows: minmax(300px, 1fr);
        }

        .surin-reference-home .festival-gallery.festival-count-1 .festival-item:first-child {
            grid-row: auto;
        }

        .surin-reference-home .festival-gallery.festival-count-2 {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            grid-template-rows: minmax(300px, 1fr);
        }

        .surin-reference-home .festival-gallery.festival-count-2 .festival-item:first-child {
            grid-row: auto;
        }

        .surin-reference-home .festival-gallery.festival-count-3 {
            grid-template-columns: 1.7fr 1fr;
            grid-template-rows: repeat(2, minmax(0, 1fr));
        }

        .surin-reference-home .festival-gallery.festival-count-3 .festival-item:first-child {
            grid-row: 1 / span 2;
        }

        .surin-reference-home .festival-gallery.festival-count-4 {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            grid-template-rows: repeat(2, minmax(0, 1fr));
        }

        .surin-reference-home .festival-gallery.festival-count-4 .festival-item:first-child {
            grid-row: auto;
        }

        @media (max-width: 768px) {
            .surin-reference-home .festival-gallery {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                grid-template-rows: minmax(210px, auto) repeat(2, minmax(150px, 1fr));
                gap: 8px;
                height: auto;
                min-height: 0;
            }

            .surin-reference-home .festival-item:first-child {
                grid-column: 1 / -1;
                grid-row: auto;
            }

            .surin-reference-home .festival-gallery.festival-count-1 {
                grid-template-rows: minmax(260px, 1fr);
            }

            .surin-reference-home .festival-gallery.festival-count-2 {
                grid-template-rows: repeat(2, minmax(170px, 1fr));
            }

            .surin-reference-home .festival-gallery.festival-count-2 .festival-item:first-child {
                grid-column: 1 / -1;
            }

            .surin-reference-home .festival-gallery.festival-count-3,
            .surin-reference-home .festival-gallery.festival-count-4 {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                grid-template-rows: minmax(210px, auto) minmax(150px, 1fr);
            }

            .surin-reference-home .festival-gallery.festival-count-3 .festival-item:first-child {
                grid-column: 1 / -1;
                grid-row: auto;
            }

            .surin-reference-home .festival-gallery.festival-count-4 .festival-item:first-child {
                grid-column: auto;
            }

            .surin-reference-home .festival-title {
                right: 10px;
                bottom: 9px;
                left: 10px;
                font-size: 13px;
            }
        }

        @media (max-width: 430px) {
            .surin-reference-home .festival-gallery {
                grid-template-columns: 1fr;
                grid-template-rows: none;
                grid-auto-rows: minmax(190px, 1fr);
            }

            .surin-reference-home .festival-gallery .festival-item:first-child {
                grid-column: auto;
            }
        }

        .home-calendar-lightbox {
            position: fixed;
            z-index: 2200;
            inset: 0;
            display: grid;
            place-items: center;
            padding: 28px;
            background: rgba(4, 20, 27, .88);
            opacity: 0;
            visibility: hidden;
            transition: .2s ease;
        }

        .home-calendar-lightbox.open {
            opacity: 1;
            visibility: visible;
        }

        .home-calendar-lightbox-dialog {
            position: relative;
            max-width: min(1000px, 100%);
            max-height: calc(100vh - 56px);
        }

        .home-calendar-lightbox img {
            display: block;
            max-width: 100%;
            max-height: calc(100vh - 56px);
            width: auto;
            height: auto;
            margin: auto;
            object-fit: contain;
            border-radius: 12px;
            box-shadow: 0 24px 70px rgba(0, 0, 0, .4);
        }

        .home-calendar-lightbox-close {
            position: absolute;
            z-index: 2;
            top: 10px;
            right: 10px;
            width: 42px;
            height: 42px;
            display: grid;
            place-items: center;
            border: 1px solid rgba(255, 255, 255, .4);
            border-radius: 50%;
            background: rgba(4, 20, 27, .72);
            color: #fff;
            font-size: 18px;
            cursor: pointer;
        }

        @media (max-width: 480px) {
            .home-calendar-lightbox {
                padding: 14px;
            }

            .home-calendar-lightbox-dialog,
            .home-calendar-lightbox img {
                max-height: calc(100vh - 28px);
            }
        }

        /* Keep the shared frontend layout as the single owner of navigation on this page. */
        /* resources/tours/styles.css also contains a legacy header. Keep the shared
               frontend layout as the single owner of navigation on this page. */
        .site-header {
            position: sticky;
            inset: auto;
            top: 0;
            height: 82px;
            background: rgba(11, 36, 48, .97);
            color: #fff;
            box-shadow: 0 5px 24px rgba(11, 36, 48, .16);
        }

        .site-header.scrolled {
            height: 72px;
            background: rgba(11, 36, 48, .985);
            box-shadow: 0 5px 24px rgba(11, 36, 48, .16);
            backdrop-filter: none;
        }

        .site-header .nav-wrap {
            height: 100%;
            gap: 28px;
        }

        .site-header .brand {
            display: flex;
            gap: 11px;
            min-width: 0;
            color: inherit;
        }

        .site-header .brand-mark {
            width: 45px;
            height: 45px;
            display: grid;
            place-items: center;
            border: 1px solid rgba(224, 173, 85, .6);
            border-radius: 50%;
            color: var(--gold-2);
            font-size: 22px;
        }

        .site-header .brand-text {
            display: flex;
            align-items: baseline;
            gap: 4px;
            line-height: normal;
            letter-spacing: 1px;
        }

        .site-header .brand-text strong {
            font-size: 24px;
            font-weight: 600;
        }

        .site-header .brand-text span {
            margin: 0;
            color: var(--gold-2);
            font-size: 14px;
            letter-spacing: 3px;
        }

        .site-header .main-nav {
            position: static;
            flex: initial;
            margin-left: auto;
            display: flex;
            align-items: center;
            justify-content: initial;
            gap: 5px;
            padding: 0;
            overflow: visible;
            background: transparent;
            box-shadow: none;
        }

        .site-header .nav-link,
        .site-header .nav-dropdown>button {
            display: block;
            width: auto;
            border: 0;
            background: transparent;
            color: rgba(255, 255, 255, .85);
            padding: 28px 9px;
            white-space: nowrap;
            font-size: 14px;
            text-align: left;
            cursor: pointer;
        }

        .site-header .main-nav a::after {
            display: none;
        }

        .site-header .nav-dropdown {
            position: relative;
        }

        .site-header .nav-dropdown-menu {
            position: absolute;
            top: calc(100% - 8px);
            left: 0;
            width: 250px;
            display: block;
            padding: 9px;
            margin: 0;
            overflow: visible;
            background: #fff;
            color: var(--text);
            border-radius: 14px;
            box-shadow: var(--shadow-lg);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: translateY(8px);
            transition: .2s;
        }

        .site-header .nav-dropdown:hover .nav-dropdown-menu,
        .site-header .nav-dropdown:focus-within .nav-dropdown-menu {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: none;
        }

        .site-header .nav-dropdown-menu a {
            display: block;
            padding: 9px 12px;
            font-size: 13px;
        }

        .site-header .nav-dropdown-menu a {
            background-color: transparent;
            color: #202621;
            border-color: transparent;
        }

        .site-header .nav-dropdown-menu a:hover,
        .site-header .nav-dropdown-menu a.active {
            background-color: #f7f2e9;
            color: #b75c37;
            border-color: transparent;
        }

        .site-header .nav-actions {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .site-header .mobile-toggle {
            display: none;
        }

        @media (max-width: 1180px) {
            .site-header .main-nav {
                position: fixed;
                top: 82px;
                left: 20px;
                right: 20px;
                width: auto;
                height: auto;
                min-height: 0;
                margin: 0;
                display: none;
                flex: 0 0 auto;
                flex-direction: column;
                align-items: stretch;
                align-content: start;
                justify-content: flex-start;
                gap: 2px;
                padding: 10px 12px;
                max-height: calc(100vh - 110px);
                overflow-y: auto;
                overflow-x: hidden;
                background: #fff;
                color: var(--text);
                border-radius: 0 0 18px 18px;
                box-shadow: var(--shadow-lg);
            }

            .site-header .main-nav.open {
                display: flex;
            }

            .site-header .nav-link,
            .site-header .nav-dropdown>button {
                width: 100%;
                padding: 8px 12px;
                color: var(--text);
                line-height: 1.45;
            }

            .site-header .nav-dropdown {
                flex: 0 0 auto;
            }

            .site-header .nav-dropdown-menu {
                position: static;
                width: 100%;
                height: auto;
                min-height: 0;
                display: none;
                margin: 2px 0 5px;
                padding: 6px;
                background: var(--cream-2);
                box-shadow: none;
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                transform: none;
            }

            .site-header .nav-dropdown-menu a {
                padding: 7px 10px;
                line-height: 1.4;
            }

            .site-header .nav-dropdown:hover .nav-dropdown-menu,
            .site-header .nav-dropdown:focus-within .nav-dropdown-menu {
                display: none;
            }

            .site-header .nav-dropdown.open .nav-dropdown-menu {
                display: block;
            }

            .site-header .mobile-toggle {
                display: grid;
                place-items: center;
            }

            .site-header .nav-actions {
                margin-left: auto;
            }
        }

        @media (max-width: 720px) {
            .site-header {
                height: 70px;
            }

            .site-header .main-nav {
                top: 70px;
                left: 14px;
                right: 14px;
            }

            .site-header .brand-mark {
                width: 40px;
                height: 40px;
            }

            .site-header .brand-text strong {
                font-size: 20px;
            }

            .site-header .brand-text span {
                display: none;
            }
        }

        .site-footer .footer-grid {
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 48px;
        }

        .site-footer .socials a {
            width: 34px;
            height: 34px;
        }

        @media(max-width:1180px) {
            .site-footer .footer-grid {
                grid-template-columns: 2fr repeat(2, 1fr)
            }
        }

        @media(max-width:980px) {
            .site-footer .footer-grid {
                grid-template-columns: repeat(2, 1fr)
            }

            .site-footer .footer-brand {
                grid-column: 1/-1
            }
        }

        @media(max-width:520px) {
            .site-footer .footer-grid {
                grid-template-columns: 1fr
            }

            .site-footer .footer-brand {
                grid-column: auto
            }
        }

        .home-manager-toggle {
            position: fixed;
            right: 22px;
            bottom: 22px;
            z-index: 1050;
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 12px 16px;
            border: 0;
            border-radius: 999px;
            background: #0b4b43;
            color: #fff;
            font-weight: 700;
            box-shadow: 0 12px 28px rgba(0, 0, 0, .22)
        }

        .home-manager {
            position: fixed;
            z-index: 1060;
            inset: 0;
            display: none;
            padding: 20px;
            background: rgba(6, 25, 32, .64);
            overflow: auto
        }

        .home-manager.open {
            display: block
        }

        .home-manager-dialog {
            width: min(880px, 100%);
            margin: 32px auto;
            border-radius: 20px;
            background: #fff;
            box-shadow: 0 25px 80px rgba(0, 0, 0, .3);
            overflow: hidden
        }

        .home-manager-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            background: #0b4b43;
            color: #fff
        }

        .home-manager-head h2 {
            margin: 0;
            font-size: 20px
        }

        .home-manager-close {
            border: 0;
            background: transparent;
            color: #fff;
            font-size: 25px
        }

        .home-manager-body {
            padding: 22px 24px
        }

        .home-manager-section {
            padding: 18px 0;
            border-bottom: 1px solid #e7eceb
        }

        .home-manager-section:last-child {
            border-bottom: 0
        }

        .home-manager-section h3 {
            margin: 0 0 10px;
            color: #123a35;
            font-size: 17px
        }

        .home-manager-selected {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            min-height: 35px;
            margin: 0 0 10px
        }

        .home-manager-chip {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 7px 9px;
            border: 1px solid #cbd9d5;
            border-radius: 9px;
            background: #f2f7f5;
            color: #163e38;
            font-size: 13px
        }

        .home-manager-chip button {
            border: 0;
            background: transparent;
            color: #a33b30;
            font-size: 17px;
            line-height: 1
        }

        .home-manager-add {
            display: flex;
            gap: 8px
        }

        .home-manager-add select {
            min-width: 0;
            flex: 1;
            padding: 8px;
            border: 1px solid #cbd9d5;
            border-radius: 8px
        }

        .home-manager-add button,
        .home-manager-save {
            border: 0;
            border-radius: 8px;
            background: #c79a3b;
            color: #172f2b;
            font-weight: 800;
            padding: 8px 12px
        }

        .home-manager-save {
            margin-top: 14px
        }

        .home-manager-status {
            margin-left: 10px;
            font-size: 13px;
            color: #526562
        }

        @media(max-width:600px) {
            .home-manager-toggle {
                right: 14px;
                bottom: 14px
            }

            .home-manager {
                padding: 8px
            }

            .home-manager-dialog {
                margin: 8px auto
            }

            .home-manager-head,
            .home-manager-body {
                padding: 16px
            }

            .home-manager-add {
                flex-wrap: wrap
            }

            .home-manager-add button {
                width: 100%
            }
        }

        .home-review-section {
            padding: clamp(42px, 6vw, 76px) 0 24px;
            background: linear-gradient(180deg, #f6f1e7 0%, #fff 100%)
        }

        .home-review-heading {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 24px
        }

        .home-review-heading span {
            color: var(--gold);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: .15em
        }

        .home-review-heading h2 {
            margin: 4px 0 5px;
            color: var(--navy);
            font-size: clamp(25px, 3vw, 38px)
        }

        .home-review-heading p {
            margin: 0;
            color: var(--muted);
            font-size: 14px
        }

        .home-review-heading a {
            color: var(--green);
            font-weight: 800;
            text-decoration: none;
            white-space: nowrap
        }

        .home-review-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px
        }

        .home-review-card {
            min-width: 0;
            overflow: hidden;
            border: 1px solid rgba(17, 67, 59, .12);
            border-radius: 18px;
            background: #fff;
            box-shadow: 0 11px 28px rgba(12, 43, 46, .08)
        }

        .home-review-image {
            display: block;
            aspect-ratio: 16/9;
            overflow: hidden;
            background: #edf1ed
        }

        .home-review-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .25s ease
        }

        .home-review-image:hover img {
            transform: scale(1.025)
        }

        .home-review-content {
            padding: 18px
        }

        .home-review-meta {
            display: flex;
            align-items: start;
            justify-content: space-between;
            gap: 12px
        }

        .home-review-author {
            margin: 0;
            color: var(--navy);
            font-size: 16px
        }

        .home-review-date {
            margin-top: 3px;
            color: var(--muted);
            font-size: 14px
        }

        .home-review-stars {
            display: flex;
            gap: 2px;
            color: var(--gold);
            font-size: 13px;
            white-space: nowrap
        }

        .home-review-source {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 13px;
            color: var(--green);
            font-size: 13px;
            font-weight: 800;
            text-decoration: none
        }

        .home-review-source:hover {
            text-decoration: underline
        }

        .home-review-type {
            display: inline-flex;
            margin-top: 13px;
            padding: 4px 8px;
            border-radius: 999px;
            background: #edf4f1;
            color: #176158;
            font-size: 13px;
            font-weight: 800
        }

        .home-review-comment {
            display: -webkit-box;
            overflow: hidden;
            margin: 12px 0 0;
            color: #43565b;
            font-size: 14px;
            line-height: 1.7;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 4
        }

        .home-review-empty {
            padding: 32px;
            border: 1px dashed #c8d3cf;
            border-radius: 16px;
            background: #fff;
            color: var(--muted);
            text-align: center
        }

        .home-partner-section {
            padding: 22px 0 28px;
            background: #fff
        }

        .home-partner-stack {
            display: grid;
            gap: 22px
        }

        .home-partner-card {
            display: block;
            overflow: hidden;
            border: 1px solid rgba(17, 67, 59, .13);
            border-radius: 18px;
            background: #fff;
            color: inherit;
            text-decoration: none;
            box-shadow: 0 10px 26px rgba(12, 43, 46, .07)
        }

        .home-partner-card img {
            display: block;
            width: 100%;
            height: auto;
            max-height: 420px;
            object-fit: contain;
            background: #f7f4ed
        }

        .home-partner-copy {
            display: flex;
            align-items: baseline;
            gap: 11px;
            padding: 14px 18px;
            background: #fff
        }

        .home-partner-copy strong {
            color: var(--navy);
            font-size: 18px
        }

        .home-partner-copy span {
            color: var(--muted);
            font-size: 14px
        }

        .home-partner-card:hover img {
            filter: brightness(1.02)
        }

        @media(max-width:900px) {
            .home-review-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr))
            }
        }

        @media(max-width:600px) {
            .home-review-heading {
                align-items: start;
                flex-direction: column
            }

            .home-review-heading a {
                margin-top: -12px
            }

            .home-review-grid {
                grid-template-columns: 1fr
            }

            .home-partner-copy {
                align-items: start;
                flex-direction: column;
                gap: 3px
            }
        }

        .home-visit-stats-section {
            padding: 24px 0 54px;
            background: #fff
        }

        .home-visit-stats {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
            padding: 22px;
            border: 1px solid rgba(17, 67, 59, .12);
            border-radius: 20px;
            background: linear-gradient(135deg, #0b403b, #123a35);
            box-shadow: 0 12px 28px rgba(12, 43, 46, .13)
        }

        .home-visit-stat {
            display: flex;
            align-items: center;
            gap: 14px;
            min-width: 0;
            padding: 16px;
            border: 1px solid rgba(255, 255, 255, .14);
            border-radius: 14px;
            background: rgba(255, 255, 255, .07);
            color: #fff
        }

        .home-visit-stat>i {
            display: grid;
            place-items: center;
            flex: 0 0 auto;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(218, 174, 87, .18);
            color: var(--gold-2);
            font-size: 18px
        }

        .home-visit-stat span,
        .home-visit-stat strong {
            display: block
        }

        .home-visit-stat span {
            color: rgba(255, 255, 255, .72);
            font-size: 14px
        }

        .home-visit-stat strong {
            margin-top: 2px;
            font-size: clamp(21px, 2.5vw, 31px);
            line-height: 1.1;
            font-variant-numeric: tabular-nums
        }

        .home-visit-stat-heading {
            margin: 0 0 13px;
            color: var(--navy);
            font-size: 18px;
            font-weight: 800
        }

        .home-visit-stat-heading i {
            margin-right: 7px;
            color: var(--gold)
        }

        @media(max-width:700px) {
            .home-visit-stats {
                grid-template-columns: 1fr;
                padding: 14px
            }

            .home-visit-stat {
                padding: 14px
            }
        }

        .home-media-section {
            padding: 14px 0 42px;
            background: #fff
        }

        .home-media-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.22fr) minmax(0, .98fr);
            gap: 22px
        }

        .home-media-card {
            min-width: 0;
            padding: 19px;
            border: 1px solid rgba(17, 67, 59, .13);
            border-radius: 18px;
            background: #fff;
            box-shadow: 0 10px 26px rgba(12, 43, 46, .07)
        }

        .home-media-eyebrow {
            display: block;
            margin-bottom: 5px;
            color: var(--gold);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: .14em
        }

        .home-media-card h2 {
            margin: 0 0 15px;
            color: var(--navy);
            font-size: 21px
        }

        .home-video-frame {
            overflow: hidden;
            border-radius: 16px;
            background: #000;
            box-shadow: 0 8px 20px rgba(0, 0, 0, .14)
        }

        .home-video-frame iframe {
            display: block;
            width: 100%;
            aspect-ratio: 16/9;
            border: 0
        }

        .home-facebook-frame {
            width: 100%;
            min-height: 390px;
            overflow: hidden;
            border-radius: 14px;
            background: #f4f6f5
        }

        .home-facebook-frame iframe {
            display: block;
            width: 100%;
            min-height: 390px;
            border: 0
        }

        .home-facebook-fallback {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 13px;
            margin-top: 12px;
            padding: 12px;
            border-radius: 12px;
            background: #edf4f1;
            color: #24463f;
            font-size: 13px
        }

        .home-facebook-fallback a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--green);
            font-weight: 800;
            text-decoration: none;
            white-space: nowrap
        }

        @media(max-width:800px) {
            .home-media-grid {
                grid-template-columns: 1fr
            }

            .home-media-section {
                padding-bottom: 34px
            }
        }

        @media(max-width:430px) {
            .home-media-card {
                padding: 14px
            }

            .home-facebook-frame,
            .home-facebook-frame iframe {
                min-height: 360px
            }

            .home-facebook-fallback {
                align-items: start;
                flex-direction: column
            }
        }

        .surin-reference-home .home-feature-section {
            padding-top: 42px;
            padding-bottom: 0;
        }

        .surin-reference-home .home-featured-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
        }

        .surin-reference-home .home-featured-card {
            display: block;
            min-width: 0;
            overflow: hidden;
            border: 1px solid var(--border);
            border-radius: 16px;
            background: #fff;
            color: inherit;
            text-decoration: none;
            box-shadow: var(--shadow);
        }

        .surin-reference-home .home-featured-card img {
            display: block;
            width: 100%;
            aspect-ratio: 4 / 3;
            object-fit: cover;
            transition: transform .2s ease;
        }

        .surin-reference-home .home-featured-card:hover img {
            transform: scale(1.03);
        }

        .surin-reference-home .home-featured-card__content {
            padding: 15px;
        }

        .surin-reference-home .home-featured-card h3 {
            margin: 0;
            color: var(--navy);
            font-size: 16px;
            line-height: 1.45;
        }

        .surin-reference-home .home-featured-card p {
            display: -webkit-box;
            overflow: hidden;
            margin: 7px 0;
            color: var(--muted);
            font-size: 13px;
            line-height: 1.6;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
        }

        .surin-reference-home .home-featured-card span {
            color: var(--green);
            font-size: 14px;
            font-weight: 800;
        }

        .surin-reference-home .home-featured-empty {
            margin: 0;
            padding: 22px;
            border: 1px dashed var(--border);
            border-radius: 14px;
            background: rgba(255, 255, 255, .65);
            color: var(--muted);
            text-align: center;
        }

        .surin-reference-home .home-tour-programs {
            padding-top: 42px;
            padding-bottom: 42px;
            background: linear-gradient(180deg, transparent, rgba(247, 242, 233, .7));
        }

        .surin-reference-home .home-tour-programs__intro {
            margin: -12px 0 20px;
            color: var(--muted);
            font-size: 14px;
        }

        .surin-reference-home .home-tour-programs__grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
        }

        .surin-reference-home .home-tour-program {
            display: flex;
            min-width: 0;
            overflow: hidden;
            flex-direction: column;
            border: 1px solid var(--border);
            border-radius: 16px;
            background: #fff;
            color: inherit;
            text-decoration: none;
            box-shadow: var(--shadow);
        }

        .surin-reference-home .home-tour-program img {
            display: block;
            width: 100%;
            aspect-ratio: 16 / 10;
            object-fit: cover;
            transition: transform .2s ease;
        }

        .surin-reference-home .home-tour-program:hover img {
            transform: scale(1.03);
        }

        .surin-reference-home .home-tour-program__body {
            display: flex;
            flex: 1;
            flex-direction: column;
            padding: 16px;
        }

        .surin-reference-home .home-tour-program h3 {
            margin: 0;
            color: var(--navy);
            font-size: 17px;
            line-height: 1.45;
        }

        .surin-reference-home .home-tour-program p {
            display: -webkit-box;
            overflow: hidden;
            margin: 8px 0 14px;
            color: var(--muted);
            font-size: 13px;
            line-height: 1.65;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3;
        }

        .surin-reference-home .home-tour-program span {
            margin-top: auto;
            color: var(--green);
            font-size: 13px;
            font-weight: 800;
        }

        .surin-reference-home .home-tour-programs__empty {
            margin: 0;
            padding: 22px;
            border: 1px dashed var(--border);
            border-radius: 14px;
            background: rgba(255, 255, 255, .65);
            color: var(--muted);
            text-align: center;
        }

        @media (max-width: 900px) {
            .surin-reference-home .home-tour-programs__grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 520px) {
            .surin-reference-home .home-tour-programs__grid {
                grid-template-columns: 1fr;
            }
        }

        .surin-reference-home .home-prepare-trip {
            padding-top: 42px;
        }

        .surin-reference-home .home-prepare-trip__intro {
            margin: -12px 0 20px;
            color: var(--muted);
            font-size: 14px;
        }

        .surin-reference-home .home-prepare-trip__grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
        }

        .surin-reference-home .home-prepare-trip__grid a {
            display: flex;
            min-height: 190px;
            align-items: flex-start;
            justify-content: flex-start;
            flex-direction: column;
            gap: 9px;
            padding: 18px;
            border: 1px solid var(--border);
            border-radius: 14px;
            background: #fff;
            color: var(--navy);
            font-size: 13px;
            font-weight: 700;
            text-decoration: none;
            transition: transform .18s ease, border-color .18s ease, color .18s ease;
        }

        .surin-reference-home .home-prepare-trip__grid a:hover {
            border-color: var(--gold);
            color: var(--green);
            transform: translateY(-2px);
        }

        .surin-reference-home .home-prepare-trip__grid i {
            color: var(--gold);
            font-size: 24px;
        }

        .surin-reference-home .home-prepare-trip__grid strong {
            font-size: 15px;
            line-height: 1.45;
        }

        .surin-reference-home .home-prepare-trip__grid small {
            color: var(--muted);
            font-size: 14px;
            font-weight: 400;
            line-height: 1.55
        }

        .surin-reference-home .home-prepare-trip__grid span {
            margin-top: auto;
            color: var(--green);
            font-size: 13px
        }

        .surin-reference-home .home-prepare-trip__grid span i {
            font-size: 13px;
            color: currentColor
        }

        .surin-reference-home .home-prepare-trip__grid a:focus-visible,
        .surin-reference-home .home-featured-card:focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 3px;
        }

        @media (max-width: 900px) {
            .surin-reference-home .home-featured-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .surin-reference-home .home-prepare-trip__grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 520px) {
            .surin-reference-home .home-featured-grid {
                grid-template-columns: 1fr;
            }

            .surin-reference-home .home-prepare-trip__grid {
                grid-template-columns: 1fr;
            }
        }

        .surin-reference-home .paradise-heading {
            margin: clamp(34px, 5vw, 68px) 0 clamp(22px, 3vw, 38px);
            color: #c58a32;
            font-family: Georgia, "Times New Roman", serif;
            font-size: clamp(28px, 4vw, 48px);
            font-weight: 600;
            letter-spacing: .08em;
            line-height: 1.15;
            text-align: center;
            text-shadow: 0 2px 14px rgba(140, 91, 25, .12);
        }

        .surin-reference-home .paradise-heading::after {
            content: "";
            display: block;
            width: 58px;
            height: 2px;
            margin: 14px auto 0;
            background: linear-gradient(90deg, transparent, #d8a64d, transparent);
        }
.card-text{ font-size: 13px !important;}
.mt-auto{font-size: 13px !important;}

    @media (max-width: 900px) {
.row>* ,  .home-promo-section,.mobile-nopad {
 
    padding-right:0;
  padding-left:0;
 
}

 
 }
/* Source: guests/index.blade.php */
.surin-reference-home .hero {
            background: #082d3b url('https://images.unsplash.com/photo-1528181304800-259b08848526?auto=format&fit=crop&w=1920&q=85') center/cover no-repeat;
        }
        .surin-reference-home .home-ebook { padding-top: 2rem; padding-bottom: 2rem; }
        .surin-reference-home .home-ebook__frame { overflow: hidden; aspect-ratio: 1200 / 1697; border-radius: 1rem; box-shadow: 0 1rem 2.5rem rgba(8, 45, 59, .14); background: #fff; }
        .surin-reference-home .home-ebook__frame iframe {
            display: block;
            width: 100%;
            height: 100%;
            min-height: 0;
            border: 0;
        }
        .travel-tips-prepare { padding: 38px 0 30px; }
        .travel-tips-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
        .travel-tips-grid a { display: flex; min-height: 238px; flex-direction: column; align-items: flex-start; gap: 9px; padding: 22px; border: 1px solid #e9decd; border-radius: 16px; background: #fff; color: var(--navy); text-decoration: none; }
        .travel-tips-grid a > i { color: #df9c21; font-size: 26px; }
        .travel-tips-grid strong { font-size: 1.05rem; line-height: 1.45; }
        .travel-tips-grid small { color: #68777c; font-size: .9rem; line-height: 1.55; }
        .travel-tips-grid a > span { display: block; margin-top: auto; color: #00635e; font-size: .8rem; font-weight: 800; }
        .tourism-summary-card { overflow:hidden; border-radius:18px; background:linear-gradient(145deg,#fffdf8,#fff); border:1px solid #eadfcf !important; box-shadow:0 12px 30px rgba(8,45,59,.10) !important; }
        .tourism-summary-card .card-body { padding:1.35rem 1.4rem; }
        .tourism-summary-card .summary-year { display:inline-flex; align-items:center; gap:.4rem; color:#b57b20; font-weight:800; letter-spacing:.04em; }
        .tourism-summary-card .summary-year i { color:#d99a25; }
        .tourism-summary-card h3 { color:#082d3b; font-weight:800; }
        .tourism-summary-card .summary-row { padding:.36rem 0; border-bottom:1px dashed #eee3d2; color:#52646a; }
        .tourism-summary-card .summary-row:last-child { border-bottom:0; }
        .tourism-summary-card .summary-row strong { color:#082d3b; font-variant-numeric:tabular-nums; }
        @media(max-width:991.98px){.travel-tips-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
        @media(max-width:767.98px){.travel-tips-grid{grid-template-columns:1fr}}
        .experience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 280px)); justify-content: center; align-items: start; gap: 24px; grid-auto-rows: min-content; min-height: 0; height: auto; margin-bottom: 0; }
        .surin-reference-home .experience-grid { grid-template-rows: none !important; grid-auto-rows: auto; }
        .experience-item { display: block; align-self: start; width: 100%; min-width: 0; height: auto; line-height: 1.4; }
        .experience-image { height: 190px; overflow: hidden; border-radius: 16px; }
        .experience-image img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 13px; }
        .experience-title { margin-top: 8px; text-align: center; line-height: 1.45; }
        /* Center a short final row instead of leaving the remaining cards at the left edge. */
        @media(min-width:1201px){
            .surin-reference-home .experience-item:nth-last-child(2){grid-column:5 / span 2}
        }
        @media(max-width:767.98px){.experience-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}.experience-image{height:160px}}
        @media(max-width:480px){.experience-grid{grid-template-columns:1fr}.experience-image{height:210px}}
        .home-ebook { margin-top: 0 !important; }
        .paradise-section .card { padding: 24px; border: 1px solid #eadfcf; border-radius: 22px; background: #fff; box-shadow: 0 14px 30px rgba(48, 42, 25, .08); }
        .paradise-section .card-header { margin: 0 0 18px; padding: 0; border: 0; background: transparent !important; }
        .paradise-section .card-title { color: #132f3b; font-size: 1.25rem; font-weight: 700; }
        .paradise-section .card-header a { color: #075f58 !important; font-size: .8rem; font-weight: 700; }
        .paradise-section .home-section-manage { border: 0; padding: .3rem .55rem; border-radius: 999px; background: #eef6f2; color: #075f58; font-size: .72rem; font-weight: 700; cursor: pointer; }
        .paradise-section .home-section-manage:hover { background: #075f58; color: #fff; }
        .home-section-manage { margin-left: 10px; border: 0; padding: .3rem .55rem; border-radius: 999px; background: #eef6f2; color: #075f58; font-size: .72rem; font-weight: 700; cursor: pointer; vertical-align: middle; }
        .home-section-manage:hover { background: #075f58; color: #fff; }
        .home-guide-section { padding: 34px 28px !important; border: 1px solid #eadfcf; border-radius: 24px; background: #fff; box-shadow: 0 14px 32px rgba(8, 45, 59, .08); }
        .home-guide-section .card { overflow: hidden; border: 1px solid #eadfcf; border-radius: 18px; box-shadow: 0 10px 26px rgba(8, 45, 59, .08); transition: transform .2s ease, box-shadow .2s ease; }
        .home-guide-section .card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(8, 45, 59, .14); }
        @media(max-width:700px){.home-guide-section{padding:24px 16px !important;}}
        .home-manager-add .ss-main { height: 44px !important; min-height: 44px !important; }
        .home-manager-add .ss-main { width: 80% !important; max-width: 80% !important; flex: 0 1 80%; }
        .home-manager-add .ss-single-selected { height: 44px !important; min-height: 44px !important; padding: 0 12px !important; }
        .home-manager-add .ss-values { min-height: 42px !important; align-items: center; }
        .home-manager-chip[draggable="true"] { cursor: grab; }
        .home-manager-chip[draggable="true"]:active { cursor: grabbing; opacity: .65; }
        .home-manager-chip.drag-over { outline: 2px dashed #d99a25; outline-offset: 3px; }
        .paradise-section .list-group { margin-bottom: 22px; }
        .paradise-section .list-group-item { position: relative; padding: 7px 0 7px 28px; border: 0; color: #243c43; font-size: .84rem; }
        .paradise-section .list-group-item::before { content: '\f3c5'; position: absolute; left: 2px; top: 9px; color: #df9c21; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
        .paradise-section .list-group-item a { color: inherit; text-decoration: none; }
        .paradise-section .btn { width: max-content; margin: auto 0 0 !important; padding: 9px 27px; border: 0; border-radius: 999px; background: #075f58; color: #fff; font-size: .78rem; font-weight: 700; }
        /* The global layout owns the header/footer; keep this page flush with that shell. */
     

        .surin-reference-home .home-ebook__frame iframe {
    display: block;
    width: 100%;
    min-height: 300px !important;
    border: 0;
}
