:root {
    --gc-orange: #ff6a00;
    --gc-blue: #1e73be;
    --gc-dark: #102033;
    --gc-deep: #071527;
    --gc-text: #4b5b70;
    --gc-muted: #64748b;
    --gc-bg: #f6f8fc;
    --gc-border: #e5edf6;
    --gc-white: #ffffff;
    --gc-gold: #ffc857;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--gc-bg);
    color: var(--gc-dark);
    font-family: Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

/* COMMON */
.guide-container,
.destination-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.section-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 44px;
}

.section-heading span {
    display: inline-block;
    color: var(--gc-orange);
    font-weight: 900;
    font-size: 13px;
    letter-spacing: .6px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    margin: 0 0 14px;
    color: var(--gc-dark);
}

.section-heading p {
    color: var(--gc-muted);
    line-height: 1.8;
    margin: 0 auto;
    max-width: 760px;
}

.premium-card {
    background: #fff;
    border: 1px solid var(--gc-border);
    border-radius: 30px;
    padding: 32px;
    box-shadow: 0 16px 38px rgba(15, 23, 42, .07);
}

.premium-card h2,
.premium-card h3 {
    color: var(--gc-dark);
    margin-top: 0;
}

.premium-card p,
.premium-card li {
    color: var(--gc-text);
    line-height: 1.85;
}

.premium-card ul {
    margin: 14px 0 0;
    padding-left: 20px;
}

/* LISTING PAGE */
.guide-hero {
    background: linear-gradient(135deg, var(--gc-dark), var(--gc-blue));
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.guide-hero h1 {
    font-size: 42px;
    margin: 0 0 16px;
    color: #fff;
}

.guide-hero p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .9);
}

.guide-hero p+p {
    margin-top: 18px;
}

.guide-section {
    padding: 70px 20px;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.guide-card {
    background: var(--gc-white);
    border: 1px solid var(--gc-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(16, 32, 51, .08);
    transition: transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.guide-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(16, 32, 51, .12);
}

.guide-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.guide-card-body {
    padding: 24px;
}

.guide-card-body span {
    display: inline-block;
    background: rgba(255, 106, 0, .12);
    color: var(--gc-orange);
    font-weight: 700;
    font-size: 13px;
    padding: 7px 12px;
    border-radius: 30px;
    margin-bottom: 14px;
}

.guide-card-body h3 {
    margin: 0 0 12px;
    font-size: 22px;
    color: var(--gc-dark);
}

.guide-card-body p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.guide-link {
    color: var(--gc-blue);
    font-weight: 700;
}

.cta-box {
    margin-top: 55px;
    padding: 38px;
    border-radius: 28px;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, var(--gc-blue), var(--gc-dark));
}

.cta-box h2 {
    margin: 0 0 12px;
    font-size: 30px;
    color: #fff;
}

.cta-box p {
    max-width: 720px;
    margin: 0 auto 24px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .9);
}

.cta-btn {
    display: inline-block;
    background: var(--gc-orange);
    color: #fff;
    padding: 14px 26px;
    border-radius: 40px;
    font-weight: 700;
}

/* DESTINATION PAGES */
.destination-page {
    background:
        radial-gradient(circle at top left, rgba(30, 115, 190, .12), transparent 34%),
        radial-gradient(circle at top right, rgba(255, 106, 0, .10), transparent 32%),
        #f6f8fc;
}

.destination-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(7, 21, 39, .97), rgba(30, 115, 190, .90)),
        linear-gradient(45deg, rgba(255, 106, 0, .22), transparent);
}

.destination-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.destination-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 999px;
    background: rgba(255, 106, 0, .16);
    border: 1px solid rgba(255, 106, 0, .42);
    color: var(--gc-gold);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 16px;
}

.destination-hero h1 {
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.06;
    margin: 0 0 14px;
    letter-spacing: -1px;
}

.destination-hero p {
    max-width: 640px;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .92);
    margin: 0 0 22px;
}

