
/* =========================================================
   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-orange: #ed8b24;
    --svgh-purple: #7357d8;
    --svgh-red: #df5363;

    --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 {
    display: block;
    max-width: 100%;
}


/* =========================================================
   ROOMS HERO
========================================================= */

.svgh-rooms-hero {

    position: relative;

    min-height: 400px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 85% 15%,
            rgba(215,168,62,0.22),
            transparent 28%
        ),

        radial-gradient(
            circle at 5% 90%,
            rgba(18,100,199,0.25),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #061735 0%,
            #0a2852 55%,
            #0e4e94 100%
        );
}


.svgh-rooms-hero::before {

    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    right: -170px;
    top: -220px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,0.13);
}


.svgh-rooms-hero::after {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    left: -170px;
    bottom: -180px;

    border-radius: 50%;

    border:
        1px solid
        rgba(215,168,62,0.18);
}


.svgh-rooms-hero-container {

    width: min(1180px, 92%);

    margin: auto;

    position: relative;

    z-index: 2;

    padding: 75px 0;
}


.svgh-rooms-breadcrumb {

    display: flex;

    align-items: center;

    gap: 10px;

    color:
        rgba(255,255,255,0.7);

    font-size: 13px;

    margin-bottom: 22px;
}


.svgh-rooms-breadcrumb a {

    color:
        rgba(255,255,255,0.72);
}


.svgh-rooms-breadcrumb i {

    color:
        var(--svgh-gold);

    font-size: 10px;
}


.svgh-rooms-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-rooms-eyebrow span {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        var(--svgh-gold);
}


.svgh-rooms-hero-title {

    max-width: 760px;

    color: #ffffff;

    font-size:
        clamp(38px, 5vw, 62px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.5px;

    margin-bottom: 18px;
}


.svgh-rooms-hero-title span {

    color:
        var(--svgh-gold);
}


.svgh-rooms-hero-text {

    max-width: 680px;

    color:
        rgba(255,255,255,0.72);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   ROOMS INTRO
========================================================= */

.svgh-rooms-section {

    padding: 100px 0;

    background:
        linear-gradient(
            180deg,
            #f7faff 0%,
            #ffffff 100%
        );
}


.svgh-rooms-container {

    width: min(1180px, 92%);

    margin: auto;
}


.svgh-rooms-heading {

    max-width: 720px;

    margin:
        0 auto 55px;

    text-align: center;
}


.svgh-rooms-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-rooms-label::before {

    content: "";

    width: 28px;
    height: 3px;

    border-radius: 5px;

    background:
        var(--svgh-gold);
}


.svgh-rooms-heading h2 {

    color:
        var(--svgh-navy);

    font-size:
        clamp(30px, 4vw, 46px);

    line-height: 1.15;

    font-weight: 800;

    margin-bottom: 15px;
}


.svgh-rooms-heading h2 span {

    color:
        var(--svgh-blue);
}


.svgh-rooms-heading p {

    color:
        var(--svgh-muted);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   FEATURED ROOM
========================================================= */

.svgh-featured-room {

    display: grid;

    grid-template-columns:
        1.25fr 0.75fr;

    min-height: 500px;

    overflow: hidden;

    border-radius: 28px;

    background: #ffffff;

    border:
        1px solid
        var(--svgh-border);

    box-shadow:
        0 22px 55px
        rgba(7,26,58,0.10);

    margin-bottom: 30px;
}


/* Featured image */

.svgh-featured-image {

    position: relative;

    min-height: 500px;

    overflow: hidden;
}


.svgh-featured-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s ease;
}


.svgh-featured-room:hover
.svgh-featured-image img {

    transform:
        scale(1.045);
}


.svgh-featured-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 50%,
            rgba(4,18,40,0.75)
        );
}


/* Featured badge */

.svgh-featured-badge {

    position: absolute;

    top: 22px;
    left: 22px;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 9px 14px;

    border-radius: 30px;

    background:
        var(--svgh-gold);

    color:
        #17213a;

    font-size: 11px;

    font-weight: 800;

    box-shadow:
        0 10px 25px
        rgba(0,0,0,0.15);
}


.svgh-featured-image-caption {

    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 27px;

    color: #ffffff;
}


.svgh-featured-image-caption small {

    display: block;

    color:
        #ffe6a0;

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.3px;

    margin-bottom: 6px;
}


.svgh-featured-image-caption h3 {

    font-size: 27px;

    margin: 0;
}


/* Featured content */

.svgh-featured-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 45px;
}


.svgh-featured-content-label {

    color:
        var(--svgh-blue);

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    margin-bottom: 10px;
}


.svgh-featured-content h3 {

    color:
        var(--svgh-navy);

    font-size: 30px;

    line-height: 1.2;

    margin-bottom: 14px;
}


.svgh-featured-content p {

    color:
        var(--svgh-muted);

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 22px;
}


/* Feature list */

.svgh-room-highlights {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;

    margin-bottom: 27px;
}


.svgh-room-highlight {

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 11px;

    border-radius: 11px;

    background:
        var(--svgh-light);

    border:
        1px solid
        var(--svgh-border);

    color:
        var(--svgh-text);

    font-size: 11px;

    font-weight: 700;
}


.svgh-room-highlight i {

    color:
        var(--svgh-green);
}


/* CTA */

.svgh-room-book-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    width: fit-content;

    min-height: 48px;

    padding: 0 20px;

    border-radius: 11px;

    background:
        var(--svgh-blue);

    color: #ffffff;

    font-size: 12px;

    font-weight: 800;

    box-shadow:
        0 10px 25px
        rgba(18,100,199,0.20);

    transition: .3s ease;
}


