:root {
    /* Shadcn/ui inspired color palette */
    --background: 0 0% 100%;
    --foreground: 222.2 84% 4.9%;
    --card: 0 0% 100%;
    --card-foreground: 222.2 84% 4.9%;
    --popover: 0 0% 100%;
    --popover-foreground: 222.2 84% 4.9%;
    --primary: 222.2 47.4% 11.2%;
    --primary-foreground: 210 40% 98%;
    --secondary: 210 40% 96%;
    --secondary-foreground: 222.2 84% 4.9%;
    --muted: 210 40% 96%;
    --muted-foreground: 215.4 16.3% 46.9%;
    --accent: 210 40% 96%;
    --accent-foreground: 222.2 84% 4.9%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;
    --border: 214.3 31.8% 91.4%;
    --input: 214.3 31.8% 91.4%;
    --ring: 222.2 84% 4.9%;
    --radius: 0.5rem;

    /* Custom brand colors */
    --nz-teal: #20b2aa;
    --nz-orange: #D76F2C;
    --nz-blue: #0ea5e9;
    --access-pink: #AA2464;
    --access-gray: #606060;
}

:root {
    --bg: #ffffff;
    --text: #1f2937;
    --muted: #6b7280;
    --card: #f8fafc;
    --border: #e5e7eb;
    --shadow: 0 10px 30px rgba(0, 0, 0, .08);

    --tabH: 78px;
    --leftW: 330px;
    --radius-location: 999px;
    --radiusCard-location: 16px;
    --gap: 18px;

    --badge: #16a34a;
    --pill: #e9f8ef;
    --accent: #0f766e;
}

