


/* =========================================================
   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-teal: #159aa0;

    --svgh-white: #ffffff;
    --svgh-light: #f7faff;

    --svgh-text: #26364d;
    --svgh-muted: #6c7a8d;

    --svgh-border: #e4ebf4;

    --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;
}


/* =========================================================
   HERO
========================================================= */

.svgh-attraction-hero {

    position: relative;

    min-height: 440px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 86% 15%,
            rgba(215,168,62,0.25),
            transparent 28%
        ),

        radial-gradient(
            circle at 5% 85%,
            rgba(18,100,199,0.27),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #061735 0%,
            #0a2852 55%,
            #0e4e94 100%
        );
}


.svgh-attraction-hero::before {

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    right: -190px;
    top: -235px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,0.14);
}


.svgh-attraction-hero::after {

    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    left: -180px;
    bottom: -190px;

    border-radius: 50%;

    border:
        1px solid
        rgba(215,168,62,0.18);
}


.svgh-attraction-hero-container {

    width: min(1180px, 92%);

    margin: auto;

    position: relative;

    z-index: 3;

    padding: 80px 0;
}


.svgh-attraction-breadcrumb {

    display: flex;

    align-items: center;

    gap: 10px;

    color:
        rgba(255,255,255,0.70);

    font-size: 13px;

    margin-bottom: 22px;
}


.svgh-attraction-breadcrumb a {

    color:
        rgba(255,255,255,0.75);
}


.svgh-attraction-breadcrumb i {

    color:
        var(--svgh-gold);

    font-size: 10px;
}


.svgh-attraction-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-attraction-eyebrow span {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        var(--svgh-gold);
}


.svgh-attraction-hero-title {

    max-width: 820px;

    color: #ffffff;

    font-size:
        clamp(38px, 5vw, 63px);

    line-height: 1.06;

    font-weight: 800;

    letter-spacing: -1.5px;

    margin-bottom: 20px;
}


.svgh-attraction-hero-title span {

    color:
        var(--svgh-gold);
}


.svgh-attraction-hero-text {

    max-width: 720px;

    color:
        rgba(255,255,255,0.73);

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 27px;
}


/* Hero actions */

.svgh-attraction-hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}


.svgh-attraction-hero-btn {

    min-height: 48px;

    padding: 0 19px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    border-radius: 11px;

    font-size: 12px;

    font-weight: 800;

    transition: .3s ease;
}


.svgh-attraction-hero-btn-primary {

    color:
        #17213a;

    background:
        var(--svgh-gold);
}


.svgh-attraction-hero-btn-outline {

    color: #ffffff;

    border:
        1px solid
        rgba(255,255,255,0.20);
}


.svgh-attraction-hero-btn:hover {

    transform:
        translateY(-3px);
}


/* =========================================================
   INTRO
========================================================= */

.svgh-attraction-intro {

    padding: 90px 0 55px;

    background: #ffffff;
}


.svgh-attraction-container {

    width: min(1180px, 92%);

    margin: auto;
}


.svgh-attraction-heading {

    max-width: 760px;

    margin: 0 auto;

    text-align: center;
}


.svgh-attraction-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-attraction-label::before {

    content: "";

    width: 28px;
    height: 3px;

    border-radius: 5px;

    background:
        var(--svgh-gold);
}


.svgh-attraction-heading h2 {

    color:
        var(--svgh-navy);

    font-size:
        clamp(30px, 4vw, 47px);

    line-height: 1.15;

    font-weight: 800;

    margin-bottom: 15px;
}


.svgh-attraction-heading h2 span {

    color:
        var(--svgh-blue);
}


