 
 
/* =========================================================
   LOCATION + CONTACT / BOOKING
========================================================= */

.svgh-location-contact-section {

    --lc-blue-deep: #063b68;
    --lc-blue: #0877bd;
    --lc-blue-light: #eaf6ff;

    --lc-gold: #d99a00;
    --lc-gold-light: #fff4d5;

    --lc-green: #4d9635;

    position: relative;

    overflow: hidden;

    padding: 115px 0 95px;

    background:
        radial-gradient(
            circle at 8% 20%,
            rgba(8,119,189,.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(217,154,0,.09),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #ffffff,
            #f5faff 55%,
            #eef7fc
        );
}


/* =========================================================
   GLOWS
========================================================= */

.svgh-lc-glow {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.svgh-lc-glow-one {

    width: 350px;
    height: 350px;

    left: -180px;
    top: 120px;

    background:
        rgba(8,119,189,.07);

    filter: blur(5px);
}


.svgh-lc-glow-two {

    width: 300px;
    height: 300px;

    right: -150px;
    bottom: -100px;

    background:
        rgba(217,154,0,.08);

    filter: blur(5px);
}


/* =========================================================
   CONTAINER
========================================================= */

.svgh-lc-container {

    width:
        min(
            1380px,
            calc(100% - 70px)
        );

    margin: auto;

    position: relative;

    z-index: 2;
}


/* =========================================================
   HEADER
========================================================= */

.svgh-lc-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 55px;
}


.svgh-lc-eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

    color:
        var(--lc-gold);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;
}


.svgh-lc-eyebrow span {

    width: 30px;
    height: 2px;

    background:
        var(--lc-gold);
}


.svgh-lc-title {

    margin: 0;

    color:
        var(--lc-blue-deep);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            48px,
            5vw,
            70px
        );

    line-height: 1.03;

    letter-spacing: -2.5px;
}


.svgh-lc-title span {

    color:
        var(--lc-gold);
}


/* =========================================================
   HEADER NUMBER
========================================================= */

.svgh-lc-header-number {

    display: flex;

    align-items: flex-end;

    gap: 14px;
}


.svgh-lc-header-number strong {

    color:
        rgba(6,59,104,.12);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 55px;

    line-height: .9;
}


.svgh-lc-header-number span {

    padding-bottom: 2px;

    color:
        #8a9da9;

    font-size: 8px;

    font-weight: 800;

    line-height: 1.5;

    letter-spacing: 1.8px;
}


/* =========================================================
   MAIN GRID
========================================================= */

.svgh-lc-main {

    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(400px, .92fr);

    gap: 25px;

    align-items: stretch;
}


/* =========================================================
   LOCATION PANEL
========================================================= */

.svgh-lc-location-panel {

    position: relative;

    overflow: hidden;

    padding: 32px;

    border:
        1px solid
        rgba(6,59,104,.09);

    border-radius: 28px;

    background:
        rgba(255,255,255,.92);

    box-shadow:
        0 25px 65px
        rgba(6,59,104,.08);
}


/* =========================================================
   LOCATION TOP
========================================================= */

.svgh-lc-location-top {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 25px;
}


.svgh-lc-small-label {

    display: block;

    margin-bottom: 8px;

    color:
        var(--lc-gold);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;
}


.svgh-lc-location-top h3 {

    margin: 0;

    color:
        var(--lc-blue-deep);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 32px;

    line-height: 1.15;
}


.svgh-lc-location-top h3 span {

    color:
        var(--lc-gold);
}


.svgh-lc-location-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 52px;
    height: 52px;

    flex: 0 0 auto;

    border-radius: 15px;

    color:
        #fff;

    background:
        linear-gradient(
            135deg,
            #087fca,
            #075487
        );

    box-shadow:
        0 12px 25px
        rgba(8,119,189,.20);
}


/* =========================================================
   MAP
========================================================= */

.svgh-lc-map {

    position: relative;

    height: 290px;

    overflow: hidden;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            #eaf5f8,
            #dceef4
        );

    border:
        1px solid
        rgba(6,59,104,.08);
}


/* Map grid */

.svgh-lc-map-grid {

    position: absolute;

    inset: -40px;

    opacity: .65;

    background-image:
        linear-gradient(
            30deg,
            transparent 47%,
            rgba(6,59,104,.08) 48%,
            rgba(6,59,104,.08) 49%,
            transparent 50%
        ),
        linear-gradient(
            120deg,
            transparent 47%,
            rgba(6,59,104,.06) 48%,
            rgba(6,59,104,.06) 49%,
            transparent 50%
        );

    background-size:
        85px 85px;

    transform:
        rotate(-3deg)
        scale(1.15);
}


/* Roads */

.svgh-lc-road {

    position: absolute;

    display: block;

    height: 3px;

    border-radius: 10px;

    background:
        rgba(255,255,255,.95);

    box-shadow:
        0 0 0 1px
        rgba(6,59,104,.07);

    transform-origin: left center;
}


.road-a {

    width: 420px;

    left: -50px;
    top: 190px;

    transform:
        rotate(-21deg);
}


.road-b {

    width: 400px;

    left: 130px;
    top: 75px;

    transform:
        rotate(24deg);
}


.road-c {

    width: 310px;

    left: 290px;
    top: 225px;

    transform:
        rotate(-35deg);
}


/* =========================================================
   MAP PLACES
========================================================= */

.svgh-lc-map-place {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 9px;

    z-index: 4;
}


.place-guest {

    left: 55px;

    bottom: 48px;
}


.place-temple {

    right: 35px;

    top: 45px;
}


/* Pin */

.svgh-lc-map-pin {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 46px;
    height: 46px;

    border-radius:
        50% 50% 50% 6px;

    color: #fff;

    background:
        var(--lc-blue);

    transform:
        rotate(-45deg);

    box-shadow:
        0 10px 22px
        rgba(6,59,104,.20);
}


.svgh-lc-map-pin i {

    transform:
        rotate(45deg);
}


.svgh-lc-map-pin.temple {

    background:
        var(--lc-gold);
}


/* Labels */

.svgh-lc-map-label {

    padding:
        8px 11px;

    border-radius: 9px;

    background:
        rgba(255,255,255,.92);

    box-shadow:
        0 8px 20px
        rgba(6,59,104,.10);
}


.svgh-lc-map-label small {

    display: block;

    margin-bottom: 3px;

    color:
        #99aab5;

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 1.2px;
}


.svgh-lc-map-label strong {

    display: block;

    color:
        var(--lc-blue-deep);

    font-size: 9px;
}


/* Map dots */

.svgh-lc-map-dots {

    position: absolute;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        var(--lc-gold);

    box-shadow:
        0 0 0 6px
        rgba(217,154,0,.10);
}


.dot-one {

    left: 45%;
    top: 38%;
}


.dot-two {

    left: 28%;
    top: 22%;
}


.dot-three {

    right: 30%;
    bottom: 25%;
}


/* =========================================================
   ADDRESS
========================================================= */

.svgh-lc-address {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 20px;

    padding: 18px;

    border-radius: 17px;

    background:
        #f6fafc;

    border:
        1px solid
        rgba(6,59,104,.07);
}


.svgh-lc-address-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 43px;
    height: 43px;

    flex: 0 0 auto;

    border-radius: 12px;

    color:
        var(--lc-blue);

    background:
        var(--lc-blue-light);
}


.svgh-lc-address span {

    display: block;

    margin-bottom: 4px;

    color:
        #9aaab5;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.svgh-lc-address p {

    margin: 0;

    color:
        #60798b;

    font-size: 10px;

    line-height: 1.65;
}


.svgh-lc-address strong {

    color:
        var(--lc-blue-deep);
}


/* =========================================================
   NEARBY STRIP
========================================================= */

.svgh-lc-nearby {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 13px;

    padding: 13px 15px;

    border-radius: 14px;

    background:
        linear-gradient(
            90deg,
            #fff9e8,
            #fffdf7
        );
}


.svgh-lc-nearby-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 36px;
    height: 36px;

    flex: 0 0 auto;

    border-radius: 10px;

    color:
        var(--lc-gold);

    background:
        var(--lc-gold-light);
}


.svgh-lc-nearby span {

    display: block;

    margin-bottom: 3px;

    color:
        #a48a4c;

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 1.2px;
}


.svgh-lc-nearby strong {

    display: block;

    color:
        #6b5b32;

    font-size: 9px;
}


/* =========================================================
   MAP BUTTON
========================================================= */

.svgh-lc-map-btn {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 15px;

    padding: 13px 15px;

    border:
        1px solid
        rgba(8,119,189,.13);

    border-radius: 13px;

    color:
        var(--lc-blue) !important;

    background:
        #fff;

    text-decoration: none;

    font-size: 9px;

    font-weight: 800;

    transition:
        all .3s ease;
}


.svgh-lc-map-btn span {

    display: flex;

    align-items: center;

    gap: 8px;
}


.svgh-lc-map-btn:hover {

    color: #fff !important;

    background:
        var(--lc-blue);

    border-color:
        var(--lc-blue);

    transform:
        translateY(-2px);
}


/* =========================================================
   BOOKING PANEL
========================================================= */

.svgh-lc-booking-panel {

    position: relative;

    overflow: hidden;

    border-radius: 28px;

    color: #fff;

    background:
        linear-gradient(
            145deg,
            #03233e 0%,
            #063b68 50%,
            #075487 100%
        );

    box-shadow:
        0 28px 65px
        rgba(6,59,104,.23);
}


/* Gold top */

.svgh-lc-booking-panel::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background:
        linear-gradient(
            90deg,
            var(--lc-gold),
            #f4ca59,
            var(--lc-gold)
        );
}


/* =========================================================
   BOOKING CIRCLE
========================================================= */

.svgh-lc-booking-circle {

    position: absolute;

    width: 380px;
    height: 380px;

    top: -190px;
    right: -170px;

    border:
        1px solid
        rgba(255,255,255,.09);

    border-radius: 50%;
}


.svgh-lc-booking-circle::after {

    content: "";

    position: absolute;

    inset: 40px;

    border:
        1px solid
        rgba(255,255,255,.06);

    border-radius: 50%;
}


/* =========================================================
   CONTENT
========================================================= */

.svgh-lc-booking-content {

    position: relative;

    z-index: 2;

    padding: 37px;
}


/* =========================================================
   BOOKING TOP
========================================================= */

.svgh-lc-booking-top {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    margin-bottom: 35px;
}


.svgh-lc-booking-top > span {

    color:
        #8dcdf2;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;
}