.destination-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.destination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 24px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    transition: transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.destination-btn.primary {
    background: var(--gc-orange);
    color: #fff;
    box-shadow: 0 14px 30px rgba(255, 106, 0, .30);
}

.destination-btn.primary:hover {
    background: #e85f00;
    transform: translateY(-2px);
}

.destination-btn.secondary {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25);
}

.destination-btn.secondary:hover {
    background: rgba(255, 255, 255, .20);
    transform: translateY(-2px);
}



.hero-image img {
    width: 100%;
    height: 420px;

    display: block;

    object-fit: cover;

    border-radius: 28px;

    box-shadow: 0 28px 70px rgba(0, 0, 0, .30);
}

.hero-image {
    position: relative;
}

.hero-info-card {
    position: relative;
    z-index: 5;
    width: calc(100% - 90px);
    margin: -48px auto 0;
    background: #fff;
    border: 1px solid #e5edf6;
    border-radius: 18px;
    padding: 18px 22px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .18);
}

.hero-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.hero-info-box {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 4px 26px;
    text-align: left;
    min-width: 0;
}

.hero-info-box:not(:last-child) {
    border-right: 1px solid #e2e8f0;
}

.hero-info-box i {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gc-blue);
    color: #fff;
    font-size: 16px;
    box-shadow: 0 10px 22px rgba(30, 115, 190, .28);
}

.hero-info-box div {
    min-width: 0;
}

.hero-info-box span {
    display: block;
    color: #334155;
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 5px;
    white-space: nowrap;
}

.hero-info-box strong {
    display: block;
    color: #102033;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.25;
}

.destination-section {
    padding: 76px 0;
}

.destination-section.light {
    background: #fff;
}

.why-grid,
.experience-grid,
.places-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-box,
.experience-box,
.place-card {
    background: #fff;
    border: 1px solid var(--gc-border);
    border-radius: 26px;
    padding: 24px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .07);
    transition: transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.place-card:hover,
.why-box:hover,
.experience-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 46px rgba(15, 23, 42, .12);
    border-color: rgba(255, 106, 0, .35);
}

.place-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 18px;
}

.place-card h3,
.experience-box h3 {
    font-size: 22px;
    margin: 0 0 10px;
    color: var(--gc-dark);
}

.why-box strong {
    display: block;
    color: var(--gc-dark);
    font-size: 20px;
    margin-bottom: 8px;
}

.place-card p,
.why-box p,
.experience-box p {
    color: var(--gc-text);
    line-height: 1.75;
    margin: 0;
}

.place-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.place-meta span {
    padding: 7px 10px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #334155;
    font-size: 12px;
    font-weight: 800;
}

.closed-badge {
    background: #fff1f2 !important;
    color: #dc2626 !important;
    border: 1px solid #fecdd3;
}

.featured-place {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 30px;
    align-items: center;
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    border: 1px solid var(--gc-border);
    border-radius: 34px;
    padding: 28px;
    box-shadow: 0 22px 50px rgba(15, 23, 42, .09);
    margin-bottom: 28px;
}

.featured-place img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 26px;
}

.featured-place .tag {
    display: inline-block;
    background: rgba(255, 106, 0, .10);
    color: var(--gc-orange);
    border: 1px solid rgba(255, 106, 0, .25);
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 14px;
}

.featured-place h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin: 0 0 12px;
    line-height: 1.15;
}

.featured-place p {
    color: var(--gc-text);
    line-height: 1.85;
    margin: 0 0 16px;
}

.info-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.distance-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 18px;
}

.distance-table th,
.distance-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--gc-border);
}

.distance-table th {
    background: #f8fafc;
    color: var(--gc-dark);
    font-size: 14px;
}

.distance-table td {
    color: var(--gc-text);
    font-weight: 800;
}

.itinerary-list {
    display: grid;
    gap: 14px;
}

.itinerary-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 18px;
    align-items: start;
    padding: 18px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid var(--gc-border);
}