.svgh-attraction-heading p {

    color:
        var(--svgh-muted);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   QUICK STATS
========================================================= */

.svgh-attraction-stats {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;

    margin:
        45px auto 0;

    max-width: 850px;
}


.svgh-attraction-stat {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 17px;

    border-radius: 15px;

    background:
        var(--svgh-light);

    border:
        1px solid
        var(--svgh-border);
}


.svgh-attraction-stat-icon {

    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: #ffffff;
}


.svgh-attraction-stat:nth-child(1)
.svgh-attraction-stat-icon {

    background:
        var(--svgh-blue);
}


.svgh-attraction-stat:nth-child(2)
.svgh-attraction-stat-icon {

    background:
        var(--svgh-green);
}


.svgh-attraction-stat:nth-child(3)
.svgh-attraction-stat-icon {

    background:
        var(--svgh-gold);

    color:
        #17213a;
}


.svgh-attraction-stat strong {

    display: block;

    color:
        var(--svgh-navy);

    font-size: 13px;
}


.svgh-attraction-stat span {

    display: block;

    color:
        var(--svgh-muted);

    font-size: 10px;

    margin-top: 3px;
}


/* =========================================================
   FEATURED SIGANDUR
========================================================= */

.svgh-attraction-feature-section {

    padding: 55px 0 75px;

    background:
        linear-gradient(
            180deg,
            #f7faff,
            #ffffff
        );
}


.svgh-attraction-feature {

    display: grid;

    grid-template-columns:
        1.05fr 0.95fr;

    min-height: 470px;

    overflow: hidden;

    border-radius: 28px;

    background:
        #ffffff;

    border:
        1px solid
        var(--svgh-border);

    box-shadow:
        0 22px 55px
        rgba(7,26,58,0.10);
}


/* Image */

.svgh-attraction-feature-image {

    position: relative;

    min-height: 470px;

    overflow: hidden;
}


.svgh-attraction-feature-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s ease;
}


.svgh-attraction-feature:hover
.svgh-attraction-feature-image img {

    transform:
        scale(1.05);
}


.svgh-attraction-feature-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(3,18,40,0.70)
        );
}


.svgh-attraction-feature-badge {

    position: absolute;

    z-index: 3;

    left: 22px;
    top: 22px;

    padding: 8px 13px;

    border-radius: 30px;

    background:
        var(--svgh-gold);

    color:
        #17213a;

    font-size: 10px;

    font-weight: 800;
}


.svgh-attraction-feature-caption {

    position: absolute;

    z-index: 3;

    left: 25px;
    right: 25px;
    bottom: 24px;

    color: #ffffff;
}


.svgh-attraction-feature-caption small {

    display: block;

    color:
        #ffe5a0;

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.2px;

    margin-bottom: 5px;
}


.svgh-attraction-feature-caption h3 {

    font-size: 27px;
}


/* Content */

.svgh-attraction-feature-content {

    padding: 45px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.svgh-attraction-feature-label {

    color:
        var(--svgh-blue);

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    margin-bottom: 10px;
}


.svgh-attraction-feature-content h2 {

    color:
        var(--svgh-navy);

    font-size: 31px;

    line-height: 1.2;

    margin-bottom: 13px;
}


.svgh-attraction-feature-content p {

    color:
        var(--svgh-muted);

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 20px;
}


.svgh-feature-location {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    padding: 14px;

    border-radius: 13px;

    background:
        var(--svgh-light);

    border:
        1px solid
        var(--svgh-border);

    margin-bottom: 20px;
}


.svgh-feature-location i {

    color:
        var(--svgh-red);

    margin-top: 2px;
}


.svgh-feature-location strong {

    display: block;

    color:
        var(--svgh-navy);

    font-size: 11px;

    margin-bottom: 3px;
}


.svgh-feature-location span {

    color:
        var(--svgh-muted);

    font-size: 10px;

    line-height: 1.5;
}


.svgh-feature-map-btn {

    display: inline-flex;

    width: fit-content;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-height: 46px;

    padding: 0 17px;

    border-radius: 10px;

    background:
        var(--svgh-blue);

    color: #ffffff;

    font-size: 11px;

    font-weight: 800;

    transition: .3s ease;
}


.svgh-feature-map-btn:hover {

    transform:
        translateY(-3px);

    background:
        var(--svgh-navy);
}


/* =========================================================
   ATTRACTION GRID
========================================================= */

.svgh-attraction-list {

    padding: 25px 0 100px;

    background:
        #ffffff;
}


.svgh-attraction-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 19px;
}


/* Card */

.svgh-attraction-card {

    position: relative;

    overflow: hidden;

    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-attraction-card:hover {

    transform:
        translateY(-7px);

    box-shadow:
        0 22px 50px
        rgba(7,26,58,0.13);
}


/* Card image */

.svgh-attraction-card-image {

    position: relative;

    height: 235px;

    overflow: hidden;
}


.svgh-attraction-card-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .6s ease;
}


