
/* =========================================================
   ROOT
========================================================= */

:root {

    --svgh-navy: #071a3a;
    --svgh-navy-2: #0b2854;

    --svgh-blue: #1264c7;
    --svgh-blue-light: #edf6ff;

    --svgh-gold: #d7a83e;
    --svgh-gold-light: #fff5d8;

    --svgh-green: #15936a;
    --svgh-green-light: #eafaf4;

    --svgh-orange: #ed8b24;
    --svgh-orange-light: #fff4e7;

    --svgh-purple: #7357d8;
    --svgh-purple-light: #f1edff;

    --svgh-red: #df5363;
    --svgh-red-light: #fff0f2;

    --svgh-teal: #159aa0;
    --svgh-teal-light: #eafafa;

    --svgh-white: #ffffff;
    --svgh-light: #f7faff;

    --svgh-text: #26364d;
    --svgh-muted: #6c7a8d;

    --svgh-border: #e5ecf5;

    --svgh-shadow:
        0 18px 50px rgba(7,26,58,0.09);

    --svgh-radius: 22px;
}


/* =========================================================
   GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    color: var(--svgh-text);

    background: #ffffff;

    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   FACILITIES HERO
========================================================= */

.svgh-facility-hero {

    position: relative;

    min-height: 410px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 88% 18%,
            rgba(215,168,62,0.24),
            transparent 28%
        ),

        radial-gradient(
            circle at 8% 85%,
            rgba(18,100,199,0.25),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #061735 0%,
            #0a2852 55%,
            #0e4e94 100%
        );
}


.svgh-facility-hero::before {

    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    right: -180px;
    top: -230px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,0.14);
}


.svgh-facility-hero::after {

    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    left: -190px;
    bottom: -190px;

    border-radius: 50%;

    border:
        1px solid
        rgba(215,168,62,0.18);
}


.svgh-facility-hero-container {

    width: min(1180px, 92%);

    margin: auto;

    position: relative;

    z-index: 2;

    padding: 78px 0;
}


.svgh-facility-breadcrumb {

    display: flex;

    align-items: center;

    gap: 10px;

    color:
        rgba(255,255,255,0.70);

    font-size: 13px;

    margin-bottom: 22px;
}


.svgh-facility-breadcrumb a {

    color:
        rgba(255,255,255,0.72);
}


.svgh-facility-breadcrumb i {

    color:
        var(--svgh-gold);

    font-size: 10px;
}


.svgh-facility-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 14px;

    border-radius: 30px;

    background:
        rgba(255,255,255,0.08);

    border:
        1px solid
        rgba(255,255,255,0.13);

    color: #ffe7a0;

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    margin-bottom: 17px;
}


.svgh-facility-eyebrow span {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        var(--svgh-gold);
}