.svgh-lc-booking-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 55px;
    height: 55px;

    border:
        1px solid
        rgba(255,255,255,.13);

    border-radius: 16px;

    color:
        var(--lc-gold-light);

    background:
        rgba(255,255,255,.07);

    font-size: 21px;
}


/* =========================================================
   BOOKING TITLE
========================================================= */

.svgh-lc-booking-content h3 {

    max-width: 430px;

    margin: 0 0 18px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 43px;

    line-height: 1.08;

    letter-spacing: -1px;
}


.svgh-lc-booking-content h3 span {

    color:
        var(--lc-gold-light);
}


.svgh-lc-booking-content > p {

    max-width: 430px;

    margin: 0 0 30px;

    color:
        rgba(255,255,255,.56);

    font-size: 12px;

    line-height: 1.85;
}


/* =========================================================
   CONTACT OPTIONS
========================================================= */

.svgh-lc-contact-options {

    display: grid;

    gap: 10px;
}


.svgh-lc-contact-option {

    display: grid;

    grid-template-columns:
        44px
        minmax(0,1fr)
        30px;

    align-items: center;

    gap: 13px;

    padding: 13px;

    border:
        1px solid
        rgba(255,255,255,.09);

    border-radius: 15px;

    color: #fff !important;

    background:
        rgba(255,255,255,.045);

    text-decoration: none;

    transition:
        all .3s ease;
}


.svgh-lc-contact-option:hover {

    border-color:
        rgba(255,255,255,.18);

    background:
        rgba(255,255,255,.08);

    transform:
        translateX(4px);
}


.svgh-lc-contact-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 12px;

    color:
        #8bd5fa;

    background:
        rgba(8,119,189,.16);
}


.svgh-lc-contact-option.whatsapp
.svgh-lc-contact-icon {

    color:
        #8cda72;

    background:
        rgba(77,150,53,.15);
}


.svgh-lc-contact-option small {

    display: block;

    margin-bottom: 3px;

    color:
        rgba(255,255,255,.35);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.svgh-lc-contact-option strong {

    display: block;

    color:
        #fff;

    font-size: 12px;
}


.svgh-lc-contact-option > i {

    color:
        rgba(255,255,255,.30);

    font-size: 10px;

    transition:
        transform .3s ease;
}


.svgh-lc-contact-option:hover > i {

    color:
        var(--lc-gold-light);

    transform:
        translateX(4px);
}


/* =========================================================
   DIVIDER
========================================================= */

.svgh-lc-divider {

    display: flex;

    align-items: center;

    gap: 10px;

    margin: 25px 0 18px;
}


.svgh-lc-divider span {

    flex: 1;

    height: 1px;

    background:
        rgba(255,255,255,.09);
}


.svgh-lc-divider small {

    color:
        rgba(255,255,255,.27);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================================
   BOOK BUTTON
========================================================= */

.svgh-lc-book-btn {

    display: grid;

    grid-template-columns:
        48px
        minmax(0,1fr)
        38px;

    align-items: center;

    gap: 13px;

    padding: 10px;

    border-radius: 16px;

    color:
        var(--lc-blue-deep) !important;

    background:
        linear-gradient(
            100deg,
            #ffffff,
            #fff9e9
        );

    text-decoration: none;

    box-shadow:
        0 14px 30px
        rgba(0,0,0,.15);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.svgh-lc-book-btn:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 20px 38px
        rgba(0,0,0,.20);
}


.svgh-lc-book-btn-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 13px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #e3aa0a,
            #c47e00
        );
}


.svgh-lc-book-btn small {

    display: block;

    margin-bottom: 3px;

    color:
        #a08b5c;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.svgh-lc-book-btn strong {

    display: block;

    color:
        var(--lc-blue-deep);

    font-size: 13px;
}


.svgh-lc-book-arrow {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 50%;

    color: #fff;

    background:
        var(--lc-blue);

    transition:
        transform .3s ease;
}


.svgh-lc-book-btn:hover
.svgh-lc-book-arrow {

    transform:
        translateX(4px);
}


/* =========================================================
   TRUST
========================================================= */

.svgh-lc-trust {

    display: flex;

    align-items: center;

    gap: 11px;

    margin-top: 25px;

    padding-top: 20px;

    border-top:
        1px solid
        rgba(255,255,255,.08);
}


.svgh-lc-trust-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 35px;
    height: 35px;

    border-radius: 10px;

    color:
        #8bd5fa;

    background:
        rgba(8,119,189,.12);
}


.svgh-lc-trust strong {

    display: block;

    margin-bottom: 3px;

    color:
        rgba(255,255,255,.75);

    font-size: 9px;
}


.svgh-lc-trust span {

    display: block;

    color:
        rgba(255,255,255,.34);

    font-size: 8px;

    line-height: 1.5;
}


/* =========================================================
   QUICK STRIP
========================================================= */

.svgh-lc-quick-strip {

    display: grid;

    grid-template-columns:
        1fr
        1px
        1fr
        1px
        1fr
        1px
        .9fr;

    align-items: center;

    margin-top: 25px;

    padding: 20px 22px;

    border:
        1px solid
        rgba(6,59,104,.08);

    border-radius: 20px;

    background:
        rgba(255,255,255,.88);

    box-shadow:
        0 12px 35px
        rgba(6,59,104,.05);
}


.svgh-lc-quick-item {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 0 18px;
}


.svgh-lc-quick-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 40px;
    height: 40px;

    flex: 0 0 auto;

    border-radius: 11px;
}


.svgh-lc-quick-icon.blue {

    color:
        var(--lc-blue);

    background:
        var(--lc-blue-light);
}


.svgh-lc-quick-icon.gold {

    color:
        var(--lc-gold);

    background:
        var(--lc-gold-light);
}


.svgh-lc-quick-icon.green {

    color:
        var(--lc-green);

    background:
        #edf7e9;
}


.svgh-lc-quick-item small {

    display: block;

    margin-bottom: 3px;

    color:
        #9aaab5;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.3px;
}


.svgh-lc-quick-item strong {

    display: block;

    color:
        var(--lc-blue-deep);

    font-size: 10px;
}


.svgh-lc-quick-divider {

    width: 1px;

    height: 40px;

    background:
        rgba(6,59,104,.09);
}


/* =========================================================
   QUICK CTA
========================================================= */

.svgh-lc-quick-cta {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 13px;

    padding-left: 20px;
}


.svgh-lc-quick-cta > span {

    color:
        #899ca9;

    font-size: 8px;
}


.svgh-lc-quick-cta a {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color:
        var(--lc-blue) !important;

    text-decoration: none;

    font-size: 10px;

    font-weight: 800;
}


.svgh-lc-quick-cta a i {

    transition:
        transform .3s ease;
}


.svgh-lc-quick-cta a:hover i {

    transform:
        translateX(4px);
}


/* =========================================================
   1200px
========================================================= */

@media (max-width: 1200px) {

    .svgh-lc-container {

        width:
            min(
                1100px,
                calc(100% - 50px)
            );
    }

    .svgh-lc-main {

        gap: 18px;
    }

    .svgh-lc-location-panel {

        padding: 25px;
    }

    .svgh-lc-booking-content {

        padding: 30px;
    }

    .svgh-lc-booking-content h3 {

        font-size: 37px;
    }

}


/* =========================================================
   991px — TABLET
========================================================= */

@media (max-width: 991px) {

    .svgh-location-contact-section {

        padding:
            90px 0 75px;
    }

    .svgh-lc-container {

        width:
            calc(100% - 40px);
    }

    .svgh-lc-header {

        align-items:
            flex-start;

        margin-bottom:
            42px;
    }

    .svgh-lc-main {

        grid-template-columns:
            1fr;
    }

    .svgh-lc-location-panel {

        max-width:
            800px;

        width:
            100%;

        margin:
            auto;
    }

    .svgh-lc-booking-panel {

        max-width:
            800px;

        width:
            100%;

        margin:
            auto;
    }

    .svgh-lc-quick-strip {

        grid-template-columns:
            1fr 1fr;

        gap:
            18px;
    }

    .svgh-lc-quick-divider {

        display:
            none;
    }

    .svgh-lc-quick-cta {

        justify-content:
            flex-start;

        padding-left:
            18px;
    }

}


/* =========================================================
   768px — MOBILE
========================================================= */

@media (max-width: 768px) {

    .svgh-location-contact-section {

        padding:
            70px 0 60px;
    }

    .svgh-lc-container {

        width:
            calc(100% - 28px);
    }

    .svgh-lc-header {

        flex-direction:
            column;

        gap:
            18px;
    }

    .svgh-lc-eyebrow {

        font-size:
            9px;

        letter-spacing:
            2.3px;
    }

    .svgh-lc-title {

        font-size:
            43px;

        letter-spacing:
            -1.5px;
    }

    .svgh-lc-header-number {

        align-items:
            center;
    }

    .svgh-lc-header-number strong {

        font-size:
            38px;
    }

    .svgh-lc-location-panel {

        padding:
            22px 18px;
    }

    .svgh-lc-location-top h3 {

        font-size:
            27px;
    }

    .svgh-lc-map {

        height:
            260px;
    }

    .svgh-lc-booking-content {

        padding:
            28px 21px;
    }

    .svgh-lc-booking-content h3 {

        font-size:
            35px;
    }

    .svgh-lc-booking-content > p {

        font-size:
            11px;
    }

    .svgh-lc-quick-strip {

        grid-template-columns:
            1fr;

        gap:
            15px;

        padding:
            18px;
    }

    .svgh-lc-quick-item {

        padding:
            0;
    }

    .svgh-lc-quick-cta {

        padding:
            8px 0 0;
    }

}