.svgh-attraction-card:hover
.svgh-attraction-card-image img {

    transform:
        scale(1.07);
}


.svgh-attraction-card-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 50%,
            rgba(3,18,40,0.55)
        );
}


/* Category */

.svgh-attraction-category {

    position: absolute;

    z-index: 3;

    top: 14px;
    left: 14px;

    padding: 7px 10px;

    border-radius: 20px;

    background:
        rgba(255,255,255,0.93);

    color:
        var(--svgh-blue);

    font-size: 9px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .8px;
}


/* Distance */

.svgh-attraction-distance {

    position: absolute;

    z-index: 3;

    right: 14px;
    bottom: 14px;

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 7px 10px;

    border-radius: 20px;

    background:
        var(--svgh-gold);

    color:
        #17213a;

    font-size: 10px;

    font-weight: 900;
}


/* Content */

.svgh-attraction-card-content {

    padding: 21px;
}


.svgh-attraction-card-content h3 {

    color:
        var(--svgh-navy);

    font-size: 18px;

    line-height: 1.3;

    margin-bottom: 8px;
}


.svgh-attraction-card-content p {

    color:
        var(--svgh-muted);

    font-size: 11px;

    line-height: 1.7;

    margin-bottom: 14px;
}


/* Address */

.svgh-attraction-address {

    display: flex;

    align-items: flex-start;

    gap: 8px;

    padding-top: 13px;

    border-top:
        1px solid
        var(--svgh-border);
}


.svgh-attraction-address i {

    color:
        var(--svgh-red);

    margin-top: 2px;

    font-size: 11px;
}


.svgh-attraction-address span {

    color:
        var(--svgh-muted);

    font-size: 10px;

    line-height: 1.5;
}


/* Card button */

.svgh-attraction-card-footer {

    margin-top: 15px;
}


.svgh-attraction-map-link {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color:
        var(--svgh-blue);

    font-size: 10px;

    font-weight: 800;

    transition: .25s ease;
}


.svgh-attraction-map-link i {

    font-size: 9px;
}


.svgh-attraction-map-link:hover {

    color:
        var(--svgh-navy);

    gap: 10px;
}


/* =========================================================
   TRAVEL NOTE
========================================================= */

.svgh-travel-note {

    padding: 0 0 90px;

    background: #ffffff;
}


.svgh-travel-note-box {

    position: relative;

    overflow: hidden;

    display: grid;

    grid-template-columns:
        0.75fr 1.25fr;

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            #eef7ff,
            #ffffff
        );

    border:
        1px solid
        var(--svgh-border);
}


/* Visual */

.svgh-travel-note-visual {

    min-height: 300px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #071a3a,
            #1264c7
        );

    position: relative;

    overflow: hidden;
}


.svgh-travel-note-visual::before {

    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,0.13);
}


.svgh-travel-note-visual::after {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    border:
        1px solid
        rgba(215,168,62,0.20);
}


.svgh-travel-icon {

    width: 82px;
    height: 82px;

    position: relative;

    z-index: 3;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 23px;

    background:
        var(--svgh-gold);

    color:
        #17213a;

    font-size: 31px;

    box-shadow:
        0 18px 40px
        rgba(0,0,0,0.22);
}


/* Content */

.svgh-travel-note-content {

    padding: 42px;
}


.svgh-travel-note-content h2 {

    color:
        var(--svgh-navy);

    font-size:
        clamp(27px, 4vw, 39px);

    line-height: 1.2;

    margin-bottom: 13px;
}


.svgh-travel-note-content h2 span {

    color:
        var(--svgh-blue);
}


.svgh-travel-note-content p {

    color:
        var(--svgh-muted);

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 19px;
}


.svgh-travel-points {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 9px;
}


.svgh-travel-point {

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 10px;

    border-radius: 10px;

    background:
        #ffffff;

    border:
        1px solid
        var(--svgh-border);

    color:
        var(--svgh-text);

    font-size: 10px;

    font-weight: 700;
}


.svgh-travel-point i {

    color:
        var(--svgh-green);
}