.svgh-facility-hero-title {

    max-width: 800px;

    color: #ffffff;

    font-size:
        clamp(38px, 5vw, 62px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.5px;

    margin-bottom: 18px;
}


.svgh-facility-hero-title span {

    color:
        var(--svgh-gold);
}


.svgh-facility-hero-text {

    max-width: 690px;

    color:
        rgba(255,255,255,0.73);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   INTRO
========================================================= */

.svgh-facility-intro {

    padding: 90px 0 45px;

    background: #ffffff;
}


.svgh-facility-container {

    width: min(1180px, 92%);

    margin: auto;
}


.svgh-facility-heading {

    max-width: 760px;

    margin: 0 auto;

    text-align: center;
}


.svgh-facility-label {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color:
        var(--svgh-blue);

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    margin-bottom: 14px;
}


.svgh-facility-label::before {

    content: "";

    width: 28px;
    height: 3px;

    border-radius: 5px;

    background:
        var(--svgh-gold);
}


.svgh-facility-heading h2 {

    color:
        var(--svgh-navy);

    font-size:
        clamp(30px, 4vw, 47px);

    line-height: 1.15;

    font-weight: 800;

    margin-bottom: 15px;
}


.svgh-facility-heading h2 span {

    color:
        var(--svgh-blue);
}


.svgh-facility-heading p {

    color:
        var(--svgh-muted);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   FEATURED FACILITY
========================================================= */

.svgh-facility-feature {

    margin-top: 55px;

    display: grid;

    grid-template-columns:
        0.85fr 1.15fr;

    min-height: 310px;

    overflow: hidden;

    border-radius: 27px;

    background:
        linear-gradient(
            135deg,
            #071a3a,
            #0d4e93
        );

    box-shadow:
        0 22px 55px
        rgba(7,26,58,0.14);

    position: relative;
}


.svgh-facility-feature::after {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -130px;
    top: -150px;

    border-radius: 50%;

    border:
        1px solid
        rgba(215,168,62,0.15);
}


.svgh-facility-feature-icon {

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    min-height: 310px;
}


.svgh-facility-feature-icon::before {

    content: "";

    position: absolute;

    width: 210px;
    height: 210px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,0.13);
}


.svgh-facility-feature-icon::after {

    content: "";

    position: absolute;

    width: 145px;
    height: 145px;

    border-radius: 50%;

    border:
        1px solid
        rgba(215,168,62,0.25);
}


.svgh-feature-big-icon {

    width: 92px;
    height: 92px;

    border-radius: 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        var(--svgh-gold);

    color:
        #17213a;

    font-size: 37px;

    position: relative;

    z-index: 3;

    box-shadow:
        0 20px 40px
        rgba(0,0,0,0.20);
}


.svgh-facility-feature-content {

    position: relative;

    z-index: 3;

    padding: 50px 55px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.svgh-feature-small {

    color:
        #ffe29a;

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    margin-bottom: 9px;
}


.svgh-facility-feature-content h3 {

    color: #ffffff;

    font-size: 31px;

    line-height: 1.2;

    margin-bottom: 13px;
}


.svgh-facility-feature-content p {

    max-width: 620px;

    color:
        rgba(255,255,255,0.65);

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 20px;
}


.svgh-feature-points {

    display: flex;

    flex-wrap: wrap;

    gap: 9px;
}


.svgh-feature-point {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 8px 11px;

    border-radius: 9px;

    background:
        rgba(255,255,255,0.07);

    border:
        1px solid
        rgba(255,255,255,0.08);

    color:
        rgba(255,255,255,0.80);

    font-size: 10px;

    font-weight: 700;
}


.svgh-feature-point i {

    color:
        var(--svgh-gold);
}


/* =========================================================
   FACILITY GRID
========================================================= */

.svgh-facility-list-section {

    padding: 65px 0 100px;

    background:
        linear-gradient(
            180deg,
            #f7faff,
            #ffffff
        );
}


.svgh-facility-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


/* Card */

.svgh-facility-card {

    position: relative;

    min-height: 285px;

    padding: 29px;

    overflow: hidden;

    border-radius: 21px;

    background:
        #ffffff;

    border:
        1px solid
        var(--svgh-border);

    box-shadow:
        0 12px 35px
        rgba(7,26,58,0.06);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


.svgh-facility-card:hover {

    transform:
        translateY(-7px);

    box-shadow:
        0 22px 50px
        rgba(7,26,58,0.12);

    border-color:
        #d9e5f3;
}


/* Decorative number */

.svgh-facility-number {

    position: absolute;

    right: 22px;
    top: 12px;

    color:
        #f1f5f9;

    font-size: 55px;

    line-height: 1;

    font-weight: 900;

    user-select: none;
}


/* Decorative circle */

.svgh-facility-card::after {

    content: "";

    position: absolute;

    width: 115px;
    height: 115px;

    right: -55px;
    bottom: -55px;

    border-radius: 50%;

    background:
        rgba(18,100,199,0.045);
}


/* Icon */

.svgh-facility-icon {

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 17px;

    color: #ffffff;

    font-size: 20px;

    margin-bottom: 22px;

    position: relative;

    z-index: 2;
}


/* Individual colors */

.svgh-facility-card:nth-child(1)
.svgh-facility-icon {

    background:
        var(--svgh-blue);
}


.svgh-facility-card:nth-child(2)
.svgh-facility-icon {

    background:
        var(--svgh-green);
}


.svgh-facility-card:nth-child(3)
.svgh-facility-icon {

    background:
        var(--svgh-orange);
}


.svgh-facility-card:nth-child(4)
.svgh-facility-icon {

    background:
        var(--svgh-purple);
}


.svgh-facility-card:nth-child(5)
.svgh-facility-icon {

    background:
        var(--svgh-red);
}


.svgh-facility-card:nth-child(6)
.svgh-facility-icon {

    background:
        var(--svgh-teal);
}


/* Card text */

.svgh-facility-card h3 {

    position: relative;

    z-index: 2;

    color:
        var(--svgh-navy);

    font-size: 18px;

    margin-bottom: 9px;
}


.svgh-facility-card p {

    position: relative;

    z-index: 2;

    color:
        var(--svgh-muted);

    font-size: 12px;

    line-height: 1.75;

    margin-bottom: 17px;
}


/* Bottom label */

.svgh-facility-more {

    position: relative;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color:
        var(--svgh-blue);

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .8px;
}


.svgh-facility-more i {

    font-size: 9px;

    transition:
        transform .25s ease;
}


.svgh-facility-card:hover
.svgh-facility-more i {

    transform:
        translateX(4px);
}


/* =========================================================
   COMFORT STRIP
========================================================= */

.svgh-comfort-section {

    padding: 90px 0;

    background:
        #ffffff;
}


.svgh-comfort-box {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    overflow: hidden;

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            #eef7ff,
            #ffffff
        );

    border:
        1px solid
        var(--svgh-border);

    box-shadow:
        var(--svgh-shadow);
}


/* Left */

.svgh-comfort-content {

    padding: 50px;
}


.svgh-comfort-content .svgh-facility-label {

    margin-bottom: 13px;
}


.svgh-comfort-content h2 {

    color:
        var(--svgh-navy);

    font-size:
        clamp(29px, 4vw, 43px);

    line-height: 1.18;

    margin-bottom: 15px;
}


.svgh-comfort-content h2 span {

    color:
        var(--svgh-blue);
}


.svgh-comfort-content p {

    color:
        var(--svgh-muted);

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 22px;
}


/* Check list */

.svgh-comfort-list {

    list-style: none;
}


.svgh-comfort-list li {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    color:
        var(--svgh-text);

    font-size: 12px;

    margin-bottom: 13px;
}


.svgh-comfort-list i {

    color:
        var(--svgh-green);

    margin-top: 2px;
}


/* Right visual */

.svgh-comfort-visual {

    position: relative;

    min-height: 390px;

    background:
        linear-gradient(
            145deg,
            #08224a,
            #1264c7
        );

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;
}


.svgh-comfort-visual::before {

    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,0.12);
}


.svgh-comfort-visual::after {

    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    border-radius: 50%;

    border:
        1px solid
        rgba(215,168,62,0.20);
}


.svgh-comfort-center {

    position: relative;

    z-index: 3;

    text-align: center;
}


.svgh-comfort-main-icon {

    width: 92px;
    height: 92px;

    margin:
        0 auto 18px;

    border-radius: 27px;

    background:
        var(--svgh-gold);

    color:
        #17213a;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 37px;

    box-shadow:
        0 18px 40px
        rgba(0,0,0,0.22);
}


.svgh-comfort-center h3 {

    color:
        #ffffff;

    font-size: 22px;

    margin-bottom: 6px;
}


.svgh-comfort-center p {

    color:
        rgba(255,255,255,0.62);

    font-size: 11px;
}


/* Floating mini cards */

.svgh-comfort-mini {

    position: absolute;

    z-index: 4;

    padding: 10px 13px;

    border-radius: 12px;

    background:
        rgba(255,255,255,0.95);

    box-shadow:
        0 15px 30px
        rgba(0,0,0,0.15);

    display: flex;

    align-items: center;

    gap: 8px;
}


.svgh-comfort-mini i {

    color:
        var(--svgh-blue);
}


.svgh-comfort-mini span {

    color:
        var(--svgh-navy);

    font-size: 10px;

    font-weight: 800;
}


.svgh-comfort-mini-one {

    top: 60px;
    left: 30px;
}


.svgh-comfort-mini-two {

    right: 25px;
    bottom: 60px;
}


/* =========================================================
   CTA
========================================================= */

.svgh-facility-cta {

    padding: 0 0 95px;

    background:
        #ffffff;
}


.svgh-facility-cta-box {

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 45px 50px;

    border-radius: 26px;

    background:
        linear-gradient(
            120deg,
            #071a3a,
            #0d4f96
        );

    box-shadow:
        0 24px 55px
        rgba(7,26,58,0.16);
}


.svgh-facility-cta-box::before {

    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    right: -110px;
    top: -140px;

    border-radius: 50%;

    border:
        1px solid
        rgba(215,168,62,0.17);
}


.svgh-facility-cta-content {

    position: relative;

    z-index: 2;
}


.svgh-facility-cta-content small {

    color:
        #ffe29a;

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}


.svgh-facility-cta-content h2 {

    color:
        #ffffff;

    font-size:
        clamp(27px, 4vw, 39px);

    margin: 8px 0;
}


.svgh-facility-cta-content p {

    color:
        rgba(255,255,255,0.62);

    font-size: 13px;
}


.svgh-facility-cta-actions {

    position: relative;

    z-index: 2;

    display: flex;

    gap: 10px;

    flex-wrap: wrap;
}


.svgh-facility-cta-btn {

    min-height: 48px;

    padding: 0 19px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    border-radius: 11px;

    font-size: 11px;

    font-weight: 800;

    transition: .3s ease;
}


.svgh-facility-call {

    color:
        #ffffff;

    border:
        1px solid
        rgba(255,255,255,0.20);
}


.svgh-facility-whatsapp {

    color:
        #17213a;

    background:
        var(--svgh-gold);
}


.svgh-facility-cta-btn:hover {

    transform:
        translateY(-3px);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .svgh-facility-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .svgh-facility-feature {

        grid-template-columns:
            0.75fr 1.25fr;
    }

}


/* =========================================================
   TABLET / SMALL
========================================================= */

@media (max-width: 800px) {

    .svgh-facility-feature {

        grid-template-columns: 1fr;
    }

    .svgh-facility-feature-icon {

        min-height: 250px;
    }

    .svgh-facility-feature-content {

        padding: 35px;
    }

    .svgh-comfort-box {

        grid-template-columns: 1fr;
    }

    .svgh-comfort-visual {

        min-height: 350px;
    }

    .svgh-facility-cta-box {

        flex-direction: column;

        align-items: flex-start;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .svgh-facility-hero-container {

        padding: 60px 0;
    }

    .svgh-facility-hero-title {

        font-size: 38px;

        letter-spacing: -0.8px;
    }

    .svgh-facility-hero-text {

        font-size: 14px;

        line-height: 1.7;
    }


    .svgh-facility-intro {

        padding:
            70px 0 30px;
    }


    .svgh-facility-list-section {

        padding:
            45px 0 70px;
    }


    .svgh-facility-grid {

        grid-template-columns: 1fr;

        gap: 14px;
    }


    .svgh-facility-card {

        min-height: auto;

        padding: 25px;
    }


    .svgh-facility-feature {

        margin-top: 40px;

        border-radius: 22px;
    }


    .svgh-facility-feature-icon {

        min-height: 220px;
    }


    .svgh-feature-big-icon {

        width: 78px;
        height: 78px;

        font-size: 30px;

        border-radius: 21px;
    }


    .svgh-facility-feature-content {

        padding:
            30px 23px;
    }


    .svgh-facility-feature-content h3 {

        font-size: 26px;
    }


    .svgh-feature-points {

        display: grid;

        grid-template-columns: 1fr 1fr;
    }


    .svgh-feature-point {

        font-size: 9px;
    }


    .svgh-comfort-section {

        padding: 70px 0;
    }


    .svgh-comfort-content {

        padding: 32px 23px;
    }


    .svgh-comfort-visual {

        min-height: 320px;
    }


    .svgh-comfort-visual::before {

        width: 260px;
        height: 260px;
    }


    .svgh-comfort-visual::after {

        width: 180px;
        height: 180px;
    }


    .svgh-comfort-mini-one {

        left: 10px;
        top: 45px;
    }


    .svgh-comfort-mini-two {

        right: 10px;
        bottom: 45px;
    }


    .svgh-facility-cta {

        padding-bottom: 70px;
    }


    .svgh-facility-cta-box {

        padding:
            32px 22px;

        border-radius: 22px;
    }


    .svgh-facility-cta-actions {

        width: 100%;
    }


    .svgh-facility-cta-btn {

        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .svgh-facility-hero-title {

        font-size: 32px;
    }

    .svgh-feature-points {

        grid-template-columns: 1fr;
    }

}

 