/* =========================================================
   480px — SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .svgh-location-contact-section {

        padding:
            60px 0 50px;
    }

    .svgh-lc-container {

        width:
            calc(100% - 22px);
    }

    .svgh-lc-title {

        font-size:
            36px;
    }

    .svgh-lc-location-top h3 {

        font-size:
            24px;
    }

    .svgh-lc-location-icon {

        width:
            45px;

        height:
            45px;
    }

    .svgh-lc-map {

        height:
            225px;
    }

    .svgh-lc-map-place {

        gap:
            6px;
    }

    .place-guest {

        left:
            15px;

        bottom:
            30px;
    }

    .place-temple {

        right:
            10px;

        top:
            28px;
    }

    .svgh-lc-map-pin {

        width:
            38px;

        height:
            38px;

        font-size:
            11px;
    }

    .svgh-lc-map-label {

        padding:
            6px 8px;
    }

    .svgh-lc-map-label strong {

        font-size:
            8px;
    }

    .svgh-lc-address {

        align-items:
            flex-start;

        padding:
            14px;
    }

    .svgh-lc-nearby {

        align-items:
            flex-start;

        padding:
            12px;
    }

    .svgh-lc-booking-content h3 {

        font-size:
            31px;
    }

    .svgh-lc-booking-top {

        margin-bottom:
            28px;
    }

    .svgh-lc-booking-icon {

        width:
            48px;

        height:
            48px;
    }

    .svgh-lc-contact-option {

        grid-template-columns:
            40px
            minmax(0,1fr)
            25px;

        gap:
            10px;

        padding:
            10px;
    }

    .svgh-lc-contact-icon {

        width:
            40px;

        height:
            40px;
    }

    .svgh-lc-book-btn {

        grid-template-columns:
            43px
            minmax(0,1fr)
            34px;

        gap:
            9px;
    }

    .svgh-lc-book-btn-icon {

        width:
            43px;

        height:
            43px;
    }

    .svgh-lc-book-arrow {

        width:
            34px;

        height:
            34px;
    }

    .svgh-lc-quick-cta {

        align-items:
            flex-start;

        flex-direction:
            column;

        gap:
            5px;
    }

}


 

/* =========================================================
   FACILITIES SECTION
========================================================= */

.svgh-facilities-section {

    --facility-blue: #0877bd;
    --facility-blue-light: #20a4ed;

    --facility-deep: #041d34;
    --facility-deeper: #021321;

    --facility-gold: #e3a916;
    --facility-gold-light: #f5ca55;

    --facility-green: #66a844;
    --facility-purple: #8a6bd1;
    --facility-orange: #dc8b32;
    --facility-red: #d76565;

    position: relative;

    overflow: hidden;

    padding: 120px 0 100px;

    color: #fff;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(8,119,189,.16),
            transparent 32%
        ),
        radial-gradient(
            circle at 90% 75%,
            rgba(227,169,22,.08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #021321 0%,
            #041d34 48%,
            #031827 100%
        );
}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

.svgh-facilities-glow {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(5px);
}


.svgh-facilities-glow-1 {

    width: 420px;
    height: 420px;

    top: -230px;
    left: -150px;

    background:
        rgba(8,119,189,.12);
}


.svgh-facilities-glow-2 {

    width: 380px;
    height: 380px;

    right: -170px;
    bottom: -180px;

    background:
        rgba(227,169,22,.08);
}


/* =========================================================
   GRID BACKGROUND
========================================================= */

.svgh-facilities-grid-bg {

    position: absolute;

    inset: 0;

    opacity: .18;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size:
        55px 55px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 20%,
            black 80%,
            transparent
        );
}


/* =========================================================
   CONTAINER
========================================================= */

.svgh-facilities-container {

    width:
        min(
            1380px,
            calc(100% - 70px)
        );

    margin: auto;

    position: relative;

    z-index: 2;
}


/* =========================================================
   HEADER
========================================================= */

.svgh-facilities-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

    margin-bottom: 60px;
}


.svgh-facilities-eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 21px;

    color:
        var(--facility-gold-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;
}


.svgh-facilities-eyebrow span {

    width: 30px;
    height: 2px;

    background:
        var(--facility-gold);
}


.svgh-facilities-title {

    margin: 0;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            48px,
            5vw,
            70px
        );

    line-height: 1.03;

    letter-spacing: -2.5px;
}


.svgh-facilities-title span {

    color:
        var(--facility-gold-light);
}


/* =========================================================
   HEADER SIDE
========================================================= */

.svgh-facilities-header-side {

    display: flex;

    align-items: flex-start;

    gap: 28px;

    max-width: 460px;
}


.svgh-facilities-number {

    display: flex;

    flex-direction: column;

    min-width: 65px;
}


.svgh-facilities-number strong {

    color:
        rgba(255,255,255,.13);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 48px;

    line-height: 1;
}


.svgh-facilities-number span {

    margin-top: 8px;

    color:
        rgba(255,255,255,.45);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;
}


.svgh-facilities-header-side p {

    margin: 5px 0 0;

    color:
        rgba(255,255,255,.57);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.svgh-facilities-layout {

    display: grid;

    grid-template-columns:
        360px
        minmax(0, 1fr);

    gap: 25px;

    align-items: stretch;
}


/* =========================================================
   FEATURE PANEL
========================================================= */

.svgh-facilities-feature {

    position: relative;

    overflow: hidden;

    min-height: 585px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 32px;

    border:
        1px solid
        rgba(255,255,255,.11);

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(8,119,189,.23),
            rgba(255,255,255,.035)
        );

    box-shadow:
        0 25px 70px
        rgba(0,0,0,.25);
}


/* Gold edge */

.svgh-facilities-feature::before {

    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 4px;
    height: 100%;

    background:
        linear-gradient(
            to bottom,
            var(--facility-gold),
            transparent 70%
        );
}


/* Decorative circle */

.svgh-facilities-feature::after {

    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    right: -140px;
    bottom: -120px;

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 50%;
}


/* =========================================================
   FEATURE TOP
========================================================= */

.svgh-feature-top {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;
}


.svgh-feature-label {

    color:
        rgba(255,255,255,.48);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;
}


.svgh-feature-icon-large {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 60px;
    height: 60px;

    border:
        1px solid
        rgba(255,255,255,.14);

    border-radius: 18px;

    color:
        var(--facility-gold-light);

    background:
        rgba(255,255,255,.06);

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.15);

    font-size: 23px;
}


/* =========================================================
   FEATURE CONTENT
========================================================= */

.svgh-feature-content {

    position: relative;

    z-index: 2;
}


.svgh-feature-small {

    display: block;

    margin-bottom: 13px;

    color:
        var(--facility-blue-light);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}


.svgh-feature-content h3 {

    max-width: 270px;

    margin: 0 0 20px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 39px;

    line-height: 1.1;
}


.svgh-feature-content h3 span {

    color:
        var(--facility-gold-light);
}


.svgh-feature-content p {

    max-width: 280px;

    margin: 0;

    color:
        rgba(255,255,255,.56);

    font-size: 12px;

    line-height: 1.85;
}


/* =========================================================
   DECORATIVE LINE
========================================================= */

.svgh-feature-line {

    display: flex;

    align-items: center;

    gap: 7px;

    margin-top: 30px;
}


.svgh-feature-line span {

    display: block;

    height: 3px;

    border-radius: 5px;

    background:
        var(--facility-gold);
}


.svgh-feature-line span:nth-child(1) {

    width: 38px;
}


.svgh-feature-line span:nth-child(2) {

    width: 14px;

    opacity: .5;
}


.svgh-feature-line span:nth-child(3) {

    width: 6px;

    opacity: .25;
}


/* =========================================================
   FEATURE BOTTOM
========================================================= */

.svgh-feature-bottom {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-top: 25px;

    border-top:
        1px solid
        rgba(255,255,255,.09);
}


.svgh-feature-mini {

    display: flex;

    align-items: center;

    gap: 11px;
}


.svgh-feature-mini-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 11px;

    color:
        var(--facility-gold-light);

    background:
        rgba(227,169,22,.11);
}


.svgh-feature-mini small {

    display: block;

    margin-bottom: 3px;

    color:
        rgba(255,255,255,.38);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.4px;
}


.svgh-feature-mini strong {

    display: block;

    color: #fff;

    font-size: 11px;
}


.svgh-feature-01 {

    color:
        rgba(255,255,255,.12);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 42px;

    font-weight: 700;
}


/* =========================================================
   FACILITY LIST
========================================================= */

.svgh-facilities-list {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;
}


/* =========================================================
   FACILITY CARD
========================================================= */

.svgh-facility-card {

    position: relative;

    display: grid;

    grid-template-columns:
        30px
        54px
        minmax(0, 1fr)
        34px;

    align-items: center;

    gap: 15px;

    min-height: 185px;

    padding: 23px;

    border:
        1px solid
        rgba(255,255,255,.09);

    border-radius: 20px;

    background:
        rgba(255,255,255,.045);

    backdrop-filter:
        blur(12px);

    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease,
        box-shadow .35s ease;

    overflow: hidden;
}


.svgh-facility-card::before {

    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 2px;
    height: 0;

    background:
        var(--facility-blue-light);

    transition:
        height .35s ease;
}


.svgh-facility-card:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(255,255,255,.18);

    background:
        rgba(255,255,255,.075);

    box-shadow:
        0 18px 45px
        rgba(0,0,0,.22);
}


.svgh-facility-card:hover::before {

    height: 100%;
}


/* =========================================================
   NUMBER
========================================================= */

.svgh-facility-number {

    color:
        rgba(255,255,255,.20);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================================
   ICON
========================================================= */

.svgh-facility-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 54px;
    height: 54px;

    border-radius: 16px;

    color:
        #69c5f7;

    background:
        rgba(8,119,189,.14);

    border:
        1px solid
        rgba(8,119,189,.18);

    font-size: 19px;

    transition:
        transform .35s ease;
}


.svgh-facility-card:hover
.svgh-facility-icon {

    transform:
        scale(1.08)
        rotate(-4deg);
}


/* Gold */

.svgh-facility-icon.gold {

    color:
        var(--facility-gold-light);

    background:
        rgba(227,169,22,.12);

    border-color:
        rgba(227,169,22,.18);
}


/* Green */

.svgh-facility-icon.green {

    color:
        #91d96f;

    background:
        rgba(102,168,68,.12);

    border-color:
        rgba(102,168,68,.18);
}


/* Purple */

.svgh-facility-icon.purple {

    color:
        #b59af0;

    background:
        rgba(138,107,209,.12);

    border-color:
        rgba(138,107,209,.18);
}


/* Orange */

.svgh-facility-icon.orange {

    color:
        #f3b46a;

    background:
        rgba(220,139,50,.12);

    border-color:
        rgba(220,139,50,.18);
}


/* Red */

.svgh-facility-icon.red {

    color:
        #f28d8d;

    background:
        rgba(215,101,101,.12);

    border-color:
        rgba(215,101,101,.18);
}


/* =========================================================
   FACILITY CONTENT
========================================================= */

.svgh-facility-content h3 {

    margin: 0 0 8px;

    color: #fff;

    font-size: 15px;

    font-weight: 800;
}


.svgh-facility-content p {

    max-width: 240px;

    margin: 0;

    color:
        rgba(255,255,255,.45);

    font-size: 10px;

    line-height: 1.7;
}


/* =========================================================
   ARROW
========================================================= */