/* =========================================================
   CTA
========================================================= */

.svgh-attraction-cta {

    padding: 0 0 95px;

    background:
        #ffffff;
}


.svgh-attraction-cta-box {

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 45px 50px;

    border-radius: 27px;

    background:
        linear-gradient(
            120deg,
            #071a3a,
            #0d4f96
        );

    box-shadow:
        0 24px 55px
        rgba(7,26,58,0.16);
}


.svgh-attraction-cta-box::before {

    content: "";

    position: absolute;

    width: 290px;
    height: 290px;

    right: -120px;
    top: -145px;

    border-radius: 50%;

    border:
        1px solid
        rgba(215,168,62,0.17);
}


.svgh-attraction-cta-content {

    position: relative;

    z-index: 2;
}


.svgh-attraction-cta-content small {

    color:
        #ffe29a;

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}


.svgh-attraction-cta-content h2 {

    color: #ffffff;

    font-size:
        clamp(27px, 4vw, 39px);

    margin: 8px 0;
}


.svgh-attraction-cta-content p {

    color:
        rgba(255,255,255,0.63);

    font-size: 13px;
}


.svgh-attraction-cta-actions {

    position: relative;

    z-index: 2;

    display: flex;

    gap: 10px;

    flex-wrap: wrap;
}


.svgh-attraction-cta-btn {

    min-height: 48px;

    padding: 0 19px;

    border-radius: 11px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    font-size: 11px;

    font-weight: 800;

    transition: .3s ease;
}


.svgh-attraction-call {

    color:
        #ffffff;

    border:
        1px solid
        rgba(255,255,255,0.20);
}


.svgh-attraction-whatsapp {

    color:
        #17213a;

    background:
        var(--svgh-gold);
}


.svgh-attraction-cta-btn:hover {

    transform:
        translateY(-3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .svgh-attraction-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 800px) {

    .svgh-attraction-feature {

        grid-template-columns: 1fr;
    }

    .svgh-attraction-feature-image {

        min-height: 390px;
    }

    .svgh-attraction-feature-content {

        padding: 35px;
    }

    .svgh-travel-note-box {

        grid-template-columns: 1fr;
    }

    .svgh-travel-note-visual {

        min-height: 250px;
    }

    .svgh-attraction-cta-box {

        flex-direction: column;

        align-items: flex-start;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .svgh-attraction-hero-container {

        padding: 60px 0;
    }

    .svgh-attraction-hero-title {

        font-size: 38px;

        letter-spacing: -0.8px;
    }

    .svgh-attraction-hero-text {

        font-size: 14px;

        line-height: 1.7;
    }

    .svgh-attraction-hero-actions {

        width: 100%;
    }

    .svgh-attraction-hero-btn {

        width: 100%;
    }


    .svgh-attraction-intro {

        padding:
            70px 0 40px;
    }


    .svgh-attraction-stats {

        grid-template-columns: 1fr;

        gap: 10px;

        margin-top: 35px;
    }


    .svgh-attraction-feature-section {

        padding:
            40px 0 55px;
    }


    .svgh-attraction-feature {

        border-radius: 22px;
    }


    .svgh-attraction-feature-image {

        min-height: 320px;
    }


    .svgh-attraction-feature-content {

        padding:
            28px 22px;
    }


    .svgh-attraction-feature-content h2 {

        font-size: 27px;
    }


    .svgh-attraction-grid {

        grid-template-columns: 1fr;

        gap: 15px;
    }


    .svgh-attraction-list {

        padding-bottom: 70px;
    }


    .svgh-attraction-card-image {

        height: 245px;
    }


    .svgh-travel-note {

        padding-bottom: 70px;
    }


    .svgh-travel-note-content {

        padding:
            30px 22px;
    }


    .svgh-travel-points {

        grid-template-columns: 1fr;
    }


    .svgh-attraction-cta {

        padding-bottom: 70px;
    }


    .svgh-attraction-cta-box {

        padding:
            32px 22px;

        border-radius: 22px;
    }


    .svgh-attraction-cta-actions {

        width: 100%;
    }


    .svgh-attraction-cta-btn {

        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .svgh-attraction-hero-title {

        font-size: 32px;
    }

}
