

        /* =========================================================
           ROOT
        ========================================================= */

        :root {
            --svgh-navy: #071a3a;
            --svgh-navy-2: #0b2854;
            --svgh-blue: #1264c7;
            --svgh-blue-light: #eaf4ff;

            --svgh-gold: #d7a83e;
            --svgh-gold-light: #fff5d8;

            --svgh-green: #15936a;
            --svgh-orange: #ed8b24;
            --svgh-purple: #7357d8;

            --svgh-white: #ffffff;
            --svgh-light: #f7faff;
            --svgh-text: #26364d;
            --svgh-muted: #6c7a8d;

            --svgh-border: #e7edf5;

            --svgh-shadow:
                0 18px 50px rgba(7, 26, 58, 0.10);

            --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: var(--svgh-white);

            overflow-x: hidden;
        }

        a {
            text-decoration: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        button {
            font-family: inherit;
        }


        /* =========================================================
           PAGE HERO
        ========================================================= */

        .svgh-about-hero {
            position: relative;
            overflow: hidden;

            min-height: 410px;

            display: flex;
            align-items: center;

            background:
                radial-gradient(
                    circle at 85% 20%,
                    rgba(215,168,62,0.22),
                    transparent 28%
                ),
                radial-gradient(
                    circle at 10% 80%,
                    rgba(18,100,199,0.22),
                    transparent 30%
                ),
                linear-gradient(
                    135deg,
                    #061735 0%,
                    #0a2852 55%,
                    #0e4e94 100%
                );
        }

        .svgh-about-hero::before {
            content: "";
            position: absolute;

            width: 420px;
            height: 420px;

            right: -150px;
            top: -180px;

            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 50%;
        }

        .svgh-about-hero::after {
            content: "";
            position: absolute;

            width: 300px;
            height: 300px;

            left: -160px;
            bottom: -160px;

            border: 1px solid rgba(215,168,62,0.28);
            border-radius: 50%;
        }

        .svgh-about-hero-container {
            width: min(1180px, 92%);
            margin: auto;

            position: relative;
            z-index: 2;

            padding: 80px 0;
        }


        /* Hero content */

        .svgh-about-hero-content {
            max-width: 760px;
        }

        .svgh-about-breadcrumb {
            display: inline-flex;
            align-items: center;
            gap: 10px;

            color: rgba(255,255,255,0.78);

            font-size: 13px;
            font-weight: 600;

            margin-bottom: 24px;
        }

        .svgh-about-breadcrumb i {
            color: var(--svgh-gold);
        }

        .svgh-about-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;

            padding: 8px 15px;

            border-radius: 30px;

            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.13);

            color: #ffe8a4;

            font-size: 12px;
            font-weight: 700;

            text-transform: uppercase;
            letter-spacing: 1.5px;

            margin-bottom: 18px;
        }

        .svgh-about-eyebrow span {
            width: 7px;
            height: 7px;

            border-radius: 50%;

            background: var(--svgh-gold);
        }

        .svgh-about-hero-title {
            color: #ffffff;

            font-size: clamp(38px, 5vw, 64px);
            line-height: 1.08;

            font-weight: 800;

            letter-spacing: -1.5px;

            margin-bottom: 20px;
        }

        .svgh-about-hero-title span {
            color: var(--svgh-gold);
        }

        .svgh-about-hero-description {
            max-width: 690px;

            color: rgba(255,255,255,0.78);

            font-size: 17px;
            line-height: 1.8;

            margin-bottom: 28px;
        }

        .svgh-about-hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 13px;
        }

        .svgh-about-primary-btn,
        .svgh-about-outline-btn {
            min-height: 50px;

            display: inline-flex;
            align-items: center;
            justify-content: center;

            gap: 10px;

            padding: 0 22px;

            border-radius: 12px;

            font-size: 14px;
            font-weight: 700;

            transition: 0.3s ease;
        }

        .svgh-about-primary-btn {
            background: var(--svgh-gold);
            color: #17213a;

            box-shadow:
                0 10px 25px rgba(215,168,62,0.25);
        }

        .svgh-about-primary-btn:hover {
            transform: translateY(-3px);
            background: #e7bd57;
        }

        .svgh-about-outline-btn {
            color: #ffffff;
            border: 1px solid rgba(255,255,255,0.25);
            background: rgba(255,255,255,0.05);
        }

        .svgh-about-outline-btn:hover {
            background: rgba(255,255,255,0.12);
            transform: translateY(-3px);
        }


        /* =========================================================
   ABOUT INTRO - PREMIUM IMAGE DESIGN
========================================================= */