* {
    border-color: hsl(var(--border));
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h2 {
    color: var(--access-pink);
    font-size: 2.2rem;
    font-weight: 700;

    margin-bottom: 10px;
}

.bg-access-btn {
    background: linear-gradient(135deg, #b22094, #e9790e);
}

.bg-access1 {
    background: linear-gradient(135deg, #AA2363, #f87a26);

}

.bg-access2 {
    background: linear-gradient(135deg, #AA2363, #ffa162);

}

.bg-access3 {
    background: linear-gradient(135deg, #AA2363, #f1b994);
}

.bg-access4 {
    background: linear-gradient(135deg, #AA2363, #fdceae);
}

.bg-access5 {
    background: linear-gradient(135deg, #ff8c42, #fda8d0);
}

.bg-access6 {
    background: linear-gradient(135deg, #ff8c42, #fc75b4);
}

.bg-access7 {
    background: linear-gradient(135deg, #ff8c42, #f34898);
}

.bg-access8 {
    background: linear-gradient(135deg, #ff8c42, #ec1d7e);
}

.bg-access-white {
    background: white;


}

.bg-access-white h5,
.bg-access-white i {
    color: var(--access-pink);
}

.bg-access-white p {
    color: black;
}

.bg-access-white .icon-bg {
    background-color: rgba(255, 228, 249, 0.18);
}

.bg-access-pink {
    background: var(--access-pink) !important;
}

.bg-access-pink h5,
.bg-access-pink i {
    color: white;
}

.bg-access-pink p {
    color: white;
}

.bg-access-pink .icon-bg {
    background-color: rgba(248, 242, 247, 0.18);
}

.bg-access-orange {
    background: var(--nz-orange) !important;
}

.bg-access-orange h5,
.bg-access-orange i {
    color: white;
}

.bg-access-orange p {
    color: white;
}

.bg-access-orange .icon-bg {
    background-color: rgba(248, 242, 247, 0.18);
}

.section-subtitles {
    font-size: 1rem;
    color: #555;
    max-width: 720px;
    margin: 0 auto 50px;
}

/* Shadcn-inspired card styles */
.shadcn-card {
    background-color: hsl(var(--card));
    color: hsl(var(--card-foreground));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    transition: all 0.2s ease-in-out;
}

.shadcn-card:hover {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

/* Shadcn-inspired button styles */
.btn-shadcn-primary {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border: 1px solid hsl(var(--primary));
    border-radius: var(--radius);
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-shadcn-primary:hover {
    background-color: hsl(var(--primary) / 0.9);
    color: hsl(var(--primary-foreground));
    border-color: hsl(var(--primary) / 0.9);
}

.btn-shadcn-secondary {
    background-color: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.btn-shadcn-secondary:hover {
    background-color: hsl(var(--secondary) / 0.8);
    color: hsl(var(--secondary-foreground));
}

.btn-shadcn-outline {
    background-color: transparent;
    color: hsl(var(--foreground));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.btn-shadcn-outline:hover {
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
}

/* Shadcn-inspired form controls */
.form-control-shadcn {
    background-color: hsl(var(--background));
    border: 1px solid hsl(var(--input));
    border-radius: var(--radius);
    color: hsl(var(--foreground));
    transition: all 0.2s ease-in-out;
}

.form-control-shadcn:focus {
    border-color: hsl(var(--ring));
    box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
    outline: none;
}

.form-control-shadcn::placeholder {
    color: hsl(var(--muted-foreground));
}

/* Shadcn-inspired labels */
.form-label-shadcn {
    color: hsl(var(--foreground));
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

/* Shadcn-inspired badges */
.badge-shadcn {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    display: inline-flex;
    align-items: center;
}

.badge-shadcn-secondary {
    background-color: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
}

.badge-shadcn-outline {
    background-color: transparent;
    color: hsl(var(--foreground));
    border: 1px solid hsl(var(--border));
}

/* Custom gradient backgrounds */
.bg-gradient-teal-blue {
    background: linear-gradient(135deg, var(--nz-teal), var(--nz-blue));
}

.bg-gradient-orange-yellow {
    background: linear-gradient(135deg, var(--nz-orange), #fbbf24);
}

.bg-gradient-pink-purple {
    background: linear-gradient(135deg, var(--access-pink), #8b5cf6);
}

.bg-gradient-green-teal {
    background: linear-gradient(135deg, #10b981, var(--nz-teal));
}

/* Muted background */
.bg-muted {
    background-color: hsl(var(--muted));
}

.text-access-p {
    color: var(--access-pink);
}

.text-access-s {
    color: var(--nz-orange) !important;
}

.text-muted-foreground {
    color: hsl(var(--muted-foreground));
}

/* Custom hover effects */
.hover-scale:hover {
    transform: scale(1.02);
}

.hover-lift:hover {
    transform: translateY(-2px);
}

/* Sticky navbar with backdrop blur */
.navbar-shadcn {
    background-color: hsl(var(--background) / 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid hsl(var(--border));
}

/* Custom section spacing */
.section-padding {
    padding: 5rem 0;
}

footer .img-logo {
    width: 220px;
}

.footer-btn {
    width: 220px;
}


@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }

    footer .img-logo {
        width: 220px;
        margin: auto;
    }

    .footer-btn {
        margin: auto;
    }
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom icon backgrounds */
.icon-bg {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg-sm {
    width: 2.5rem;
    height: 2.5rem;
}

.icon-bg-lg {
    width: 4rem;
    height: 4rem;
}

.card-container {
    width: 100%;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    background-color: #050A17;
}

.card-content {
    padding: 16px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    /* padding-top: 56.25%; */
    border-radius: 5px;
    overflow: hidden;
}

/* .video-wrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
} */

.text-muted-foreground {
    color: #6c757d;
    /* Bootstrap's muted text color */
}

.step-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    padding: 1.5rem;
}

.step-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: var(--nz-orange);
    /* Bootstrap primary blue */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.btn-orange {
    background-color: #f97316;
    /* Custom orange */
    border-color: #f97316;
    color: white;
}

.btn-orange:hover {
    background-color: #ea580c;
    border-color: #ea580c;
    color: white;
}

footer h1 {
    font-size: clamp(2rem, 8vw, 6rem);
    color: var(--nz-teal);
}

.community img {
    width: 22px;
}

.community {
    display: flex;
    flex-direction: column;
    gap: 10px;

}

.social-icons li a {
    color: var(--access-pink);
    background: white;
    border-radius: 100%;
    padding: 6px 10px;
}

.footer-blog {
    display: flex;
    /* align-items: center; */
    gap: 10px;
}

.footer-blog img {
    width: 90px;
    height: 50px;
    border-radius: 3px;

}

.footer-blog h5 {
    font-size: 14px;
    color: white;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(to right, #b9105f, #f68f3b);
    /* Teal to Blue */
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 18px;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease-in-out;
}

.scroll-to-top:hover {
    background: linear-gradient(to right, #0f766e, #1d4ed8);
}


.video-container .text {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.video-container:hover .text {
    opacity: 1;
    visibility: visible;
}

.primary-logo {
    height: 40px;
    width: auto;
}

.i4ewOd-pzNkMb-haAclf {
    visibility: hidden;
}

.cta-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--nz-blue);
    text-decoration: none;
    position: relative;
}

.cta-line::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.cta-line i {
    font-size: 0.9rem;
    transition: transform 0.25s ease;
}

.cta-line:hover::after {
    transform: scaleX(1);
}

.cta-line:hover i {
    transform: translate(4px, -4px);
}

/* banner slider   */
#registration-form-section .swiper {
    width: auto;
    height: 200px;
    position: relative;
}

#registration-form-section .next-preview {
    position: absolute;
    bottom: 2px;
    right: 5px;
    width: 78px;
    height: 53px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .6);
    border: 2px solid #fff;
    z-index: 10;
    background: #000;
}

@media (min-width:768px) {
    #registration-form-section .swiper {
        width: auto;
        height: 480px;

    }

    #registration-form-section .next-preview {

        bottom: 20px;
        right: 20px;
        width: 120px;
        height: 80px;

    }
}

#registration-form-section .swiper-slide img {
    width: auto;
    height: 100%;
    object-fit: cover;
}



#registration-form-section .next-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* IMPORTANT */
}

#nextPreviewImg {
    opacity: 0.5;
    transition: 0.3s all ease-in-out;
}

#nextPreviewImg:hover {
    opacity: 1;
    transition: 0.3s all ease-in-out;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    list-style-type: none;
    padding: 10px 0;

}

.footer-social li {
    text-decoration: none;

}

.footer-social li a i {
    color: var(--access-pink);
    padding: 10px;
    border-radius: 100%;
    background: white;
    font-size: 28px;
    transition: 0.3s all ease-in-out;
}

.footer-social li a i:hover {
    box-shadow: 0 5px 10px rgba(133, 132, 132, 0.76);
    transform: translateY(-5px);
    transition: 0.3s all ease-in-out;
}

.cta-banner {
    padding: 30px;


}

.cta-banner .cta-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    background: rgb(255 240 255);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    text-align: center;

}

.cta-banner .cta-content .main-content {
    flex-basis: 70%;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;

}



.cta-banner .cta-content .main-content i {
    font-size: 24px;
    background: rgb(0, 68, 255);
    color: white;
    padding: 20px 20px;
    border-radius: 100%;
    align-self: flex-start;

}

.bg-absolute-cta {
    display: none;

}

.cta-banner {
    padding: 30px;


}

.cta-banner .cta-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    background: rgb(255 240 255);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    text-align: center;
    gap: 15px;

}

.cta-banner .cta-content .main-content {
    flex-basis: 70%;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;

}



.cta-banner .cta-content .main-content i {
    font-size: 24px;
    background: rgb(0, 68, 255);
    color: white;
    padding: 20px 20px;
    border-radius: 100%;
    align-self: flex-start;

}

.bg-absolute-cta {
    display: none;

}

.cta-img {
    display: none;
}

@media (min-width:768px) {
    .bg-absolute-cta {
        display: block;
        content: "";
        position: absolute;
        left: -91px;
        background: #AA2363;
        height: 200px;
        width: 211px;
        c
    }

    .cta-img {
        display: block;
        position: absolute;
        /* bottom: 48px; */
        width: 53px;
    }

    .cta-banner .cta-content {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
        background: rgb(255 240 255);
        padding: 30px;
        border-radius: 10px;
        position: relative;
        overflow: hidden;
        text-align: start;
    }

    .cta-banner .cta-content .main-content {
        flex-basis: 70%;
        display: flex;
        gap: 20px;
        padding-left: 121px;

    }
}

.cta-banner .cta-content .main-content .title {
    font-size: 26px;
    font-weight: 600;
    color: black;

}

.cta-banner .cta-content .main-content .para {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    color: black;
    margin: 0px;
}

.cta-banner .cta-content .cta-btn {
    /* align-self: flex-start; */
    padding: 15px 15px;
    min-width: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: rgb(255, 255, 255);
    background: #AA2363;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s all ease-in-out;
}

.cta-banner .cta-content .cta-btn:hover {
    transform: translateY(-5px);
    transition: 0.3s all ease-in-out;

}



.hideit {
    width: 86%;
    position: absolute;
    background: white;
    z-index: 999;
    padding-bottom: 43px;
    margin-bottom: -8px;
}

/* event attraction   */
.event-attraction .image {
    height: 250px;
}

.event-attraction .image img {
    height: 100%;
    object-fit: cover;
    border-radius: 5px 5px 0 0;
}

/* who join*/
.who-join .image {
    height: 210px;
}

.who-join .image img {
    height: 100%;
    object-fit: cover;
    border-radius: 5px 5px 0 0;

}

.who-join .box {
    border-radius: 5px;
    box-shadow: 0 4px 12px #f1c7acc2;
}

/* how works*/

.how-works .box {
    border-radius: 5px;
    /* border: 1px dashed gray; */
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;

    text-align: center;
    background: #fff;
    border-radius: 14px;
    padding: 35px 25px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.how-works .box:hover {
    transform: translateY(-6px);
}

/* location-section */
.location-section .wrap {
    max-width: 1100px;
    margin: 36px auto;
    padding: 0 16px;
}

.location-section .shell {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 18px;
}

.location-section .grid {
    display: grid;
    grid-template-columns: minmax(260px, var(--leftW)) 1fr;
    gap: var(--gap);
    align-items: start;
}

/* LEFT */
.location-section .rail {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 6px;
}

.location-section .rail-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 6px;
    padding: 0 6px;
    color: var(--muted);
    font-weight: 800;
    font-size: 14px;
}

.location-section .rail-title .bar {
    width: 8px;
    height: 24px;
    border-radius: 999px;
    background: linear-gradient(180deg, #111827, #6b7280);
    opacity: .25;
}

.location-section .tab {
    appearance: none;
    border: none;
    width: 100%;
    background: transparent;
    padding: 0;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.location-section .tab-inner {
    height: var(--tabH);
    border-radius: var(--radius-location);
    background: var(--pill);
    display: flex;
    align-items: center;
    padding: 10px 14px 10px 10px;
    gap: 12px;
    border: 2px solid transparent;
    transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease, filter .12s ease;
    position: relative;
    overflow: hidden;
}

.location-section .tab-inner::after {
    content: "";
    position: absolute;
    inset: -40% -20% auto -20%;
    height: 120%;
    transform: rotate(8deg);
    background: rgba(255, 255, 255, .55);
    opacity: .35;
    pointer-events: none;
}

.location-section .badge {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: var(--badge);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex: 0 0 auto;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
    line-height: 1;
}

.location-section .badge .day {
    font-weight: 900;
    font-size: 18px;
    letter-spacing: .5px;
    margin-bottom: 2px;
}

.location-section .badge .mon {
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
    opacity: .95;
}

.location-section .tab-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.location-section .tab-text .place {
    font-size: 18px;
    font-weight: 900;
    color: var(--accent);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.location-section .tab-text .dow {
    font-size: 14px;
    font-weight: 800;
    color: rgba(17, 24, 39, .72);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.location-section .tab:hover .tab-inner {
    transform: translateY(-1px);
    filter: saturate(1.02);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

.location-section .tab:focus-visible .tab-inner {
    border-color: rgba(59, 130, 246, .55);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, .18), 0 10px 24px rgba(0, 0, 0, .08);
}

.location-section .tab[aria-selected="true"] .tab-inner {
    border-color: rgba(17, 24, 39, .18);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
    transform: translateY(-1px);
}

/* RIGHT */
.location-section .panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.location-section .panel-head {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 14px;
    border-bottom: 1px dashed var(--border);
}

.location-section .panel-head h2 {
    margin: 0;
    font-size: 22px;
    line-height: 1.15;
}

.location-section .panel-head .meta {
    margin-top: 6px;
    color: var(--muted);
    font-weight: 800;
    font-size: 13px;
}

.location-section .chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: var(--card);
    border: 1px solid var(--border);
    font-weight: 900;
    color: rgba(17, 24, 39, .78);
    white-space: nowrap;
}

.location-section .dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--badge);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, .04);
}

.location-section .details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.location-section .card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radiusCard-location);
    padding: 14px;
}

.location-section .card h3 {
    margin: 0 0 8px;
    font-size: 14px;
    letter-spacing: .2px;
    text-transform: uppercase;
    color: rgba(17, 24, 39, .72);
}

.location-section .card p {
    margin: 0;
    color: rgba(17, 24, 39, .84);
    font-weight: 650;
    line-height: 1.55;
    font-size: 14px;
}

.location-section .muted {
    color: rgba(17, 24, 39, .62);
    font-weight: 700;
}

/* Map fills remaining space */
.location-section .map-wrap {
    flex: 1 1 auto;
    min-height: 260px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--card);
}

.location-section .map-wrap iframe {
    width: 100%;
    min-height: 260px;
    border: 0;
    display: block;
}

.location-section .actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.location-section .btn {
    border: 1px solid var(--border);
    background: #fff;
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 900;
    cursor: pointer;
}

.location-section .btn.primary {
    background: var(--badge);
    color: #fff;
    border-color: transparent;
}

@media (max-width: 920px) {
    .location-section .grid {
        grid-template-columns: 1fr;
    }

    .location-section .details {
        grid-template-columns: 1fr;
    }

    .location-section .panel {
        min-height: 0;
    }

    .location-section .map-wrap iframe {
        min-height: 320px;
    }
}

.gantabya-title {
    font-size: 21px;
}

@media (min-width:768px) {
    .gantabya-title {
        font-size: 29px;
    }
}

@media (min-width:992px) {
    .gantabya-title {
        font-size: 40px;
    }
}

@media (min-width:1290px) {
    .gantabya-title {
        font-size: 47px;
    }
}

@media (min-width:1400px) {
    .gantabya-title {
        font-size: 50px;
    }
}