.svgh-facility-arrow {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 34px;
    height: 34px;

    border:
        1px solid
        rgba(255,255,255,.09);

    border-radius: 50%;

    color:
        rgba(255,255,255,.35);

    transition:
        all .3s ease;
}


.svgh-facility-card:hover
.svgh-facility-arrow {

    color:
        var(--facility-gold-light);

    border-color:
        rgba(227,169,22,.3);

    transform:
        rotate(8deg);
}


/* =========================================================
   BOTTOM STRIP
========================================================= */

.svgh-facilities-bottom {

    display: grid;

    grid-template-columns:
        1.2fr
        1fr
        auto;

    align-items: center;

    gap: 30px;

    margin-top: 25px;

    padding: 21px 25px;

    border:
        1px solid
        rgba(255,255,255,.09);

    border-radius: 18px;

    background:
        rgba(255,255,255,.035);
}


/* =========================================================
   BOTTOM LEFT
========================================================= */

.svgh-facility-bottom-left {

    display: flex;

    align-items: center;

    gap: 13px;
}


.svgh-bottom-stars {

    display: flex;

    align-items: center;

    gap: 3px;

    color:
        var(--facility-gold-light);

    font-size: 9px;
}


.svgh-facility-bottom-left span {

    display: block;

    margin-bottom: 4px;

    color:
        rgba(255,255,255,.35);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.svgh-facility-bottom-left strong {

    display: block;

    color: #fff;

    font-size: 12px;
}


/* =========================================================
   BOTTOM CENTER
========================================================= */

.svgh-facility-bottom-center {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    color:
        rgba(255,255,255,.48);

    font-size: 9px;
}


.svgh-bottom-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        var(--facility-green);

    box-shadow:
        0 0 0 5px
        rgba(102,168,68,.10);
}


/* =========================================================
   BOTTOM BUTTON
========================================================= */

.svgh-facility-bottom-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    min-height: 45px;

    padding:
        0 8px 0 17px;

    border-radius: 50px;

    color:
        #fff !important;

    background:
        linear-gradient(
            135deg,
            #0872b5,
            #075487
        );

    text-decoration: none;

    font-size: 10px;

    font-weight: 800;

    box-shadow:
        0 10px 25px
        rgba(8,119,189,.20);

    transition:
        transform .3s ease;
}


.svgh-facility-bottom-btn i {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    color:
        var(--facility-deep);

    background: #fff;
}


.svgh-facility-bottom-btn:hover {

    transform:
        translateY(-3px);
}


/* =========================================================
   1200px
========================================================= */

@media (max-width: 1200px) {

    .svgh-facilities-container {

        width:
            min(
                1100px,
                calc(100% - 50px)
            );
    }

    .svgh-facilities-layout {

        grid-template-columns:
            310px
            minmax(0,1fr);

    }

    .svgh-facilities-feature {

        padding: 27px;

    }

    .svgh-facility-card {

        grid-template-columns:
            25px
            48px
            minmax(0,1fr)
            30px;

        gap: 11px;

        padding: 18px;

    }

    .svgh-facility-icon {

        width: 48px;
        height: 48px;

    }

}


/* =========================================================
   991px — TABLET
========================================================= */

@media (max-width: 991px) {

    .svgh-facilities-section {

        padding:
            90px 0 75px;
    }

    .svgh-facilities-container {

        width:
            calc(100% - 40px);
    }

    .svgh-facilities-header {

        align-items:
            flex-start;

        flex-direction:
            column;

        gap: 25px;

        margin-bottom: 45px;
    }

    .svgh-facilities-header-side {

        max-width:
            650px;
    }

    .svgh-facilities-layout {

        grid-template-columns:
            1fr;

    }

    .svgh-facilities-feature {

        min-height:
            400px;
    }

    .svgh-feature-content p {

        max-width:
            600px;
    }

    .svgh-facilities-list {

        grid-template-columns:
            repeat(2,1fr);
    }

    .svgh-facilities-bottom {

        grid-template-columns:
            1fr 1fr;

    }

    .svgh-facility-bottom-center {

        justify-content:
            flex-start;
    }

    .svgh-facility-bottom-btn {

        width:
            fit-content;
    }

}


/* =========================================================
   768px — MOBILE
========================================================= */

@media (max-width: 768px) {

    .svgh-facilities-section {

        padding:
            70px 0 60px;
    }

    .svgh-facilities-container {

        width:
            calc(100% - 28px);
    }

    .svgh-facilities-eyebrow {

        font-size:
            9px;

        letter-spacing:
            2.3px;
    }

    .svgh-facilities-title {

        font-size:
            43px;

        letter-spacing:
            -1.5px;
    }

    .svgh-facilities-header-side {

        gap: 17px;
    }

    .svgh-facilities-header-side p {

        font-size:
            12px;
    }

    .svgh-facilities-feature {

        min-height:
            420px;

        padding:
            25px 22px;
    }

    .svgh-feature-content h3 {

        font-size:
            34px;
    }

    .svgh-facilities-list {

        grid-template-columns:
            1fr;

        gap: 11px;
    }

    .svgh-facility-card {

        min-height:
            145px;
    }

    .svgh-facilities-bottom {

        grid-template-columns:
            1fr;

        gap:
            17px;

        padding:
            20px;
    }

    .svgh-facility-bottom-center {

        justify-content:
            flex-start;
    }

    .svgh-facility-bottom-btn {

        width:
            100%;

        justify-content:
            space-between;
    }

}


/* =========================================================
   480px — SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .svgh-facilities-section {

        padding:
            60px 0 50px;
    }

    .svgh-facilities-container {

        width:
            calc(100% - 22px);
    }

    .svgh-facilities-title {

        font-size:
            36px;
    }

    .svgh-facilities-number strong {

        font-size:
            38px;
    }

    .svgh-facilities-feature {

        min-height:
            400px;

        padding:
            23px 19px;
    }

    .svgh-feature-icon-large {

        width: 52px;
        height: 52px;

        font-size:
            20px;
    }

    .svgh-feature-content h3 {

        font-size:
            31px;
    }

    .svgh-feature-content p {

        font-size:
            11px;
    }

    .svgh-facility-card {

        grid-template-columns:
            22px
            45px
            minmax(0,1fr)
            28px;

        gap:
            9px;

        padding:
            16px 13px;
    }

    .svgh-facility-icon {

        width:
            45px;

        height:
            45px;

        border-radius:
            13px;

        font-size:
            17px;
    }

    .svgh-facility-content h3 {

        font-size:
            13px;
    }

    .svgh-facility-content p {

        font-size:
            9px;
    }

    .svgh-facility-arrow {

        width:
            28px;

        height:
            28px;

        font-size:
            9px;
    }

}



 

/* =========================================================
   ROOMS SECTION
========================================================= */

.svgh-rooms-section {

    --rooms-blue-deep: #063b68;
    --rooms-blue: #0877bd;
    --rooms-blue-light: #edf7fd;

    --rooms-gold: #d99a00;
    --rooms-gold-light: #fff5d8;

    --rooms-green: #4d9635;

    position: relative;
    overflow: hidden;

    padding: 115px 0 100px;

    background:
        linear-gradient(
            180deg,
            #f7fbfe 0%,
            #ffffff 48%,
            #f7fbfe 100%
        );
}


/* =========================================================
   DECORATIVE ORBS
========================================================= */

.svgh-rooms-orb {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.svgh-rooms-orb-1 {

    width: 390px;
    height: 390px;

    left: -220px;
    top: 120px;

    background:
        radial-gradient(
            circle,
            rgba(8,119,189,0.09),
            transparent 70%
        );
}

.svgh-rooms-orb-2 {

    width: 330px;
    height: 330px;

    right: -170px;
    bottom: 100px;

    background:
        radial-gradient(
            circle,
            rgba(217,154,0,0.10),
            transparent 70%
        );
}


/* =========================================================
   CONTAINER
========================================================= */

.svgh-rooms-container {

    width: min(1380px, calc(100% - 70px));

    margin: auto;

    position: relative;
    z-index: 2;
}


/* =========================================================
   HEADER
========================================================= */

.svgh-rooms-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

    margin-bottom: 58px;
}


.svgh-rooms-eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

    color: var(--rooms-gold);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;

}


.svgh-rooms-eyebrow span {

    width: 30px;
    height: 2px;

    background: var(--rooms-gold);
}


.svgh-rooms-title {

    margin: 0;

    color: var(--rooms-blue-deep);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(48px, 5vw, 70px);

    line-height: 1.02;

    letter-spacing: -2.5px;

}


.svgh-rooms-title span {

    color: var(--rooms-gold);

}


/* =========================================================
   HEADER RIGHT
========================================================= */

.svgh-rooms-header-right {

    display: flex;

    align-items: flex-start;

    gap: 28px;

    max-width: 480px;

}


.svgh-rooms-section-number {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    min-width: 70px;

}


.svgh-rooms-section-number strong {

    color: rgba(6,59,104,0.14);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 48px;

    line-height: 1;
}


.svgh-rooms-section-number span {

    margin-top: 8px;

    color: #8b9eac;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;

}


.svgh-rooms-header-right p {

    margin: 5px 0 0;

    color: #718697;

    font-size: 13px;

    line-height: 1.8;

}


/* =========================================================
   ROOM GRID
========================================================= */

.svgh-rooms-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


/* =========================================================
   ROOM CARD
========================================================= */

.svgh-room-card {

    position: relative;

    overflow: hidden;

    border: 1px solid
        rgba(6,59,104,0.08);

    border-radius: 24px;

    background: #ffffff;

    box-shadow:
        0 15px 45px
        rgba(6,59,104,0.07);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


.svgh-room-card:hover {

    transform: translateY(-9px);

    border-color:
        rgba(8,119,189,0.18);

    box-shadow:
        0 28px 60px
        rgba(6,59,104,0.14);
}


/* =========================================================
   FEATURED CARD
========================================================= */

.svgh-room-featured {

    border-color:
        rgba(217,154,0,0.25);

    box-shadow:
        0 18px 50px
        rgba(217,154,0,0.09);
}


.svgh-room-featured:hover {

    border-color:
        rgba(217,154,0,0.38);
}


/* =========================================================
   FEATURED BADGE
========================================================= */

.svgh-room-featured-badge {

    position: absolute;

    top: 18px;
    right: 18px;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 8px 12px;

    border-radius: 30px;

    color: #6f4c00;

    background:
        rgba(255,245,216,0.96);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .5px;

    box-shadow:
        0 8px 20px
        rgba(0,0,0,.10);
}


.svgh-room-featured-badge i {

    color: var(--rooms-gold);

}


/* =========================================================
   IMAGE
========================================================= */

.svgh-room-image-wrap {

    position: relative;

    height: 285px;

    overflow: hidden;

    background: #dcebf4;
}


.svgh-room-image {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform .7s
        cubic-bezier(.2,.7,.2,1);
}


.svgh-room-card:hover
.svgh-room-image {

    transform: scale(1.07);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.svgh-room-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.03) 25%,
            rgba(3,35,58,.68) 100%
        );
}