.svgh-about-intro {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
}

.svgh-about-container {
    width: min(1180px, 92%);
    margin: auto;
}

.svgh-about-intro-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: center;
}


/* =========================================================
   IMAGE AREA
========================================================= */

.svgh-about-visual {
    position: relative;

    min-height: 535px;

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            #edf6ff,
            #f9fcff
        );

    border: 1px solid #e5edf7;

    overflow: visible;

    padding: 18px;

    box-shadow:
        0 20px 55px rgba(7, 26, 58, 0.09);
}


/* Main image */

.svgh-about-image-wrap {
    position: relative;

    width: 100%;
    height: 100%;

    min-height: 495px;

    overflow: hidden;

    border-radius: 24px;

    background: #0b2854;

    box-shadow:
        0 22px 50px rgba(7, 26, 58, 0.18);
}


.svgh-about-house-image {
    width: 100%;
    height: 100%;

    min-height: 495px;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.7s ease;
}


.svgh-about-image-wrap:hover
.svgh-about-house-image {
    transform: scale(1.04);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.svgh-about-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(4, 20, 43, 0.02) 35%,
            rgba(4, 20, 43, 0.72) 100%
        );

    pointer-events: none;
}


/* =========================================================
   IMAGE BADGE
========================================================= */

.svgh-about-image-badge {
    position: absolute;

    left: 22px;
    bottom: 22px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 12px 17px;

    border-radius: 15px;

    background:
        rgba(255, 255, 255, 0.94);

    backdrop-filter: blur(10px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.15);

    z-index: 4;
}


.svgh-about-badge-icon {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #d7a83e;

    color: #17213a;

    font-size: 17px;
}


.svgh-about-image-badge strong {
    display: block;

    color: #071a3a;

    font-size: 13px;
    font-weight: 800;
}


.svgh-about-image-badge span {
    display: block;

    margin-top: 3px;

    color: #6c7a8d;

    font-size: 10px;
}


/* =========================================================
   DECORATIVE CIRCLE
========================================================= */

.svgh-about-decor-circle {
    position: absolute;

    width: 105px;
    height: 105px;

    right: -35px;
    top: -35px;

    border-radius: 50%;

    border: 14px solid rgba(215, 168, 62, 0.17);

    z-index: -1;
}


/* =========================================================
   FLOATING CARDS
========================================================= */

.svgh-about-float {
    position: absolute;

    z-index: 10;

    display: flex;
    align-items: center;

    gap: 11px;

    padding: 12px 15px;

    border-radius: 15px;

    background:
        rgba(255, 255, 255, 0.97);

    border: 1px solid #edf1f7;

    box-shadow:
        0 16px 38px rgba(7, 26, 58, 0.14);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.svgh-about-float:hover {
    transform: translateY(-5px);

    box-shadow:
        0 22px 45px rgba(7, 26, 58, 0.18);
}


.svgh-about-float-icon {
    width: 41px;
    height: 41px;

    flex: 0 0 41px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    color: #ffffff;

    font-size: 14px;
}


.svgh-about-float-one
.svgh-about-float-icon {
    background: #15936a;
}


.svgh-about-float-two
.svgh-about-float-icon {
    background: #ed8b24;
}


.svgh-about-float-three
.svgh-about-float-icon {
    background: #7357d8;
}


.svgh-about-float strong {
    display: block;

    color: #071a3a;

    font-size: 12px;

    font-weight: 800;

    white-space: nowrap;
}


.svgh-about-float small {
    display: block;

    color: #6c7a8d;

    font-size: 10px;

    margin-top: 3px;

    white-space: nowrap;
}


/* Card positions */

.svgh-about-float-one {
    left: -30px;
    top: 85px;
}


.svgh-about-float-two {
    right: -30px;
    top: 190px;
}


.svgh-about-float-three {
    left: 50%;

    transform: translateX(-50%);

    bottom: -25px;
}


.svgh-about-float-three:hover {
    transform:
        translateX(-50%)
        translateY(-5px);
}


/* =========================================================
   DECORATIVE DOTS
========================================================= */

.svgh-about-dots {
    position: absolute;

    width: 95px;
    height: 95px;

    right: -25px;
    bottom: -30px;

    background-image:
        radial-gradient(
            #d7a83e 1.6px,
            transparent 1.6px
        );

    background-size: 13px 13px;

    opacity: 0.55;

    z-index: -1;
}


/* =========================================================
   CONTENT
========================================================= */

.svgh-about-content {
    position: relative;
}


.svgh-about-label {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #1264c7;

    font-size: 13px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    margin-bottom: 14px;
}


.svgh-about-label::before {
    content: "";

    width: 28px;
    height: 3px;

    border-radius: 5px;

    background: #d7a83e;
}


.svgh-about-heading {
    color: #071a3a;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -1px;

    margin-bottom: 20px;
}


.svgh-about-heading span {
    color: #1264c7;
}


.svgh-about-text {
    color: #6c7a8d;

    font-size: 14px;

    line-height: 1.85;

    margin-bottom: 15px;
}


/* =========================================================
   INFO CARDS
========================================================= */

.svgh-about-info-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;

    margin-top: 27px;
}