.svgh-room-book-btn:hover {

    transform:
        translateY(-3px);

    background:
        var(--svgh-navy);
}


/* =========================================================
   ROOM GALLERY
========================================================= */

.svgh-room-gallery {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    margin-top: 30px;
}


.svgh-room-card {

    position: relative;

    overflow: hidden;

    min-height: 380px;

    border-radius: 21px;

    background:
        #ffffff;

    border:
        1px solid
        var(--svgh-border);

    box-shadow:
        0 12px 35px
        rgba(7,26,58,0.07);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


.svgh-room-card:hover {

    transform:
        translateY(-7px);

    box-shadow:
        0 22px 50px
        rgba(7,26,58,0.13);
}


/* Card image */

.svgh-room-card-image {

    position: relative;

    height: 245px;

    overflow: hidden;
}


.svgh-room-card-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .6s ease;
}


.svgh-room-card:hover
.svgh-room-card-image img {

    transform:
        scale(1.07);
}


/* Image overlay */

.svgh-room-card-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(5,20,42,0.55)
        );
}


/* Room number */

.svgh-room-number {

    position: absolute;

    top: 15px;
    left: 15px;

    z-index: 3;

    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background:
        rgba(255,255,255,0.93);

    color:
        var(--svgh-navy);

    font-size: 11px;

    font-weight: 900;
}


/* Card content */

.svgh-room-card-content {

    padding: 21px;
}


.svgh-room-card-content small {

    display: block;

    color:
        var(--svgh-blue);

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.2px;

    margin-bottom: 7px;
}


.svgh-room-card-content h3 {

    color:
        var(--svgh-navy);

    font-size: 19px;

    margin-bottom: 8px;
}


.svgh-room-card-content p {

    color:
        var(--svgh-muted);

    font-size: 12px;

    line-height: 1.65;

    margin-bottom: 16px;
}


.svgh-room-card-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;
}


.svgh-room-view {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color:
        var(--svgh-blue);

    font-size: 11px;

    font-weight: 800;

    transition: .25s ease;
}


.svgh-room-view:hover {

    color:
        var(--svgh-navy);

    gap: 10px;
}


.svgh-room-dot {

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background:
        var(--svgh-green);

    box-shadow:
        0 0 0 4px
        rgba(21,147,106,0.10);
}


/* =========================================================
   ROOM EXPERIENCE STRIP
========================================================= */

.svgh-room-experience {

    margin-top: 35px;

    padding: 28px;

    border-radius: 21px;

    background:
        linear-gradient(
            135deg,
            #071a3a,
            #0e4f96
        );

    display: grid;

    grid-template-columns:
        1.2fr 0.8fr;

    align-items: center;

    gap: 30px;

    position: relative;

    overflow: hidden;
}


.svgh-room-experience::after {

    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    border-radius: 50%;

    right: -90px;
    top: -100px;

    border:
        1px solid
        rgba(215,168,62,0.16);
}


.svgh-room-experience-content {

    position: relative;

    z-index: 2;
}


.svgh-room-experience-content small {

    color:
        #ffe39a;

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}


.svgh-room-experience-content h3 {

    color: #ffffff;

    font-size: 25px;

    margin: 7px 0;
}


.svgh-room-experience-content p {

    color:
        rgba(255,255,255,0.62);

    font-size: 12px;

    line-height: 1.7;
}


.svgh-room-contact {

    position: relative;

    z-index: 2;

    display: flex;

    justify-content: flex-end;

    gap: 10px;

    flex-wrap: wrap;
}


.svgh-room-contact-btn {

    min-height: 45px;

    padding: 0 17px;

    border-radius: 10px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    font-size: 11px;

    font-weight: 800;
}


.svgh-room-contact-call {

    color: #ffffff;

    border:
        1px solid
        rgba(255,255,255,0.18);
}


.svgh-room-contact-whatsapp {

    background:
        var(--svgh-gold);

    color:
        #17213a;
}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 1000px) {

    .svgh-featured-room {

        grid-template-columns:
            1fr 0.85fr;
    }

    .svgh-room-gallery {

        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 800px) {

    .svgh-rooms-hero-container {

        padding: 60px 0;
    }

    .svgh-featured-room {

        grid-template-columns: 1fr;

    }

    .svgh-featured-image {

        min-height: 430px;
    }

    .svgh-featured-content {

        padding: 32px;
    }

    .svgh-room-experience {

        grid-template-columns: 1fr;
    }

    .svgh-room-contact {

        justify-content: flex-start;
    }

}


@media (max-width: 600px) {

    .svgh-rooms-section {

        padding: 70px 0;
    }

    .svgh-rooms-hero-title {

        font-size: 38px;

        letter-spacing: -0.8px;
    }

    .svgh-rooms-hero-text {

        font-size: 14px;
    }

    .svgh-featured-room {

        border-radius: 21px;
    }

    .svgh-featured-image {

        min-height: 330px;
    }

    .svgh-featured-content {

        padding: 25px 21px;
    }

    .svgh-featured-content h3 {

        font-size: 26px;
    }

    .svgh-room-highlights {

        grid-template-columns: 1fr;
    }

    .svgh-room-gallery {

        grid-template-columns: 1fr;

        gap: 16px;
    }

    .svgh-room-card {

        min-height: auto;
    }

    .svgh-room-card-image {

        height: 250px;
    }

    .svgh-room-experience {

        padding: 25px 20px;

        border-radius: 19px;
    }

    .svgh-room-experience-content h3 {

        font-size: 22px;
    }

    .svgh-room-contact {

        width: 100%;
    }

    .svgh-room-contact-btn {

        width: 100%;
    }

}


@media (max-width: 380px) {

    .svgh-rooms-hero-title {

        font-size: 32px;
    }

}

 