/* =========================================================
   ROOM NUMBER
========================================================= */

.svgh-room-number {

    position: absolute;

    left: 20px;
    top: 20px;

    color: rgba(255,255,255,.92);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 36px;

    font-weight: 700;
}


/* =========================================================
   IMAGE STATUS
========================================================= */

.svgh-room-status {

    position: absolute;

    left: 20px;
    bottom: 19px;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 8px 12px;

    border:
        1px solid
        rgba(255,255,255,.20);

    border-radius: 30px;

    color: #fff;

    background:
        rgba(0,35,58,.35);

    backdrop-filter: blur(8px);

    font-size: 9px;

    font-weight: 700;
}


.svgh-room-status span {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #8bd36d;

    box-shadow:
        0 0 0 4px
        rgba(139,211,109,.12);
}


/* =========================================================
   CONTENT
========================================================= */

.svgh-room-content {

    padding: 26px 25px 23px;
}


/* =========================================================
   TOP
========================================================= */

.svgh-room-top {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 15px;

}


.svgh-room-label {

    display: block;

    margin-bottom: 7px;

    color: #a1afba;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.8px;
}


.svgh-room-top h3 {

    margin: 0;

    color: var(--rooms-blue-deep);

    font-size: 23px;

    font-weight: 800;

}


.svgh-room-arrow {

    display: flex;

    align-items: center;

    justify-content: center;

    flex: 0 0 auto;

    width: 40px;
    height: 40px;

    border:
        1px solid
        rgba(6,59,104,.10);

    border-radius: 50%;

    color: var(--rooms-blue);

    background: #f8fbfd;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease;
}


.svgh-room-card:hover
.svgh-room-arrow {

    color: #fff;

    background:
        var(--rooms-blue);

    transform:
        rotate(8deg);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.svgh-room-description {

    min-height: 65px;

    margin: 17px 0 20px;

    color: #718697;

    font-size: 12px;

    line-height: 1.75;
}


/* =========================================================
   AMENITIES
========================================================= */

.svgh-room-amenities {

    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    padding-bottom: 20px;

    border-bottom:
        1px solid
        rgba(6,59,104,.08);
}


.svgh-room-amenities span {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 7px 9px;

    border-radius: 8px;

    color: #60798b;

    background:
        #f4f8fb;

    font-size: 8px;

    font-weight: 700;
}


.svgh-room-amenities i {

    color: var(--rooms-blue);

    font-size: 9px;
}


/* =========================================================
   FOOTER
========================================================= */

.svgh-room-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    padding-top: 18px;
}


.svgh-room-info span {

    display: flex;

    align-items: center;

    gap: 6px;

    color: #91a1ad;

    font-size: 8px;

    font-weight: 700;
}


.svgh-room-info i {

    color: var(--rooms-gold);

}


/* =========================================================
   ROOM BUTTON
========================================================= */

.svgh-room-btn {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color:
        var(--rooms-blue-deep) !important;

    text-decoration: none;

    font-size: 10px;

    font-weight: 800;

}


.svgh-room-btn i {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 27px;
    height: 27px;

    border-radius: 50%;

    color: #fff;

    background:
        var(--rooms-blue);

    transition:
        transform .3s ease;
}


.svgh-room-btn:hover i {

    transform:
        translateX(4px);
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.svgh-rooms-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-top: 48px;

    padding: 25px 28px;

    border:
        1px solid
        rgba(6,59,104,.08);

    border-radius: 20px;

    background:
        linear-gradient(
            100deg,
            #ffffff,
            #f5faff
        );

    box-shadow:
        0 12px 35px
        rgba(6,59,104,.05);
}


.svgh-rooms-bottom-text {

    display: flex;

    align-items: center;

    gap: 15px;
}


.svgh-rooms-bottom-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 48px;
    height: 48px;

    flex: 0 0 auto;

    border-radius: 14px;

    color: var(--rooms-gold);

    background:
        var(--rooms-gold-light);
}


.svgh-rooms-bottom-text span {

    display: block;

    margin-bottom: 4px;

    color: #a0adb7;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.svgh-rooms-bottom-text strong {

    display: block;

    color: var(--rooms-blue-deep);

    font-size: 13px;

}


/* =========================================================
   MAIN CTA
========================================================= */

.svgh-rooms-main-btn {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    min-height: 52px;

    padding: 0 9px 0 20px;

    border-radius: 50px;

    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            #075487,
            #087fc9
        );

    text-decoration: none;

    font-size: 11px;

    font-weight: 800;

    box-shadow:
        0 12px 25px
        rgba(6,84,135,.20);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.svgh-rooms-main-btn i {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    color: var(--rooms-blue-deep);

    background: #fff;

    transition:
        transform .3s ease;
}


.svgh-rooms-main-btn:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 18px 32px
        rgba(6,84,135,.27);
}


.svgh-rooms-main-btn:hover i {

    transform:
        translateX(4px);
}


/* =========================================================
   1200px
========================================================= */

@media (max-width: 1200px) {

    .svgh-rooms-container {

        width:
            min(
                1100px,
                calc(100% - 50px)
            );
    }

    .svgh-rooms-grid {

        gap: 18px;
    }

    .svgh-room-content {

        padding:
            22px 19px 20px;
    }

    .svgh-room-top h3 {

        font-size: 20px;
    }

    .svgh-room-image-wrap {

        height: 250px;
    }

}


/* =========================================================
   991px — TABLET
========================================================= */

@media (max-width: 991px) {

    .svgh-rooms-section {

        padding:
            85px 0 75px;
    }

    .svgh-rooms-container {

        width:
            calc(100% - 40px);
    }

    .svgh-rooms-header {

        align-items:
            flex-start;

        flex-direction:
            column;

        gap: 25px;

        margin-bottom: 42px;
    }

    .svgh-rooms-header-right {

        max-width:
            650px;
    }

    .svgh-rooms-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .svgh-room-image-wrap {

        height: 260px;
    }

    .svgh-room-card:last-child {

        grid-column:
            1 / -1;

        max-width:
            calc(50% - 9px);

        width: 100%;

        margin: auto;
    }

}


/* =========================================================
   768px — MOBILE
========================================================= */

@media (max-width: 768px) {

    .svgh-rooms-section {

        padding:
            70px 0 60px;
    }

    .svgh-rooms-container {

        width:
            calc(100% - 28px);
    }

    .svgh-rooms-eyebrow {

        font-size: 9px;

        letter-spacing:
            2.3px;
    }

    .svgh-rooms-title {

        font-size:
            43px;

        letter-spacing:
            -1.5px;
    }

    .svgh-rooms-header-right {

        gap: 17px;
    }

    .svgh-rooms-header-right p {

        font-size:
            12px;
    }

    .svgh-rooms-grid {

        grid-template-columns:
            1fr;

        gap: 18px;
    }

    .svgh-room-card:last-child {

        grid-column:
            auto;

        max-width:
            none;
    }

    .svgh-room-image-wrap {

        height:
            280px;
    }

    .svgh-rooms-bottom {

        align-items:
            flex-start;

        flex-direction:
            column;

        padding:
            20px;
    }

    .svgh-rooms-main-btn {

        width:
            100%;

        justify-content:
            space-between;
    }

}


/* =========================================================
   480px — SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .svgh-rooms-section {

        padding:
            60px 0 50px;
    }

    .svgh-rooms-container {

        width:
            calc(100% - 22px);
    }

    .svgh-rooms-title {

        font-size:
            36px;
    }

    .svgh-rooms-section-number strong {

        font-size:
            38px;
    }

    .svgh-room-image-wrap {

        height:
            235px;
    }

    .svgh-room-content {

        padding:
            21px 17px 18px;
    }

    .svgh-room-top h3 {

        font-size:
            20px;
    }

    .svgh-room-description {

        min-height:
            auto;

        font-size:
            11px;
    }

    .svgh-room-amenities span {

        font-size:
            7.5px;
    }

    .svgh-room-footer {

        align-items:
            flex-start;

        flex-direction:
            column;
    }

    .svgh-room-btn {

        width:
            100%;

        justify-content:
            space-between;

        padding-top:
            5px;
    }

    .svgh-rooms-bottom-text strong {

        font-size:
            11px;
    }

}


 

/* =========================================================
   SHREE VENKATESHWARA GUEST HOUSE
   PREMIUM ABOUT / DISCOVER SECTION
========================================================= */

.svgh-about-premium {
    --svgh-blue-deep: #063b68;
    --svgh-blue: #0877bd;
    --svgh-blue-light: #eaf6ff;

    --svgh-gold: #d99a00;
    --svgh-gold-light: #fff5d8;

    --svgh-green: #4d9635;

    position: relative;
    overflow: hidden;
    padding: 115px 0 95px;

    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(8, 119, 189, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(217, 154, 0, 0.08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f8fcff 50%,
            #f1f8fc 100%
        );
}


/* =========================================================
   DECORATIVE GLOWS
========================================================= */

.svgh-about-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
}

.svgh-about-glow-1 {
    width: 330px;
    height: 330px;
    top: -160px;
    left: -120px;

    background: rgba(8, 119, 189, 0.07);
}

.svgh-about-glow-2 {
    width: 280px;
    height: 280px;
    right: -120px;
    bottom: -100px;

    background: rgba(217, 154, 0, 0.08);
}


/* =========================================================
   CONTAINER
========================================================= */

.svgh-about-premium-container {
    width: min(1380px, calc(100% - 70px));
    margin: auto;
    position: relative;
    z-index: 2;
}


/* =========================================================
   TOP
========================================================= */

.svgh-about-top {
    margin-bottom: 65px;
}

.svgh-about-label {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 25px;

    color: var(--svgh-gold);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.svgh-about-label-line {
    width: 34px;
    height: 2px;

    background: var(--svgh-gold);
}


/* =========================================================
   HEADING ROW
========================================================= */

.svgh-about-heading-row {
    display: grid;
    grid-template-columns: 170px 1fr;
    align-items: start;
    gap: 45px;
}

.svgh-about-heading-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 13px;
}