.svgh-about-info {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px;

    border-radius: 15px;

    background: #f7faff;

    border: 1px solid #e7edf5;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.svgh-about-info:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 28px rgba(7, 26, 58, 0.08);

    border-color: #d5e4f7;
}


.svgh-about-info-icon {
    width: 43px;
    height: 43px;

    flex: 0 0 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: #ffffff;
}


.svgh-about-info:nth-child(1)
.svgh-about-info-icon {
    background: #1264c7;
}


.svgh-about-info:nth-child(2)
.svgh-about-info-icon {
    background: #d7a83e;

    color: #17213a;
}


.svgh-about-info:nth-child(3)
.svgh-about-info-icon {
    background: #15936a;
}


.svgh-about-info:nth-child(4)
.svgh-about-info-icon {
    background: #7357d8;
}


.svgh-about-info strong {
    display: block;

    color: #071a3a;

    font-size: 12px;

    font-weight: 800;
}


.svgh-about-info span {
    display: block;

    color: #6c7a8d;

    font-size: 10px;

    margin-top: 3px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .svgh-about-intro-grid {
        gap: 45px;
    }

    .svgh-about-visual {
        min-height: 490px;
    }

    .svgh-about-image-wrap,
    .svgh-about-house-image {
        min-height: 450px;
    }

    .svgh-about-float-one {
        left: -15px;
    }

    .svgh-about-float-two {
        right: -15px;
    }

}


/* =========================================================
   MOBILE / TABLET
========================================================= */