.itinerary-time {
    font-weight: 900;
    color: var(--gc-orange);
}

.itinerary-item strong {
    color: var(--gc-dark);
    font-size: 18px;
}

.nearby-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.nearby-card {
    background: #fff;
    border: 1px solid var(--gc-border);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
    transition: transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.nearby-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 106, 0, .35);
}

.nearby-card strong {
    display: block;
    color: var(--gc-dark);
    margin-bottom: 8px;
    font-size: 18px;
}

.nearby-card span {
    color: var(--gc-muted);
    font-size: 14px;
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--gc-border);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
}

.faq-item h3 {
    margin: 0 0 8px;
    color: var(--gc-dark);
    font-size: 19px;
}

.faq-item p {
    margin: 0;
    color: var(--gc-text);
    line-height: 1.75;
}

.related-guides-card {
    max-width: 900px;
    margin: 0 auto;
}

.related-guides-card h2 {
    margin-bottom: 18px;
}

.related-guides-card p {
    line-height: 1.8;
}

.related-guides-card a {
    color: var(--gc-blue);
    font-weight: 700;
}

.related-guides-card a:hover {
    color: var(--gc-orange);
    text-decoration: underline;
}

.cab-cta {
    background:
        linear-gradient(135deg, rgba(7, 21, 39, .97), rgba(30, 115, 190, .90)),
        linear-gradient(45deg, rgba(255, 106, 0, .20), transparent);
    color: #fff;
    border-radius: 36px;
    padding: 46px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 26px;
    align-items: center;
    box-shadow: 0 24px 54px rgba(15, 23, 42, .18);
}

.cab-cta h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin: 0 0 12px;
    color: #ffffff;
    line-height: 1.15;
}

.cab-cta p {
    margin: 0;
    color: rgba(255, 255, 255, .88);
    line-height: 1.8;
    max-width: 720px;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .destination-hero-inner,
    .featured-place,
    .info-layout,
    .cab-cta {
        grid-template-columns: 1fr;
    }

    .places-grid,
    .why-grid,
    .experience-grid,
    .guide-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nearby-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-info-grid {
        grid-template-columns: 1fr;
    }

    .hero-info-card {
        max-width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .guide-hero {
        padding: 55px 18px;
    }

    .guide-hero h1 {
        font-size: 30px;
    }

    .guide-hero p {
        font-size: 16px;
    }

    .guide-section {
        padding: 50px 16px;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .destination-hero-inner {
        padding-top: 0;
        gap: 20px;
    }

    .destination-hero h1 {
        font-size: 34px;
    }

    .destination-hero p {
        font-size: 15.5px;
    }

    .hero-image img,
    .featured-place img {
        height: 280px;
    }

    .hero-info-card {
        width: calc(100% - 10px);
        margin: -38px auto 0;
        padding: 14px 12px;
        border-radius: 18px;
    }

    .hero-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-info-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 7px;
        padding: 0 6px;
        text-align: center;
        border-bottom: none !important;
    }

    .hero-info-box:not(:last-child) {
        border-right: 1px solid #e5edf6;
    }

    .hero-info-box i {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 14px;
    }

    .hero-info-box span {
        font-size: 10px;
        line-height: 1.1;
        white-space: nowrap;
        margin-bottom: 0;
    }

    .hero-info-box strong {
        font-size: 14px;
        line-height: 1.15;
    }

    .destination-section {
        padding: 56px 0;
    }

    .guide-grid,
    .places-grid,
    .why-grid,
    .experience-grid,
    .nearby-grid {
        grid-template-columns: 1fr;
    }

    .destination-btn {
        width: 100%;
    }

    .destination-actions {
        flex-direction: column;
    }

    .premium-card,
    .featured-place {
        padding: 22px;
        border-radius: 26px;
    }

    .cab-cta {
        padding: 28px;
        border-radius: 28px;
    }

    .itinerary-item {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 28px 20px;
    }

    .cta-box h2 {
        font-size: 25px;
    }
}