.svgh-about-number {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 58px;
    font-weight: 700;
    line-height: 1;

    color: rgba(6, 59, 104, 0.12);
}

.svgh-about-number-line {
    width: 55px;
    height: 3px;

    margin: 14px 0 10px;

    background: var(--svgh-gold);
}

.svgh-about-number-text {
    color: #7890a4;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}


/* =========================================================
   MAIN TITLE
========================================================= */

.svgh-about-premium-title {
    max-width: 850px;
    margin: 0;

    color: var(--svgh-blue-deep);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 5vw, 76px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -2.5px;
}

.svgh-about-premium-title span {
    color: var(--svgh-gold);
}


/* =========================================================
   MAIN CONTENT GRID
========================================================= */

.svgh-about-main {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
    gap: 85px;

    align-items: center;
}


/* =========================================================
   STORY CONTENT
========================================================= */

.svgh-about-story {
    position: relative;
}

.svgh-about-story-intro {
    display: flex;
    align-items: flex-start;
    gap: 22px;

    max-width: 680px;
    margin-bottom: 25px;
}

.svgh-about-gold-mark {
    flex: 0 0 auto;

    width: 5px;
    height: 75px;

    border-radius: 5px;

    background: linear-gradient(
        to bottom,
        var(--svgh-gold),
        #f1c55d
    );
}

.svgh-about-story-intro p {
    margin: 0;

    color: #21435e;

    font-size: 20px;
    font-weight: 400;
    line-height: 1.75;
}

.svgh-about-story-intro strong {
    color: var(--svgh-blue-deep);
    font-weight: 800;
}


.svgh-about-description {
    max-width: 690px;

    margin: 0 0 38px;

    color: #61778a;

    font-size: 15px;
    line-height: 1.9;
}

.svgh-about-description strong {
    color: var(--svgh-blue-deep);
}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.svgh-about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;

    margin-bottom: 38px;
}

.svgh-about-highlight {
    position: relative;

    min-height: 195px;
    padding: 22px 18px;

    border: 1px solid rgba(6, 59, 104, 0.08);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.85);

    box-shadow:
        0 12px 35px rgba(6, 59, 104, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;

    overflow: hidden;
}

.svgh-about-highlight::after {
    content: "";

    position: absolute;

    width: 65px;
    height: 65px;

    right: -30px;
    bottom: -30px;

    border-radius: 50%;

    background: rgba(8, 119, 189, 0.06);
}

.svgh-about-highlight:hover {
    transform: translateY(-7px);

    border-color: rgba(8, 119, 189, 0.18);

    box-shadow:
        0 20px 45px rgba(6, 59, 104, 0.11);
}


/* =========================================================
   HIGHLIGHT ICON
========================================================= */

.svgh-highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 49px;
    height: 49px;

    margin-bottom: 18px;

    border-radius: 14px;

    color: #fff;

    background: linear-gradient(
        135deg,
        #0877bd,
        #075487
    );

    box-shadow:
        0 10px 20px rgba(8, 119, 189, 0.22);
}

.svgh-highlight-icon.gold {
    background: linear-gradient(
        135deg,
        #f0b20b,
        #c88200
    );

    box-shadow:
        0 10px 20px rgba(217, 154, 0, 0.22);
}

.svgh-highlight-icon.green {
    background: linear-gradient(
        135deg,
        #66aa45,
        #3c7f28
    );

    box-shadow:
        0 10px 20px rgba(77, 150, 53, 0.20);
}


.svgh-highlight-content {
    position: relative;
    z-index: 2;
}

.svgh-highlight-content > span {
    display: block;

    margin-bottom: 5px;

    color: #a4b5c2;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.svgh-highlight-content h3 {
    margin: 0 0 8px;

    color: var(--svgh-blue-deep);

    font-size: 15px;
    font-weight: 800;
}

.svgh-highlight-content p {
    margin: 0;

    color: #758999;

    font-size: 11px;
    line-height: 1.65;
}


/* =========================================================
   BUTTONS
========================================================= */

.svgh-about-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
}


/* Main Button */

.svgh-about-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;

    min-height: 57px;

    padding: 0 10px 0 23px;

    color: #fff !important;

    text-decoration: none;

    border-radius: 50px;

    background: linear-gradient(
        135deg,
        #075487,
        #087fca
    );

    box-shadow:
        0 13px 28px rgba(6, 84, 135, 0.23);

    font-size: 13px;
    font-weight: 800;

    transition: all 0.3s ease;
}

.svgh-about-main-btn i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 50%;

    color: var(--svgh-blue-deep);

    background: #fff;

    transition: transform 0.3s ease;
}

.svgh-about-main-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 35px rgba(6, 84, 135, 0.30);
}

.svgh-about-main-btn:hover i {
    transform: translateX(4px);
}


/* Contact */

.svgh-about-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: var(--svgh-blue-deep) !important;
    text-decoration: none;
}

.svgh-contact-round-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border: 1px solid rgba(6, 59, 104, 0.12);
    border-radius: 50%;

    color: var(--svgh-blue);

    background: #fff;

    transition: all 0.3s ease;
}

.svgh-about-contact-btn:hover .svgh-contact-round-icon {
    color: #fff;
    background: var(--svgh-blue);

    transform: rotate(-8deg);
}

.svgh-about-contact-btn small {
    display: block;

    margin-bottom: 2px;

    color: #9aaab7;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.svgh-about-contact-btn strong {
    display: block;

    font-size: 13px;
}


/* =========================================================
   LOCATION CARD AREA
========================================================= */

.svgh-about-location-area {
    position: relative;

    padding: 25px 20px 20px 30px;
}


/* =========================================================
   LOCATION CARD
========================================================= */

.svgh-location-card {
    position: relative;

    overflow: hidden;

    padding: 35px;

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            #063b68 0%,
            #075487 55%,
            #0875ae 100%
        );

    box-shadow:
        0 30px 70px rgba(6, 59, 104, 0.25);

    color: #fff;
}


/* Gold edge */

.svgh-location-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: linear-gradient(
        90deg,
        var(--svgh-gold),
        #f4ca5c,
        var(--svgh-gold)
    );
}


/* Decorative circle */

.svgh-location-orbit {
    position: absolute;

    width: 300px;
    height: 300px;

    top: -160px;
    right: -130px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 50%;
}

.svgh-location-orbit::after {
    content: "";

    position: absolute;

    inset: 35px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;
}


/* =========================================================
   LOCATION TOP
========================================================= */

.svgh-location-top {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 28px;
}

.svgh-location-small {
    display: block;

    margin-bottom: 9px;

    color: #eac35e;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2.5px;
}

.svgh-location-top h3 {
    max-width: 330px;

    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 31px;
    line-height: 1.15;
}

.svgh-location-top h3 span {
    color: #f2c34d;
}


.svgh-location-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;

    color: #f2c34d;

    background: rgba(255, 255, 255, 0.09);

    backdrop-filter: blur(8px);
}


/* =========================================================
   MAP VISUAL
========================================================= */

.svgh-location-visual {
    position: relative;

    height: 225px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.09),
            rgba(255,255,255,0.025)
        );
}


/* Grid */

.svgh-map-grid {
    position: absolute;
    inset: 0;

    opacity: 0.45;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.07) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.07) 1px,
            transparent 1px
        );

    background-size: 35px 35px;

    transform: rotate(-5deg) scale(1.2);
}


/* Roads */

.svgh-map-route {
    position: absolute;

    height: 2px;

    background: rgba(255,255,255,0.30);

    transform-origin: left center;
}

.route-one {
    width: 360px;

    left: 30px;
    top: 145px;

    transform: rotate(-25deg);
}

.route-two {
    width: 310px;

    left: 120px;
    top: 85px;

    transform: rotate(27deg);
}


/* Map pin */

.svgh-map-pin {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 9px;
}

.svgh-map-pin-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 50% 50% 50% 5px;

    color: #fff;

    background: var(--svgh-gold);

    transform: rotate(-45deg);

    box-shadow:
        0 8px 20px rgba(0,0,0,0.2);
}

.svgh-map-pin-icon i {
    transform: rotate(45deg);
}

.svgh-map-pin-icon.temple {
    background: var(--svgh-green);
}

.svgh-map-pin span {
    padding: 6px 10px;

    border-radius: 6px;

    color: #fff;

    background: rgba(0,0,0,0.22);

    font-size: 9px;
    font-weight: 700;
}

.pin-guest {
    left: 35px;
    bottom: 42px;
}

.pin-temple {
    right: 25px;
    top: 42px;
}


/* Destination dot */

.svgh-map-destination {
    position: absolute;

    width: 10px;
    height: 10px;

    top: 48%;
    left: 52%;

    border: 3px solid rgba(255,255,255,0.8);
    border-radius: 50%;

    background: var(--svgh-gold);

    box-shadow:
        0 0 0 8px rgba(217,154,0,0.15),
        0 0 0 18px rgba(217,154,0,0.06);
}


/* =========================================================
   ADDRESS
========================================================= */

.svgh-location-address {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 15px;

    margin-top: 20px;
    padding: 18px;

    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 16px;

    background: rgba(255,255,255,0.07);
}

.svgh-address-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 40px;
    height: 40px;

    border-radius: 12px;

    color: var(--svgh-gold);

    background: rgba(255,255,255,0.10);
}

.svgh-location-address span {
    display: block;

    margin-bottom: 4px;

    color: #a9c2d5;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.svgh-location-address p {
    margin: 0;

    color: #fff;

    font-size: 11px;
    line-height: 1.6;
}


/* =========================================================
   LOCATION BOTTOM
========================================================= */

.svgh-location-bottom {
    margin-top: 18px;
}

.svgh-location-mini {
    display: flex;
    align-items: center;
    gap: 13px;
}

.svgh-location-mini > i {
    color: #f2c34d;

    font-size: 17px;
}

.svgh-location-mini small {
    display: block;

    margin-bottom: 3px;

    color: #8faec3;

    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.svgh-location-mini strong {
    display: block;

    color: #fff;

    font-size: 11px;
}


/* =========================================================
   FLOATING CARD
========================================================= */

.svgh-about-floating-card {
    position: absolute;

    right: -8px;
    bottom: 5px;

    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 220px;

    padding: 14px 17px;

    border: 1px solid rgba(6,59,104,0.08);
    border-radius: 15px;

    background: rgba(255,255,255,0.96);

    box-shadow:
        0 20px 45px rgba(6,59,104,0.15);

    z-index: 5;
}

.svgh-floating-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 39px;
    height: 39px;

    border-radius: 11px;

    color: #fff;

    background: linear-gradient(
        135deg,
        #e4aa00,
        #c58100
    );
}