@media (max-width: 800px) {

    .svgh-about-intro {
        padding: 75px 0;
    }

    .svgh-about-intro-grid {
        grid-template-columns: 1fr;

        gap: 65px;
    }

    .svgh-about-visual {
        width: 100%;

        max-width: 620px;

        min-height: 430px;

        margin: auto;
    }

    .svgh-about-image-wrap,
    .svgh-about-house-image {
        min-height: 390px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .svgh-about-intro {
        padding: 65px 0;
    }

    .svgh-about-intro-grid {
        gap: 55px;
    }

    .svgh-about-visual {
        min-height: 370px;

        padding: 10px;

        border-radius: 22px;
    }

    .svgh-about-image-wrap,
    .svgh-about-house-image {
        min-height: 350px;
    }

    .svgh-about-image-wrap {
        border-radius: 17px;
    }


    /* Image badge */

    .svgh-about-image-badge {
        left: 14px;
        bottom: 14px;

        padding: 9px 11px;

        gap: 8px;
    }

    .svgh-about-badge-icon {
        width: 35px;
        height: 35px;

        font-size: 13px;
    }

    .svgh-about-image-badge strong {
        font-size: 10px;
    }

    .svgh-about-image-badge span {
        font-size: 8px;
    }


    /* Floating cards */

    .svgh-about-float {
        padding: 9px 10px;

        gap: 8px;
    }

    .svgh-about-float-icon {
        width: 34px;
        height: 34px;

        flex-basis: 34px;

        font-size: 12px;
    }

    .svgh-about-float strong {
        font-size: 10px;
    }

    .svgh-about-float small {
        font-size: 8px;
    }

    .svgh-about-float-one {
        left: -4px;
        top: 65px;
    }

    .svgh-about-float-two {
        right: -4px;
        top: 150px;
    }

    .svgh-about-float-three {
        bottom: -22px;
    }


    /* Content */

    .svgh-about-heading {
        font-size: 32px;
    }

    .svgh-about-text {
        font-size: 13px;

        line-height: 1.75;
    }


    /* Info */

    .svgh-about-info-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .svgh-about-info {
        padding: 13px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .svgh-about-visual {
        min-height: 325px;
    }

    .svgh-about-image-wrap,
    .svgh-about-house-image {
        min-height: 305px;
    }

    .svgh-about-float-one {
        left: -7px;
    }

    .svgh-about-float-two {
        right: -7px;
    }

    .svgh-about-float strong {
        font-size: 9px;
    }

    .svgh-about-float small {
        font-size: 7px;
    }

}


        /* =========================================================
           LOCATION STORY
        ========================================================= */

        .svgh-about-location {
            padding: 100px 0;

            background:
                linear-gradient(
                    180deg,
                    #f5f9ff 0%,
                    #ffffff 100%
                );
        }

        .svgh-about-section-heading {
            max-width: 700px;

            margin: 0 auto 55px;

            text-align: center;
        }

        .svgh-about-section-heading .svgh-about-label {
            justify-content: center;
        }

        .svgh-about-section-heading h2 {
            color: var(--svgh-navy);

            font-size: clamp(30px, 4vw, 46px);

            line-height: 1.18;

            font-weight: 800;

            margin-bottom: 15px;
        }

        .svgh-about-section-heading h2 span {
            color: var(--svgh-blue);
        }

        .svgh-about-section-heading p {
            color: var(--svgh-muted);

            font-size: 15px;

            line-height: 1.8;
        }


        .svgh-about-location-grid {
            display: grid;

            grid-template-columns:
                1fr 1fr 1fr;

            gap: 20px;
        }


        .svgh-location-card {
            position: relative;

            padding: 30px;

            min-height: 285px;

            overflow: hidden;

            border-radius: var(--svgh-radius);

            background: #ffffff;

            border: 1px solid var(--svgh-border);

            box-shadow:
                0 12px 35px rgba(7,26,58,0.06);

            transition: 0.35s ease;
        }

        .svgh-location-card:hover {
            transform: translateY(-7px);

            box-shadow:
                0 22px 50px rgba(7,26,58,0.11);
        }

        .svgh-location-card::after {
            content: "";

            position: absolute;

            width: 130px;
            height: 130px;

            right: -55px;
            bottom: -55px;

            border-radius: 50%;

            background: rgba(18,100,199,0.06);
        }

        .svgh-location-number {
            position: absolute;

            top: 20px;
            right: 25px;

            font-size: 48px;

            font-weight: 900;

            color: #f1f5fa;
        }

        .svgh-location-icon {
            width: 56px;
            height: 56px;

            border-radius: 16px;

            display: flex;
            align-items: center;
            justify-content: center;

            color: #ffffff;

            font-size: 20px;

            margin-bottom: 25px;
        }

        .svgh-location-card:nth-child(1)
        .svgh-location-icon {
            background: var(--svgh-blue);
        }

        .svgh-location-card:nth-child(2)
        .svgh-location-icon {
            background: var(--svgh-gold);
            color: #17213a;
        }

        .svgh-location-card:nth-child(3)
        .svgh-location-icon {
            background: var(--svgh-green);
        }

        .svgh-location-card h3 {
            color: var(--svgh-navy);

            font-size: 19px;

            margin-bottom: 10px;

            position: relative;
            z-index: 2;
        }

        .svgh-location-card p {
            color: var(--svgh-muted);

            font-size: 13px;

            line-height: 1.75;

            position: relative;
            z-index: 2;
        }


        /* =========================================================
           WHY CHOOSE US
        ========================================================= */

        .svgh-about-why {
            padding: 105px 0;

            background: var(--svgh-navy);

            position: relative;

            overflow: hidden;
        }

        .svgh-about-why::before {
            content: "";

            position: absolute;

            width: 600px;
            height: 600px;

            border-radius: 50%;

            border: 1px solid rgba(255,255,255,0.05);

            right: -250px;
            top: -300px;
        }

        .svgh-about-why::after {
            content: "";

            position: absolute;

            width: 350px;
            height: 350px;

            border-radius: 50%;

            border: 1px solid rgba(215,168,62,0.10);

            left: -170px;
            bottom: -180px;
        }

        .svgh-about-why-container {
            width: min(1180px, 92%);
            margin: auto;

            position: relative;
            z-index: 2;
        }

        .svgh-about-why-header {
            display: grid;

            grid-template-columns: 0.85fr 1.15fr;

            gap: 60px;

            align-items: end;

            margin-bottom: 50px;
        }

        .svgh-about-why-header .svgh-about-label {
            color: #8fc6ff;
        }

        .svgh-about-why-title {
            color: #ffffff;

            font-size: clamp(32px, 4vw, 48px);

            line-height: 1.15;

            font-weight: 800;
        }

        .svgh-about-why-title span {
            color: var(--svgh-gold);
        }

        .svgh-about-why-intro {
            color: rgba(255,255,255,0.66);

            font-size: 15px;

            line-height: 1.8;
        }


        .svgh-why-grid {
            display: grid;

            grid-template-columns:
                repeat(4, 1fr);

            gap: 15px;
        }

        .svgh-why-card {
            padding: 27px 22px;

            min-height: 225px;

            border-radius: 19px;

            background:
                rgba(255,255,255,0.06);

            border: 1px solid
                rgba(255,255,255,0.09);

            transition: 0.3s ease;
        }

        .svgh-why-card:hover {
            background:
                rgba(255,255,255,0.10);

            transform: translateY(-6px);
        }

        .svgh-why-icon {
            width: 49px;
            height: 49px;

            border-radius: 14px;

            display: flex;
            align-items: center;
            justify-content: center;

            color: #ffffff;

            margin-bottom: 21px;
        }

        .svgh-why-card:nth-child(1)
        .svgh-why-icon {
            background: var(--svgh-blue);
        }

        .svgh-why-card:nth-child(2)
        .svgh-why-icon {
            background: var(--svgh-gold);
            color: #17213a;
        }

        .svgh-why-card:nth-child(3)
        .svgh-why-icon {
            background: var(--svgh-green);
        }

        .svgh-why-card:nth-child(4)
        .svgh-why-icon {
            background: var(--svgh-purple);
        }

        .svgh-why-card h3 {
            color: #ffffff;

            font-size: 16px;

            margin-bottom: 9px;
        }

        .svgh-why-card p {
            color: rgba(255,255,255,0.58);

            font-size: 12px;

            line-height: 1.7;
        }

        /* =========================================================
           TEMPLE / DESTINATION SECTION
        ========================================================= */

        .svgh-about-destination {
            padding: 105px 0;

            background: #ffffff;
        }

        .svgh-destination-box {
            display: grid;

            grid-template-columns: 1fr 1fr;

            overflow: hidden;

            border-radius: 30px;

            background:
                linear-gradient(
                    135deg,
                    #eef7ff,
                    #ffffff
                );

            border: 1px solid var(--svgh-border);

            box-shadow:
                var(--svgh-shadow);
        }

        .svgh-destination-content {
            padding: 55px;
        }

        .svgh-destination-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;

            padding: 8px 13px;

            border-radius: 30px;

            background: var(--svgh-gold-light);

            color: #866416;

            font-size: 11px;

            font-weight: 800;

            text-transform: uppercase;

            letter-spacing: 1px;

            margin-bottom: 20px;
        }

        .svgh-destination-content h2 {
            color: var(--svgh-navy);

            font-size: clamp(30px, 4vw, 44px);

            line-height: 1.2;

            font-weight: 800;

            margin-bottom: 17px;
        }

        .svgh-destination-content h2 span {
            color: var(--svgh-blue);
        }

        .svgh-destination-content p {
            color: var(--svgh-muted);

            font-size: 14px;

            line-height: 1.85;

            margin-bottom: 18px;
        }


        .svgh-destination-list {
            list-style: none;

            margin: 25px 0;
        }

        .svgh-destination-list li {
            display: flex;

            align-items: flex-start;

            gap: 11px;

            color: var(--svgh-text);

            font-size: 13px;

            margin-bottom: 13px;
        }

        .svgh-destination-list i {
            color: var(--svgh-green);

            margin-top: 3px;
        }

        .svgh-destination-map {
            position: relative;

            min-height: 470px;

            background:
                linear-gradient(
                    145deg,
                    #0a2b58,
                    #1264c7
                );

            display: flex;

            align-items: center;
            justify-content: center;

            overflow: hidden;
        }

        .svgh-map-grid {
            position: absolute;

            inset: 0;

            opacity: 0.14;

            background-image:
                linear-gradient(
                    rgba(255,255,255,0.4) 1px,
                    transparent 1px
                ),
                linear-gradient(
                    90deg,
                    rgba(255,255,255,0.4) 1px,
                    transparent 1px
                );

            background-size: 45px 45px;

            transform:
                rotate(-10deg)
                scale(1.3);
        }

        .svgh-map-circle {
            width: 245px;
            height: 245px;

            border-radius: 50%;

            border:
                1px solid
                rgba(255,255,255,0.18);

            position: relative;

            display: flex;
            align-items: center;
            justify-content: center;
        }

        .svgh-map-circle::before {
            content: "";

            position: absolute;

            width: 170px;
            height: 170px;

            border-radius: 50%;

            border:
                1px solid
                rgba(255,255,255,0.18);
        }

        .svgh-map-pin {
            position: relative;
            z-index: 3;

            width: 72px;
            height: 72px;

            border-radius: 50% 50% 50% 0;

            transform:
                rotate(-45deg);

            background: var(--svgh-gold);

            display: flex;
            align-items: center;
            justify-content: center;

            box-shadow:
                0 15px 35px rgba(0,0,0,0.25);
        }

        .svgh-map-pin i {
            transform: rotate(45deg);

            color: #17213a;

            font-size: 25px;
        }

        .svgh-map-label {
            position: absolute;

            left: 50%;
            bottom: 45px;

            transform: translateX(-50%);

            width: calc(100% - 50px);

            text-align: center;

            padding: 15px;

            border-radius: 15px;

            background:
                rgba(5,23,51,0.65);

            border:
                1px solid
                rgba(255,255,255,0.13);

            backdrop-filter: blur(8px);

            color: #ffffff;
        }

        .svgh-map-label strong {
            display: block;

            font-size: 14px;

            margin-bottom: 4px;
        }

        .svgh-map-label span {
            color: rgba(255,255,255,0.65);

            font-size: 11px;
        }


        /* =========================================================
           CTA
        ========================================================= */

        .svgh-about-cta {
            padding: 90px 0;

            background:
                linear-gradient(
                    180deg,
                    #f7faff,
                    #ffffff
                );
        }

        .svgh-about-cta-box {
            position: relative;

            overflow: hidden;

            padding: 55px;

            border-radius: 28px;

            background:
                linear-gradient(
                    120deg,
                    #071a3a,
                    #0d4f96
                );

            box-shadow:
                0 25px 60px rgba(7,26,58,0.17);

            display: flex;

            align-items: center;
            justify-content: space-between;

            gap: 30px;
        }

        .svgh-about-cta-box::before {
            content: "";

            position: absolute;

            width: 300px;
            height: 300px;

            right: -100px;
            top: -160px;

            border-radius: 50%;

            border:
                1px solid
                rgba(215,168,62,0.18);
        }

        .svgh-about-cta-content {
            position: relative;
            z-index: 2;
        }

        .svgh-about-cta-content small {
            color: #ffe39a;

            font-size: 11px;

            font-weight: 800;

            text-transform: uppercase;

            letter-spacing: 1.5px;
        }

        .svgh-about-cta-content h2 {
            color: #ffffff;

            font-size: clamp(27px, 4vw, 40px);

            margin: 9px 0 8px;
        }

        .svgh-about-cta-content p {
            color: rgba(255,255,255,0.64);

            font-size: 14px;
        }

        .svgh-about-cta-actions {
            position: relative;
            z-index: 2;

            display: flex;

            flex-wrap: wrap;

            gap: 10px;
        }

        .svgh-cta-call,
        .svgh-cta-book {
            display: inline-flex;

            align-items: center;
            justify-content: center;

            gap: 9px;

            min-height: 50px;

            padding: 0 21px;

            border-radius: 12px;

            font-size: 13px;

            font-weight: 800;

            transition: 0.3s ease;
        }

        .svgh-cta-call {
            color: #ffffff;

            border:
                1px solid
                rgba(255,255,255,0.2);
        }

        .svgh-cta-book {
            background: var(--svgh-gold);

            color: #17213a;
        }

        .svgh-cta-call:hover,
        .svgh-cta-book:hover {
            transform: translateY(-3px);
        }


        /* =========================================================
           RESPONSIVE
        ========================================================= */

        @media (max-width: 1050px) {

            .svgh-about-intro-grid {
                gap: 40px;
            }

            .svgh-about-visual {
                min-height: 450px;
            }

            .svgh-about-visual-main {
                width: 280px;
                height: 280px;
            }

            .svgh-about-why-header {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            .svgh-why-grid {
                grid-template-columns:
                    repeat(2, 1fr);
            }

        }


        @media (max-width: 800px) {

            .svgh-about-hero {
                min-height: auto;
            }

            .svgh-about-hero-container {
                padding: 70px 0;
            }

            .svgh-about-intro-grid {
                grid-template-columns: 1fr;
            }

            .svgh-about-visual {
                min-height: 440px;

                max-width: 600px;

                margin: auto;
            }

            .svgh-about-location-grid {
                grid-template-columns: 1fr;
            }

            .svgh-destination-box {
                grid-template-columns: 1fr;
            }

            .svgh-destination-map {
                min-height: 390px;
            }

            .svgh-about-cta-box {
                flex-direction: column;

                align-items: flex-start;
            }

        }


        @media (max-width: 600px) {

            .svgh-about-hero-container {
                padding: 55px 0;
            }

            .svgh-about-hero-title {
                font-size: 38px;

                letter-spacing: -0.8px;
            }

            .svgh-about-hero-description {
                font-size: 14px;

                line-height: 1.7;
            }

            .svgh-about-primary-btn,
            .svgh-about-outline-btn {
                width: 100%;
            }

            .svgh-about-intro,
            .svgh-about-location,
            .svgh-about-why,
            .svgh-about-destination {
                padding: 75px 0;
            }

            .svgh-about-visual {
                min-height: 400px;

                border-radius: 22px;
            }

            .svgh-about-visual-main {
                width: 230px;
                height: 230px;

                top: 55px;
            }

            .svgh-about-visual-main i {
                font-size: 65px;
            }

            .svgh-about-float {
                padding: 10px 12px;
            }

            .svgh-about-float i {
                width: 34px;
                height: 34px;
            }

            .svgh-about-float strong {
                font-size: 11px;
            }

            .svgh-about-float small {
                font-size: 9px;
            }

            .svgh-about-float-one {
                left: 10px;
                top: 85px;
            }

            .svgh-about-float-two {
                right: 8px;
                top: 180px;
            }

            .svgh-about-float-three {
                bottom: 22px;
            }

            .svgh-about-info-grid {
                grid-template-columns: 1fr;
            }

            .svgh-why-grid {
                grid-template-columns: 1fr;
            }

            .svgh-why-card {
                min-height: auto;
            }

            .svgh-destination-content {
                padding: 32px 23px;
            }

            .svgh-destination-map {
                min-height: 350px;
            }

            .svgh-map-circle {
                width: 190px;
                height: 190px;
            }

            .svgh-map-circle::before {
                width: 135px;
                height: 135px;
            }

            .svgh-about-cta {
                padding: 65px 0;
            }

            .svgh-about-cta-box {
                padding: 35px 23px;

                border-radius: 22px;
            }

            .svgh-about-cta-actions {
                width: 100%;
            }

            .svgh-cta-call,
            .svgh-cta-book {
                width: 100%;
            }

        }


        @media (max-width: 380px) {

            .svgh-about-hero-title {
                font-size: 32px;
            }

            .svgh-about-visual-main {
                width: 200px;
                height: 200px;
            }

            .svgh-about-float-two {
                right: 3px;
            }

        }

 