.svgh-about-floating-card span {
    display: block;

    margin-bottom: 3px;

    color: #a1afba;

    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.svgh-about-floating-card strong {
    display: block;

    color: var(--svgh-blue-deep);

    font-size: 12px;
}

.svgh-about-floating-card > i {
    margin-left: auto;

    color: #a4b5c2;

    font-size: 10px;
}


/* =========================================================
   BOTTOM BAR
========================================================= */

.svgh-about-bottom-bar {
    display: grid;

    grid-template-columns:
        1fr
        1px
        1fr
        1px
        1fr
        1px
        0.8fr;

    align-items: center;

    margin-top: 80px;
    padding: 23px 30px;

    border: 1px solid rgba(6,59,104,0.08);
    border-radius: 20px;

    background: rgba(255,255,255,0.85);

    box-shadow:
        0 12px 35px rgba(6,59,104,0.05);
}

.svgh-about-stat {
    display: flex;
    align-items: center;
    gap: 13px;

    padding: 0 20px;
}

.svgh-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 40px;
    height: 40px;

    border-radius: 12px;

    color: var(--svgh-blue);

    background: var(--svgh-blue-light);
}

.svgh-stat-icon.gold {
    color: var(--svgh-gold);

    background: var(--svgh-gold-light);
}

.svgh-stat-icon.green {
    color: var(--svgh-green);

    background: #edf7e9;
}

.svgh-about-stat strong {
    display: block;

    margin-bottom: 3px;

    color: var(--svgh-blue-deep);

    font-size: 12px;
    font-weight: 800;
}

.svgh-about-stat span {
    display: block;

    color: #91a2ae;

    font-size: 9px;
}

.svgh-stat-divider {
    width: 1px;
    height: 42px;

    background: rgba(6,59,104,0.10);
}


/* CTA */

.svgh-stat-cta {
    justify-content: flex-end;
}

.svgh-stat-cta a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--svgh-blue-deep) !important;
    text-decoration: none;

    font-size: 11px;
    font-weight: 800;
}

.svgh-stat-cta a i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    border-radius: 50%;

    color: #fff;

    background: var(--svgh-blue);

    transition: transform 0.3s ease;
}

.svgh-stat-cta a:hover i {
    transform: translateX(4px);
}


/* =========================================================
   1200px
========================================================= */

@media (max-width: 1200px) {

    .svgh-about-premium-container {
        width: min(1100px, calc(100% - 50px));
    }

    .svgh-about-main {
        gap: 45px;
    }

    .svgh-about-heading-row {
        grid-template-columns: 120px 1fr;
        gap: 30px;
    }

    .svgh-about-premium-title {
        font-size: 60px;
    }

    .svgh-about-highlights {
        gap: 9px;
    }

    .svgh-about-highlight {
        padding: 18px 14px;
    }

}


/* =========================================================
   991px — TABLET
========================================================= */

@media (max-width: 991px) {

    .svgh-about-premium {
        padding: 85px 0 75px;
    }

    .svgh-about-premium-container {
        width: calc(100% - 40px);
    }

    .svgh-about-top {
        margin-bottom: 45px;
    }

    .svgh-about-heading-row {
        display: block;
    }

    .svgh-about-heading-left {
        flex-direction: row;
        align-items: center;
        gap: 12px;

        margin-bottom: 20px;
    }

    .svgh-about-number {
        font-size: 35px;
    }

    .svgh-about-number-line {
        width: 35px;
        height: 2px;
        margin: 0;
    }

    .svgh-about-premium-title {
        max-width: 750px;
        font-size: 54px;
    }

    .svgh-about-main {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .svgh-about-story {
        max-width: 850px;
    }

    .svgh-about-location-area {
        max-width: 700px;
        width: 100%;
        margin: auto;
    }

    .svgh-about-bottom-bar {
        grid-template-columns: 1fr 1fr;

        gap: 20px;
    }

    .svgh-stat-divider {
        display: none;
    }

    .svgh-stat-cta {
        justify-content: flex-start;
    }

}


/* =========================================================
   768px — MOBILE
========================================================= */

@media (max-width: 768px) {

    .svgh-about-premium {
        padding: 70px 0 60px;
    }

    .svgh-about-premium-container {
        width: calc(100% - 28px);
    }

    .svgh-about-label {
        font-size: 9px;
        letter-spacing: 2.5px;
    }

    .svgh-about-label-line {
        width: 22px;
    }

    .svgh-about-premium-title {
        font-size: 43px;
        line-height: 1.05;
        letter-spacing: -1.5px;
    }

    .svgh-about-story-intro {
        gap: 15px;
    }

    .svgh-about-story-intro p {
        font-size: 17px;
        line-height: 1.65;
    }

    .svgh-about-description {
        font-size: 14px;
        line-height: 1.8;
    }

    .svgh-about-highlights {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .svgh-about-highlight {
        display: flex;
        align-items: flex-start;
        gap: 16px;

        min-height: auto;
        padding: 18px;
    }

    .svgh-highlight-icon {
        flex: 0 0 auto;

        margin-bottom: 0;
    }

    .svgh-highlight-content h3 {
        margin-top: 3px;
    }

    .svgh-about-buttons {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .svgh-location-card {
        padding: 25px 20px;
        border-radius: 24px;
    }

    .svgh-location-top h3 {
        font-size: 26px;
    }

    .svgh-location-visual {
        height: 205px;
    }

    .svgh-about-floating-card {
        position: relative;

        right: auto;
        bottom: auto;

        width: fit-content;

        margin: -5px 0 0 auto;
    }

    .svgh-about-bottom-bar {
        grid-template-columns: 1fr;

        padding: 20px;
    }

    .svgh-about-stat {
        padding: 5px 0;
    }

    .svgh-stat-cta {
        padding-top: 12px;
    }

}


/* =========================================================
   480px — SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .svgh-about-premium {
        padding: 60px 0 50px;
    }

    .svgh-about-premium-container {
        width: calc(100% - 22px);
    }

    .svgh-about-top {
        margin-bottom: 38px;
    }

    .svgh-about-premium-title {
        font-size: 36px;
    }

    .svgh-about-number {
        font-size: 29px;
    }

    .svgh-about-story-intro p {
        font-size: 16px;
    }

    .svgh-about-description {
        font-size: 13px;
    }

    .svgh-about-main-btn {
        width: 100%;
        justify-content: space-between;
    }

    .svgh-location-card {
        padding: 24px 16px;
    }

    .svgh-location-top {
        gap: 10px;
    }

    .svgh-location-top h3 {
        font-size: 23px;
    }

    .svgh-location-icon {
        width: 43px;
        height: 43px;
    }

    .svgh-location-visual {
        height: 190px;
    }

    .svgh-map-pin span {
        font-size: 8px;
    }

    .pin-guest {
        left: 15px;
        bottom: 30px;
    }

    .pin-temple {
        right: 12px;
        top: 30px;
    }

    .svgh-location-address {
        padding: 14px;
    }

    .svgh-location-address p {
        font-size: 10px;
    }

    .svgh-about-floating-card {
        min-width: 205px;
    }

}

 




 
 
/* =========================================================
   SRI VENKATESHWARA GUEST HOUSE
   PREMIUM HERO SECTION
========================================================= */

:root {

    --svgh-blue-dark: #063B68;
    --svgh-blue: #075A91;
    --svgh-blue-light: #0A78BC;

    --svgh-gold: #E6A000;
    --svgh-gold-light: #F7BC2E;
    --svgh-gold-dark: #B97900;

    --svgh-green: #4E8B2A;

    --svgh-dark: #17354D;

    --svgh-white: #FFFFFF;

}


/* =========================================================
   HERO MAIN
========================================================= */

.svgh-hero {

    position: relative;

    width: 100%;

    min-height: 620px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #F7FBFE 0%,
            #EDF7FC 50%,
            #FFFFFF 100%
        );

}


/* =========================================================
   DECORATIVE SHAPES
========================================================= */

.svgh-hero-shape {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

}


.svgh-hero-shape-one {

    width: 500px;

    height: 500px;

    right: -230px;

    top: -240px;

    background:
        rgba(7, 90, 145, .055);

}


.svgh-hero-shape-two {

    width: 350px;

    height: 350px;

    left: -190px;

    bottom: -220px;

    background:
        rgba(230, 160, 0, .065);

}


/* =========================================================
   HERO CONTAINER
========================================================= */

.svgh-hero-container {

    position: relative;

    z-index: 3;

    width: min(1400px, 92%);

    min-height: 620px;

    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(0, .92fr)
        minmax(0, 1.08fr);

    align-items: center;

    gap: 55px;

    padding:
        55px 0
        70px;

}


/* =========================================================
   LEFT CONTENT
========================================================= */

.svgh-hero-content {

    position: relative;

    z-index: 5;

    max-width: 620px;

}


/* =========================================================
   EYEBROW
========================================================= */

.svgh-hero-eyebrow {

    display: flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 14px;

    color: var(--svgh-gold-dark);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 4px;

}


.svgh-eyebrow-line {

    width: 42px;

    height: 3px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            var(--svgh-gold),
            var(--svgh-gold-light)
        );

}


/* =========================================================
   MAIN TITLE
========================================================= */

.svgh-hero-title {

    margin: 0;

    display: flex;

    flex-direction: column;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    line-height: .98;

    letter-spacing: -.8px;

}


.svgh-hero-title span {

    color: var(--svgh-blue-dark);

    font-size: clamp(
        39px,
        4.1vw,
        66px
    );

    font-weight: 700;

}


.svgh-hero-title strong {

    margin-top: 7px;

    color: var(--svgh-gold-dark);

    font-size: clamp(
        38px,
        4vw,
        63px
    );

    font-weight: 700;

}


/* =========================================================
   DESCRIPTION
========================================================= */

.svgh-hero-description {

    max-width: 560px;

    margin:
        22px 0
        25px;

    color: #536B7D;

    font-size: 16px;

    line-height: 1.75;

}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.svgh-hero-highlights {

    display: flex;

    flex-wrap: wrap;

    gap: 11px;

    margin-bottom: 27px;

}


.svgh-highlight {

    min-width: 122px;

    padding: 10px 13px;

    display: flex;

    align-items: center;

    gap: 9px;

    background: rgba(255,255,255,.82);

    border: 1px solid rgba(7,90,145,.09);

    border-radius: 12px;

    box-shadow:
        0 7px 22px rgba(6,59,104,.06);

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.svgh-highlight:hover {

    transform: translateY(-4px);

    box-shadow:
        0 12px 28px rgba(6,59,104,.12);

}


/* Highlight icon */

.svgh-highlight-icon {

    width: 36px;

    height: 36px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--svgh-blue-light),
            var(--svgh-blue-dark)
        );

    font-size: 14px;

}


/* Different icon colors */

.svgh-highlight:nth-child(2)
.svgh-highlight-icon {

    background:
        linear-gradient(
            135deg,
            #EAB02A,
            #B97900
        );

}


.svgh-highlight:nth-child(3)
.svgh-highlight-icon {

    background:
        linear-gradient(
            135deg,
            #5FA53A,
            #39731F
        );

}


.svgh-highlight:nth-child(4)
.svgh-highlight-icon {

    background:
        linear-gradient(
            135deg,
            #0A78BC,
            #063B68
        );

}


/* Highlight text */

.svgh-highlight-text {

    display: flex;

    flex-direction: column;

    line-height: 1.15;

}


.svgh-highlight-text strong {

    color: var(--svgh-dark);

    font-size: 12px;

}


.svgh-highlight-text span {

    margin-top: 3px;

    color: #718394;

    font-size: 11px;

}


/* =========================================================
   HERO ACTIONS
========================================================= */

.svgh-hero-actions {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

}


/* Primary */

.svgh-hero-primary {

    min-height: 50px;

    padding: 0 19px;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    border-radius: 11px;

    color: #fff;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    background:
        linear-gradient(
            135deg,
            var(--svgh-gold),
            var(--svgh-gold-dark)
        );

    box-shadow:
        0 9px 22px rgba(185,121,0,.23);

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.svgh-hero-primary:hover {

    color: #fff;

    transform: translateY(-3px);

    box-shadow:
        0 13px 27px rgba(185,121,0,.30);

}


.svgh-hero-primary > span {

    width: 27px;

    height: 27px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 7px;

    background:
        rgba(255,255,255,.16);

}


.svgh-hero-primary > i {

    margin-left: 5px;

    transition:
        transform .3s ease;

}


.svgh-hero-primary:hover > i {

    transform: translateX(4px);

}


/* Secondary */

.svgh-hero-secondary {

    min-height: 50px;

    padding: 0 17px;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--svgh-blue-dark);

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    border: 1px solid rgba(6,59,104,.17);

    border-radius: 11px;

    background: rgba(255,255,255,.65);

    transition:
        all .3s ease;

}


.svgh-hero-secondary:hover {

    color: var(--svgh-blue);

    border-color:
        var(--svgh-blue);

    background: #fff;

}


/* =========================================================
   TRUST LINE
========================================================= */

.svgh-hero-trust {

    margin-top: 17px;

    display: flex;

    align-items: center;

    gap: 8px;

    color: #718394;

    font-size: 11px;

    font-weight: 600;

}


.svgh-trust-icon {

    color: var(--svgh-green);

    font-size: 14px;

}


/* =========================================================
   RIGHT IMAGE
========================================================= */

.svgh-hero-visual {

    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* =========================================================
   IMAGE FRAME
========================================================= */

.svgh-hero-image-wrap {

    position: relative;

    width: 100%;

    max-width: 700px;

    height: 475px;

    overflow: hidden;

    border-radius:
        25px 25px 80px 25px;

    border:
        7px solid rgba(255,255,255,.92);

    box-shadow:
        0 25px 55px rgba(6,59,104,.20);

}


/* Image */

.svgh-hero-image {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform .7s ease;

}


.svgh-hero-image-wrap:hover
.svgh-hero-image {

    transform: scale(1.035);

}


/* Image overlay */

.svgh-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(6,59,104,0) 55%,
            rgba(6,59,104,.30) 100%
        );

    pointer-events: none;

}


/* =========================================================
   LOCATION BADGE
========================================================= */

.svgh-location-badge {

    position: absolute;

    left: 20px;

    bottom: 20px;

    padding: 10px 15px;

    display: flex;

    align-items: center;

    gap: 10px;

    border-radius: 12px;

    color: #fff;

    background:
        rgba(6,59,104,.88);

    backdrop-filter: blur(8px);

    box-shadow:
        0 10px 25px rgba(0,0,0,.16);

}


.svgh-location-icon {

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    color: #fff;

    background:
        var(--svgh-gold);

}


.svgh-location-badge div:last-child {

    display: flex;

    flex-direction: column;

}


.svgh-location-badge strong {

    font-size: 12px;

}


.svgh-location-badge span {

    margin-top: 2px;

    font-size: 10px;

    opacity: .75;

}


/* =========================================================
   HOSPITALITY BADGE
========================================================= */

.svgh-experience-badge {

    position: absolute;

    right: 20px;

    top: 20px;

    padding: 10px 13px;

    display: flex;

    align-items: center;

    gap: 9px;

    border-radius: 12px;

    background:
        rgba(255,255,255,.94);

    box-shadow:
        0 10px 28px rgba(0,0,0,.14);

}


.svgh-experience-icon {

    width: 33px;

    height: 33px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    color: #fff;

    background:
        var(--svgh-green);

}


.svgh-experience-badge div {

    display: flex;

    flex-direction: column;

}


.svgh-experience-badge strong {

    color: var(--svgh-blue-dark);

    font-size: 11px;

}


.svgh-experience-badge span {

    margin-top: 2px;

    color: #7A8995;

    font-size: 9px;

}


/* =========================================================
   DECORATIVE CIRCLE
========================================================= */

.svgh-hero-circle {

    position: absolute;

    right: -8px;

    bottom: -7px;

    width: 105px;

    height: 105px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #fff;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            var(--svgh-gold),
            var(--svgh-gold-dark)
        );

    border:
        6px solid #fff;

    box-shadow:
        0 12px 25px rgba(0,0,0,.14);

    z-index: 4;

}


.svgh-hero-circle span {

    font-size: 9px;

    line-height: 1.45;

    font-weight: 800;

    letter-spacing: 1px;

}


/* =========================================================
   BOTTOM CURVE
========================================================= */

.svgh-hero-bottom {

    position: absolute;

    left: 0;

    right: 0;

    bottom: -1px;

    height: 65px;

    z-index: 5;

}


.svgh-hero-bottom svg {

    width: 100%;

    height: 100%;

    display: block;

}


.svgh-hero-bottom path {

    fill: #fff;

}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1200px) {

    .svgh-hero-container {

        width: 94%;

        gap: 35px;

    }


    .svgh-hero-image-wrap {

        height: 430px;

    }


    .svgh-hero-highlights {

        gap: 7px;

    }


    .svgh-highlight {

        min-width: 110px;

        padding: 9px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .svgh-hero {

        min-height: auto;

    }


    .svgh-hero-container {

        min-height: auto;

        grid-template-columns: 1fr;

        gap: 35px;

        padding:
            50px 0
            80px;

    }


    .svgh-hero-content {

        max-width: 700px;

        margin: auto;

        text-align: center;

    }


    .svgh-hero-eyebrow {

        justify-content: center;

    }


    .svgh-hero-description {

        margin-left: auto;

        margin-right: auto;

    }


    .svgh-hero-highlights {

        justify-content: center;

    }


    .svgh-hero-actions {

        justify-content: center;

    }


    .svgh-hero-trust {

        justify-content: center;

    }


    .svgh-hero-visual {

        min-height: 430px;

    }


    .svgh-hero-image-wrap {

        max-width: 760px;

        height: 430px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .svgh-hero-container {

        width: 92%;

        padding:
            35px 0
            70px;

        gap: 28px;

    }


    .svgh-hero-eyebrow {

        font-size: 10px;

        letter-spacing: 3px;

    }


    .svgh-eyebrow-line {

        width: 28px;

    }


    .svgh-hero-title span {

        font-size: 38px;

    }


    .svgh-hero-title strong {

        font-size: 37px;

    }


    .svgh-hero-description {

        margin-top: 17px;

        margin-bottom: 20px;

        font-size: 13px;

        line-height: 1.65;

    }


    .svgh-hero-highlights {

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 8px;

    }


    .svgh-highlight {

        min-width: 0;

        justify-content: flex-start;

        padding: 9px;

        text-align: left;

    }


    .svgh-highlight-icon {

        width: 34px;

        height: 34px;

    }


    .svgh-highlight-text strong {

        font-size: 11px;

    }


    .svgh-highlight-text span {

        font-size: 10px;

    }


    .svgh-hero-actions {

        flex-direction: column;

        width: 100%;

    }


    .svgh-hero-primary,
    .svgh-hero-secondary {

        width: 100%;

        justify-content: center;

    }


    .svgh-hero-trust {

        font-size: 9px;

    }


    .svgh-hero-visual {

        min-height: 360px;

    }


    .svgh-hero-image-wrap {

        height: 350px;

        border-radius:
            18px 18px 55px 18px;

        border-width: 5px;

    }


    .svgh-location-badge {

        left: 12px;

        bottom: 12px;

        padding: 8px 10px;

    }


    .svgh-location-icon {

        width: 29px;

        height: 29px;

        font-size: 11px;

    }


    .svgh-location-badge strong {

        font-size: 10px;

    }


    .svgh-location-badge span {

        font-size: 8px;

    }


    .svgh-experience-badge {

        top: 12px;

        right: 12px;

        padding: 8px 10px;

    }


    .svgh-experience-icon {

        width: 29px;

        height: 29px;

        font-size: 10px;

    }


    .svgh-experience-badge strong {

        font-size: 9px;

    }


    .svgh-experience-badge span {

        font-size: 8px;

    }


    .svgh-hero-circle {

        width: 80px;

        height: 80px;

        right: -2px;

        bottom: -3px;

        border-width: 4px;

    }


    .svgh-hero-circle span {

        font-size: 7px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .svgh-hero-container {

        width: 91%;

        padding-top: 28px;

    }


    .svgh-hero-title span {

        font-size: 31px;

    }


    .svgh-hero-title strong {

        font-size: 30px;

    }


    .svgh-hero-description {

        font-size: 12px;

    }


    .svgh-hero-visual {

        min-height: 310px;

    }


    .svgh-hero-image-wrap {

        height: 300px;

        border-radius:
            15px 15px 45px 15px;

    }


    .svgh-highlight {

        padding: 8px;

    }


    .svgh-highlight-icon {

        width: 30px;

        height: 30px;

        font-size: 11px;

    }


    .svgh-highlight-text strong {

        font-size: 10px;

    }


    .svgh-highlight-text span {

        font-size: 9px;

    }

}


 


 