/* ============================================================
   OLD CITY TRAVEL - RESET / BASE GENERAL
============================================================ */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body.oct-body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f5f1e8;
    overflow-x: hidden;
    background: radial-gradient(circle at 8% 20%, rgba(61, 125, 43, 0.40), transparent 22%), radial-gradient(circle at 85% 18%, rgba(160, 88, 145, 0.12), transparent 24%), linear-gradient(115deg, #091009 0%, #132014 18%, #1a1118 42%, #34152f 70%, #7f4c7c 100%);
}

.oct-site-main {
    width: 100%;
    min-height: 100vh;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    display: block;
}

a {
    transition: all 0.3s ease;
}


/* ============================================================
   OLD CITY TRAVEL - VARIABLES
============================================================ */
:root {
    --oct-primary: #d8c15f;
    --oct-primary-soft: #f0dc85;
    --oct-dark: #120d12;
    --oct-dark-soft: #1b1418;
    --oct-green: #3d7d2b;
    --oct-green-soft: #66a34f;
    --oct-magenta: #7e2d6d;
    --oct-white: #ffffff;
    --oct-text: #f5f1e8;
    --oct-text-muted: rgba(255, 255, 255, 0.78);
    --oct-border: rgba(255, 255, 255, 0.12);
    --oct-shadow: 0 20px 60px rgba(0, 0, 0, 0.30);
    --oct-radius-xl: 28px;
    --oct-radius-lg: 20px;
    --oct-radius-md: 14px;
    --oct-container: 1280px;
}


/* ============================================================
   OLD CITY TRAVEL - UTILIDADES GENERALES
============================================================ */
.oct-container {
    width: min(100% - 32px, var(--oct-container));
    margin: 0 auto;
}

.oct-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

    .oct-btn:hover {
        transform: translateY(-2px);
    }

.oct-btn-primary {
    background: linear-gradient(135deg, var(--oct-primary), var(--oct-primary-soft));
    color: #2d1c05;
    box-shadow: 0 12px 30px rgba(216, 193, 95, 0.28);
}

    .oct-btn-primary:hover {
        color: #2d1c05;
    }

.oct-btn-secondary {
    background: rgba(255, 255, 255, 0.07);
    color: var(--oct-white);
    border-color: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
}

    .oct-btn-secondary:hover {
        color: var(--oct-white);
        background: rgba(255, 255, 255, 0.12);
    }

.oct-section-heading {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 48px;
}

.oct-section-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(216, 193, 95, 0.12);
    border: 1px solid rgba(216, 193, 95, 0.22);
    color: var(--oct-primary);
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.oct-section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1.12;
    margin-bottom: 16px;
    color: var(--oct-white);
}

.oct-section-heading p {
    color: var(--oct-text-muted);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 0;
}


/* ============================================================
   OLD CITY TRAVEL - HEADER / NAVBAR
============================================================ */
.oct-header {
    position: relative;
}

.oct-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(90deg, rgba(7, 26, 12, 0.98) 0%, rgba(11, 32, 18, 0.96) 22%, rgba(18, 16, 18, 0.96) 52%, rgba(41, 14, 35, 0.97) 78%, rgba(88, 33, 82, 0.96) 100%);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(255,255,255,0.02) inset;
}

    .oct-navbar::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent 55%);
        pointer-events: none;
    }

    .oct-navbar::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 2px;
        background: linear-gradient(90deg, rgba(61,125,43,0.90), rgba(216,193,95,0.45), rgba(126,45,109,0.90));
        opacity: 0.95;
    }

.oct-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-height: 92px;
    position: relative;
}

.oct-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
    min-width: 0;
}

.oct-brand-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.30), 0 0 0 1px rgba(255,255,255,0.06);
}

.oct-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.oct-brand-title {
    color: var(--oct-primary);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.oct-brand-subtitle {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.96rem;
    font-weight: 500;
}

.oct-nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

    .oct-nav-links > a:not(.oct-btn-whatsapp) {
        position: relative;
        color: var(--oct-white);
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        padding: 6px 0;
    }

        .oct-nav-links > a:not(.oct-btn-whatsapp)::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0;
            height: 2px;
            border-radius: 999px;
            background: linear-gradient(90deg, var(--oct-green-soft), var(--oct-primary));
            transition: width 0.3s ease;
        }

        .oct-nav-links > a:not(.oct-btn-whatsapp):hover {
            color: var(--oct-primary);
        }

            .oct-nav-links > a:not(.oct-btn-whatsapp):hover::after {
                width: 100%;
            }

.oct-social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .oct-social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: var(--oct-white);
        transition: all 0.3s ease;
    }

.oct-social-links-desktop {
    margin-left: auto;
}

    .oct-social-links-desktop a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.12);
        backdrop-filter: blur(10px);
        font-size: 1.05rem;
    }

        .oct-social-links-desktop a:hover {
            color: var(--oct-primary);
            background: rgba(255,255,255,0.12);
            border-color: rgba(216,193,95,0.24);
            transform: translateY(-2px);
        }

.oct-mobile-actions {
    display: none;
    align-items: center;
    gap: 12px;
}

.oct-social-links-mobile-top {
    display: none;
    align-items: center;
    gap: 8px;
}

    .oct-social-links-mobile-top a {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.12);
        backdrop-filter: blur(10px);
        font-size: 1rem;
    }

        .oct-social-links-mobile-top a:hover {
            color: var(--oct-primary);
            background: rgba(255,255,255,0.12);
        }

.oct-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #20d767, #12c85b);
    color: #ffffff !important;
    padding: 0 22px;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.26), 0 0 20px rgba(37, 211, 102, 0.12);
}

    .oct-btn-whatsapp:hover {
        background: linear-gradient(135deg, #1dc861, #11b753);
        transform: translateY(-2px);
    }

    .oct-btn-whatsapp i {
        font-size: 1rem;
    }

.oct-menu-toggle {
    display: none;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 14px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

    .oct-menu-toggle:hover {
        background: rgba(255,255,255,0.14);
    }

    .oct-menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--oct-white);
        margin: 0 auto;
        border-radius: 999px;
    }


/* ============================================================
   OLD CITY TRAVEL - NAVBAR RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
    .oct-navbar-inner {
        gap: 16px;
    }

    .oct-nav-links {
        gap: 16px;
    }

        .oct-nav-links > a:not(.oct-btn-whatsapp) {
            font-size: 0.95rem;
        }

    .oct-social-links-desktop a {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 900px) {
    .oct-social-links-desktop {
        display: none;
    }

    .oct-mobile-actions {
        display: flex;
        margin-left: auto;
    }

    .oct-social-links-mobile-top {
        display: flex;
    }

    .oct-menu-toggle {
        display: flex;
        flex-shrink: 0;
    }

    .oct-nav-links {
        position: absolute;
        top: calc(100% + 14px);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 18px;
        border-radius: 22px;
        background: linear-gradient(180deg, rgba(9, 20, 10, 0.98) 0%, rgba(20, 12, 18, 0.98) 100%);
        border: 1px solid rgba(255, 255, 255, 0.10);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255,255,255,0.03) inset;
        backdrop-filter: blur(16px);
    }

        .oct-nav-links.active {
            display: flex;
        }

        .oct-nav-links > a:not(.oct-btn-whatsapp) {
            width: 100%;
            padding: 10px 4px;
            font-size: 1rem;
        }

            .oct-nav-links > a:not(.oct-btn-whatsapp)::after {
                display: none;
            }

    .oct-btn-whatsapp {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .oct-navbar {
        background: linear-gradient(90deg, rgba(8, 28, 12, 0.99) 0%, rgba(13, 34, 18, 0.98) 24%, rgba(20, 16, 18, 0.98) 55%, rgba(54, 19, 45, 0.98) 100%);
    }

    .oct-navbar-inner {
        min-height: 82px;
    }

    .oct-brand-logo {
        width: 58px;
        height: 58px;
        border-radius: 14px;
    }

    .oct-brand-title {
        font-size: 1rem;
    }

    .oct-brand-subtitle {
        font-size: 0.88rem;
    }

    .oct-social-links-mobile-top a {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }
}

@media (max-width: 576px) {
    .oct-navbar-inner {
        min-height: 78px;
    }

    .oct-brand {
        gap: 10px;
    }

    .oct-brand-logo {
        width: 56px;
        height: 56px;
        border-radius: 14px;
    }

    .oct-brand-title {
        font-size: 0.92rem;
        letter-spacing: 0.04em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 165px;
    }

    .oct-brand-subtitle {
        font-size: 0.82rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 165px;
    }

    .oct-mobile-actions {
        gap: 8px;
    }

    .oct-social-links-mobile-top {
        gap: 6px;
    }

        .oct-social-links-mobile-top a {
            width: 34px;
            height: 34px;
            border-radius: 9px;
            font-size: 0.9rem;
        }

    .oct-menu-toggle {
        width: 46px;
        height: 46px;
        border-radius: 12px;
    }

    .oct-nav-links {
        left: 12px;
        right: 12px;
        top: calc(100% + 10px);
        padding: 16px;
        border-radius: 18px;
    }
}

/* ============================================================
   OLD CITY TRAVEL - HERO
============================================================ */
.oct-hero {
    position: relative;
    padding: 78px 0 105px;
    overflow: hidden;
}

    .oct-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(rgba(10, 14, 10, 0.54), rgba(20, 11, 18, 0.68)), url('/img/hero/hero-bg.jpg') center/cover no-repeat;
        opacity: 0.42;
        z-index: 0;
    }

.oct-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 18%, rgba(61, 125, 43, 0.24), transparent 28%), radial-gradient(circle at 88% 20%, rgba(126, 45, 109, 0.16), transparent 28%), radial-gradient(circle at 50% 100%, rgba(216, 193, 95, 0.10), transparent 30%);
    z-index: 1;
}

.oct-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 56px;
}

.oct-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(216, 193, 95, 0.18);
    backdrop-filter: blur(10px);
    color: var(--oct-primary);
    font-weight: 700;
    font-size: 0.92rem;
}

.oct-hero-text h1 {
    font-size: clamp(2.7rem, 5vw, 5.2rem);
    line-height: 1.02;
    font-weight: 800;
    color: var(--oct-white);
    margin: 22px 0 20px;
    max-width: 760px;
}

.oct-hero-text p {
    font-size: 1.08rem;
    line-height: 1.9;
    color: var(--oct-text-muted);
    max-width: 720px;
    margin-bottom: 28px;
}

.oct-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.oct-hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.oct-highlight-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(12px);
    border-radius: var(--oct-radius-lg);
    padding: 18px;
    box-shadow: var(--oct-shadow);
}

    .oct-highlight-card strong {
        display: block;
        color: var(--oct-primary);
        margin-bottom: 8px;
        font-size: 1rem;
    }

    .oct-highlight-card span {
        color: var(--oct-text-muted);
        font-size: 0.95rem;
        line-height: 1.6;
    }


/* ============================================================
   OLD CITY TRAVEL - HERO IMAGE PREMIUM
============================================================ */
.oct-hero-media {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.oct-hero-card {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 32px;
    overflow: visible;
    padding: 10px;
    background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    isolation: isolate;
    transform: perspective(1400px) rotateY(-2deg) rotateX(1deg);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255,255,255,0.04) inset, 0 0 35px rgba(255,255,255,0.10), 0 0 90px rgba(255,255,255,0.06);
}

    .oct-hero-card::before {
        content: "";
        position: absolute;
        inset: -18px;
        border-radius: 42px;
        background: radial-gradient(circle, rgba(255,255,255,0.24) 0%, rgba(255,255,255,0.10) 30%, rgba(255,255,255,0.00) 72%);
        filter: blur(18px);
        z-index: -2;
        pointer-events: none;
    }

    .oct-hero-card::after {
        content: "";
        position: absolute;
        inset: -35px;
        border-radius: 48px;
        background: radial-gradient(circle at 30% 30%, rgba(216,193,95,0.16), transparent 40%), radial-gradient(circle at 75% 20%, rgba(255,255,255,0.10), transparent 30%), radial-gradient(circle at 50% 85%, rgba(61,125,43,0.16), transparent 38%);
        filter: blur(24px);
        z-index: -3;
        pointer-events: none;
    }

    .oct-hero-card:hover {
        transform: perspective(1400px) rotateY(0deg) rotateX(0deg) translateY(-4px);
        box-shadow: 0 36px 90px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(255,255,255,0.05) inset, 0 0 42px rgba(255,255,255,0.14), 0 0 100px rgba(255,255,255,0.08);
    }

    .oct-hero-card img {
        width: 100%;
        height: 610px;
        object-fit: cover;
        border-radius: 26px;
        position: relative;
        z-index: 2;
        filter: saturate(1.04) contrast(1.02) brightness(1.01);
        box-shadow: 0 18px 40px rgba(0,0,0,0.28), 0 0 0 1px rgba(255,255,255,0.08);
    }


/* ============================================================
   OLD CITY TRAVEL - SERVICES PREVIEW
============================================================ */
.oct-services-preview {
    position: relative;
    padding: 90px 0;
}

.oct-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.oct-service-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--oct-radius-xl);
    padding: 30px 26px;
    box-shadow: var(--oct-shadow);
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

    .oct-service-card:hover {
        transform: translateY(-6px);
        border-color: rgba(216, 193, 95, 0.28);
    }

.oct-service-icon {
    width: 66px;
    height: 66px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(61, 125, 43, 0.22), rgba(216, 193, 95, 0.20));
    color: var(--oct-primary);
    font-size: 1.6rem;
}

.oct-service-card h3 {
    color: var(--oct-white);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.oct-service-card p {
    color: var(--oct-text-muted);
    line-height: 1.8;
    margin-bottom: 0;
}

/* ============================================================
   OLD CITY TRAVEL - SHUTTLE / TRASLADOS
============================================================ */
.oct-shuttle-section {
    position: relative;
    padding: 100px 0;
}

    .oct-shuttle-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 15% 20%, rgba(61,125,43,0.10), transparent 24%), radial-gradient(circle at 85% 15%, rgba(126,45,109,0.10), transparent 24%);
        pointer-events: none;
    }

.oct-section-heading-left {
    text-align: left;
    max-width: 860px;
    margin: 0 0 34px;
}

.oct-shuttle-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 34px;
    padding: 20px 24px;
    border-radius: 24px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(12px);
    box-shadow: var(--oct-shadow);
}

.oct-shuttle-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.oct-shuttle-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    color: var(--oct-white);
    font-weight: 600;
    font-size: 0.95rem;
}

    .oct-shuttle-pill i {
        color: var(--oct-primary);
    }

.oct-shuttle-cta-top {
    flex-shrink: 0;
}

.oct-shuttle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.oct-shuttle-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 28px 24px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.05) 100%);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(14px);
    box-shadow: var(--oct-shadow);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
}

    .oct-shuttle-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right, rgba(216,193,95,0.10), transparent 26%), radial-gradient(circle at bottom left, rgba(61,125,43,0.10), transparent 22%);
        pointer-events: none;
    }

    .oct-shuttle-card:hover {
        transform: translateY(-8px);
        border-color: rgba(216,193,95,0.22);
        box-shadow: 0 26px 60px rgba(0,0,0,0.34);
    }

.oct-shuttle-card-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.oct-shuttle-route-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(61,125,43,0.24), rgba(216,193,95,0.22));
    color: var(--oct-primary);
    font-size: 1.45rem;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.oct-shuttle-card-head h3 {
    margin: 0 0 6px;
    color: var(--oct-white);
    font-size: 1.28rem;
    line-height: 1.3;
}

.oct-shuttle-card-head p {
    margin: 0;
    color: var(--oct-text-muted);
    line-height: 1.6;
    font-size: 0.96rem;
}

.oct-shuttle-card-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.oct-shuttle-price-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 22px;
}

.oct-price-box {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    text-align: center;
}

    .oct-price-box span {
        display: block;
        margin-bottom: 6px;
        color: var(--oct-primary);
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.08em;
    }

    .oct-price-box strong {
        display: block;
        color: var(--oct-white);
        font-size: 1.55rem;
        line-height: 1.1;
    }

.oct-shuttle-features {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: grid;
    gap: 12px;
}

    .oct-shuttle-features li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        color: var(--oct-text-muted);
        line-height: 1.65;
        font-size: 0.96rem;
    }

    .oct-shuttle-features i {
        color: var(--oct-primary);
        margin-top: 3px;
        flex-shrink: 0;
    }

.oct-shuttle-btn {
    position: relative;
    z-index: 2;
    width: 100%;
}

.oct-shuttle-footer-box {
    margin-top: 38px;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(61,125,43,0.12), rgba(126,45,109,0.10));
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: var(--oct-shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.oct-shuttle-footer-text h3 {
    margin: 0 0 10px;
    color: var(--oct-white);
    font-size: 1.45rem;
}

.oct-shuttle-footer-text p {
    margin: 0;
    color: var(--oct-text-muted);
    line-height: 1.8;
    max-width: 760px;
}


/* ============================================================
   OLD CITY TRAVEL - SHUTTLE RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
    .oct-shuttle-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .oct-shuttle-topbar,
    .oct-shuttle-footer-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .oct-shuttle-section {
        padding: 80px 0;
    }

    .oct-shuttle-grid {
        grid-template-columns: 1fr;
    }

    .oct-section-heading-left {
        text-align: center;
        margin: 0 auto 30px;
    }

    .oct-shuttle-topbar {
        padding: 18px;
    }

    .oct-shuttle-info {
        width: 100%;
    }

    .oct-shuttle-pill {
        width: 100%;
        justify-content: center;
    }

    .oct-shuttle-cta-top {
        width: 100%;
    }

    .oct-shuttle-footer-box {
        padding: 22px;
    }

    .oct-shuttle-footer-text h3 {
        font-size: 1.25rem;
    }

    .oct-shuttle-footer-box .oct-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .oct-shuttle-card {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .oct-shuttle-card-head {
        gap: 12px;
    }

    .oct-shuttle-route-icon {
        width: 54px;
        height: 54px;
        border-radius: 16px;
        font-size: 1.2rem;
    }

    .oct-shuttle-card-head h3 {
        font-size: 1.1rem;
    }

    .oct-price-box strong {
        font-size: 1.3rem;
    }

    .oct-shuttle-footer-box {
        border-radius: 22px;
    }
}

/* ============================================================
   OLD CITY TRAVEL - SHUTTLE BADGE PRIVADO / PRIVATE
============================================================ */
.oct-shuttle-pill-private {
    background: linear-gradient(135deg, rgba(216,193,95,0.16), rgba(61,125,43,0.16));
    border: 1px solid rgba(216,193,95,0.28);
    color: #fff3bf;
}

.oct-shuttle-card-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.oct-shuttle-private-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    padding: 7px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(216,193,95,0.18), rgba(61,125,43,0.18));
    border: 1px solid rgba(216,193,95,0.28);
    color: #fff1b8;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 22px rgba(0,0,0,0.10);
}

    .oct-shuttle-private-badge i {
        font-size: 0.85rem;
    }

.oct-shuttle-route-subtitle {
    margin: 0;
    color: rgba(255,255,255,0.74);
    line-height: 1.6;
}

.oct-shuttle-description {
    margin: 0 0 18px;
    display: grid;
    gap: 8px;
    color: rgba(255,255,255,0.80);
    line-height: 1.8;
    font-size: 0.95rem;
}

    .oct-shuttle-description span {
        display: block;
    }

        .oct-shuttle-description span:last-child {
            color: rgba(255,255,255,0.62);
            font-size: 0.90rem;
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 8px;
        }


/* ============================================================
   OLD CITY TRAVEL - SHUTTLE RESPONSIVE AJUSTES
============================================================ */
@media (max-width: 768px) {
    .oct-shuttle-private-badge {
        font-size: 0.78rem;
        padding: 6px 10px;
    }

    .oct-shuttle-description {
        font-size: 0.92rem;
    }
}

@media (max-width: 576px) {
    .oct-shuttle-card-title-wrap {
        width: 100%;
    }

    .oct-shuttle-private-badge {
        width: fit-content;
    }

    .oct-shuttle-description {
        gap: 10px;
    }
}

/* ============================================================
   OLD CITY TRAVEL - WHATSAPP FLOAT
============================================================ */
.oct-whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    text-decoration: none;
    background: #25d366;
    color: #fff;
    font-weight: 800;
    box-shadow: 0 16px 32px rgba(37, 211, 102, 0.28);
}

    .oct-whatsapp-float:hover {
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 20px 36px rgba(37, 211, 102, 0.35);
    }

    .oct-whatsapp-float i {
        font-size: 1.3rem;
    }


/* ============================================================
   OLD CITY TRAVEL - RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
    .oct-hero-content {
        grid-template-columns: 1fr;
    }

    .oct-hero-card {
        max-width: 560px;
        transform: none;
    }

        .oct-hero-card:hover {
            transform: translateY(-4px);
        }

        .oct-hero-card img {
            height: 460px;
        }

    .oct-hero-highlights {
        grid-template-columns: 1fr;
    }

    .oct-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .oct-menu-toggle {
        display: flex;
    }

    .oct-nav-links {
        position: absolute;
        top: calc(100% + 1px);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 18px;
        border-radius: 20px;
        background: rgba(15, 10, 14, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.10);
        box-shadow: var(--oct-shadow);
    }

        .oct-nav-links.active {
            display: flex;
        }

        .oct-nav-links a {
            width: 100%;
        }

    .oct-btn-whatsapp {
        justify-content: center;
    }

    .oct-brand-text {
        display: none;
    }
}

@media (max-width: 768px) {
    .oct-hero {
        padding: 62px 0 78px;
    }

    .oct-hero-text h1 {
        font-size: 2.35rem;
    }

    .oct-hero-text p {
        font-size: 1rem;
    }

    .oct-hero-card {
        padding: 8px;
        border-radius: 26px;
    }

        .oct-hero-card::before {
            inset: -12px;
            border-radius: 32px;
        }

        .oct-hero-card::after {
            inset: -20px;
            border-radius: 34px;
        }

        .oct-hero-card img {
            height: 360px;
            border-radius: 20px;
        }

    .oct-whatsapp-float span {
        display: none;
    }

    .oct-whatsapp-float {
        width: 58px;
        height: 58px;
        justify-content: center;
        padding: 0;
        border-radius: 50%;
    }
}

@media (max-width: 576px) {
    .oct-navbar-inner {
        min-height: 76px;
    }

    .oct-brand-logo {
        width: 50px;
        height: 50px;
    }

    .oct-hero-actions {
        flex-direction: column;
    }

    .oct-btn {
        width: 100%;
    }

    .oct-service-card {
        padding: 24px 20px;
    }

    .oct-hero-card img {
        height: 320px;
    }
}

/* ============================================================
   OLD CITY TRAVEL - TOURS / PACKAGES
============================================================ */
.oct-tours-section {
    position: relative;
    padding: 100px 0;
}

    .oct-tours-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 12% 18%, rgba(216,193,95,0.14), transparent 24%), radial-gradient(circle at 88% 20%, rgba(102,163,79,0.12), transparent 24%);
        pointer-events: none;
    }

.oct-section-tag-tours {
    background: rgba(61, 125, 43, 0.14);
    border: 1px solid rgba(61, 125, 43, 0.24);
    color: #dff1b9;
}

.oct-tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.oct-tour-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(248,241,220,0.06) 100%);
    border: 1px solid rgba(216,193,95,0.12);
    box-shadow: 0 22px 55px rgba(0,0,0,0.28);
    backdrop-filter: blur(12px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

    .oct-tour-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 28px 65px rgba(0,0,0,0.34);
        border-color: rgba(216,193,95,0.26);
    }

.oct-tour-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

    .oct-tour-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.45s ease;
    }

.oct-tour-card:hover .oct-tour-image img {
    transform: scale(1.05);
}

.oct-tour-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.42), rgba(10,10,10,0.04));
}

.oct-tour-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
}

.oct-tour-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px 22px 22px;
}

    .oct-tour-content h3 {
        margin: 0 0 16px;
        color: var(--oct-white);
        font-size: 1.28rem;
    }

.oct-tour-lang {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

    .oct-tour-lang p {
        margin: 0;
        color: var(--oct-text-muted);
        line-height: 1.8;
        font-size: 0.95rem;
    }

    .oct-tour-lang strong {
        color: var(--oct-primary);
    }

.oct-tour-prices {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: auto;
    margin-bottom: 20px;
}

.oct-tour-price {
    padding: 14px 16px;
    border-radius: 18px;
    text-align: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
}

    .oct-tour-price span {
        display: block;
        color: #dff1b9;
        font-size: 0.82rem;
        font-weight: 700;
        margin-bottom: 6px;
        letter-spacing: 0.08em;
    }

    .oct-tour-price strong {
        display: block;
        color: var(--oct-white);
        font-size: 1.3rem;
        line-height: 1.1;
    }

.oct-btn-tour {
    width: 100%;
    background: linear-gradient(135deg, rgba(61,125,43,0.92), rgba(125,155,56,0.92));
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 12px 28px rgba(61,125,43,0.22);
}

    .oct-btn-tour:hover {
        color: #ffffff;
        background: linear-gradient(135deg, rgba(56,112,39,0.96), rgba(110,142,45,0.96));
    }


/* ============================================================
   OLD CITY TRAVEL - TOURS RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
    .oct-tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .oct-tours-section {
        padding: 80px 0;
    }

    .oct-tours-grid {
        grid-template-columns: 1fr;
    }

    .oct-tour-image {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .oct-tour-card {
        border-radius: 24px;
    }

    .oct-tour-content {
        padding: 20px 18px 18px;
    }

        .oct-tour-content h3 {
            font-size: 1.12rem;
        }

    .oct-tour-price strong {
        font-size: 1.15rem;
    }
}

/* ============================================================
   OLD CITY TRAVEL - TESTIMONIOS + GALERIA
============================================================ */
.oct-testimonials-section {
    position: relative;
    padding: 105px 0;
    background: radial-gradient(circle at 14% 18%, rgba(92, 164, 88, 0.10), transparent 24%), radial-gradient(circle at 85% 20%, rgba(183, 109, 168, 0.12), transparent 24%), linear-gradient(135deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
}

    .oct-testimonials-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent 18%, transparent 82%, rgba(255,255,255,0.02));
        pointer-events: none;
    }

.oct-section-tag-testimonials {
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff8cf;
    box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

.oct-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-bottom: 70px;
}

.oct-testimonial-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px 26px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.09) 100%);
    border: 1px solid rgba(255,255,255,0.16);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.04) inset;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    overflow: hidden;
}

    .oct-testimonial-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right, rgba(216,193,95,0.10), transparent 24%), radial-gradient(circle at bottom left, rgba(61,125,43,0.10), transparent 20%);
        pointer-events: none;
    }

    .oct-testimonial-card:hover {
        transform: translateY(-8px);
        border-color: rgba(216,193,95,0.24);
        box-shadow: 0 26px 60px rgba(0,0,0,0.24), 0 0 0 1px rgba(255,255,255,0.05) inset;
    }

.oct-testimonial-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 18px;
    color: var(--oct-primary);
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.oct-testimonial-text {
    margin: 0 0 24px;
    color: rgba(255,255,255,0.92);
    line-height: 1.92;
    font-size: 0.98rem;
    flex: 1;
    position: relative;
    z-index: 2;
}

.oct-testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 2;
}

    .oct-testimonial-author strong {
        color: var(--oct-white);
        font-size: 1.02rem;
    }

    .oct-testimonial-author span {
        color: rgba(255,255,255,0.72);
        font-size: 0.92rem;
    }

.oct-gallery-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 38px;
}

    .oct-gallery-header h3 {
        margin: 0 0 14px;
        color: var(--oct-white);
        font-size: clamp(1.95rem, 3vw, 2.85rem);
        line-height: 1.15;
    }

    .oct-gallery-header p {
        margin: 0;
        color: rgba(255,255,255,0.80);
        line-height: 1.85;
    }

.oct-section-tag-gallery {
    background: rgba(110, 171, 94, 0.16);
    border: 1px solid rgba(110, 171, 94, 0.22);
    color: #ecffd8;
    margin-bottom: 14px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

.oct-gallery-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
    gap: 18px;
    align-items: stretch;
}

.oct-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.06));
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 18px 45px rgba(0,0,0,0.16), 0 0 0 1px rgba(255,255,255,0.03) inset;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

    .oct-gallery-item:hover {
        transform: translateY(-4px);
        border-color: rgba(216,193,95,0.22);
        box-shadow: 0 22px 50px rgba(0,0,0,0.22), 0 0 0 1px rgba(255,255,255,0.04) inset;
    }

    .oct-gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.45s ease;
    }

    .oct-gallery-item::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(10,10,10,0.10), rgba(10,10,10,0.02));
        pointer-events: none;
    }

    .oct-gallery-item:hover img {
        transform: scale(1.04);
    }

.oct-gallery-item-lg {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.oct-gallery-item-wide {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}


/* ============================================================
   OLD CITY TRAVEL - TESTIMONIOS + GALERIA RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
    .oct-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .oct-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 250px 250px 250px 250px;
    }

    .oct-gallery-item-lg {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }

    .oct-gallery-item-wide {
        grid-column: 1 / 3;
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .oct-testimonials-section {
        padding: 82px 0;
    }

    .oct-testimonial-card {
        padding: 24px 20px;
        border-radius: 24px;
    }

    .oct-gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-rows: 240px;
    }

    .oct-gallery-item,
    .oct-gallery-item-lg,
    .oct-gallery-item-wide {
        grid-column: auto;
        grid-row: auto;
        border-radius: 22px;
    }

    .oct-gallery-header h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .oct-testimonial-text {
        font-size: 0.95rem;
        line-height: 1.85;
    }

    .oct-gallery-header h3 {
        font-size: 1.55rem;
    }

    .oct-gallery-item,
    .oct-gallery-item-lg,
    .oct-gallery-item-wide {
        border-radius: 20px;
    }
}

/* ============================================================
   OLD CITY TRAVEL - NOSOTROS
============================================================ */
.oct-about-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
}

    .oct-about-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 12% 18%, rgba(61,125,43,0.10), transparent 24%), radial-gradient(circle at 88% 16%, rgba(216,193,95,0.10), transparent 22%);
        pointer-events: none;
    }

.oct-section-tag-about {
    background: rgba(216,193,95,0.12);
    border: 1px solid rgba(216,193,95,0.22);
    color: var(--oct-primary);
}

.oct-about-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 48px;
    align-items: center;
}

.oct-about-content h2 {
    margin: 18px 0 20px;
    color: var(--oct-white);
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.12;
}

.oct-about-content p {
    color: var(--oct-text-muted);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 18px;
}

.oct-about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 30px 0 34px;
}

.oct-about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(12px);
    box-shadow: var(--oct-shadow);
}

    .oct-about-feature i {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(61,125,43,0.20), rgba(216,193,95,0.18));
        color: #f4edba;
        font-size: 1.08rem;
        box-shadow: 0 10px 22px rgba(0,0,0,0.10);
    }

    .oct-about-feature strong {
        display: block;
        color: var(--oct-white);
        margin-bottom: 6px;
        font-size: 1rem;
    }

    .oct-about-feature span {
        color: var(--oct-text-muted);
        line-height: 1.7;
        font-size: 0.93rem;
    }

.oct-about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}


/* ============================================================
   OLD CITY TRAVEL - NOSOTROS COLLAGE PREMIUM
============================================================ */
.oct-about-media {
    position: relative;
}

.oct-about-collage {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 72px;
    gap: 16px;
    min-height: 760px;
}

.oct-about-photo {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 22px 55px rgba(0,0,0,0.28);
}

    .oct-about-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.45s ease;
    }

    .oct-about-photo:hover img {
        transform: scale(1.05);
    }

    .oct-about-photo::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(10,10,10,0.30), rgba(10,10,10,0.03));
        pointer-events: none;
        z-index: 1;
    }

.oct-about-photo-main {
    grid-column: 1 / 13;
    grid-row: 1 / 5;
}

.oct-about-photo-1 {
    grid-column: 1 / 4;
    grid-row: 5 / 10;
}

.oct-about-photo-2 {
    grid-column: 4 / 7;
    grid-row: 5 / 10;
}

.oct-about-photo-3 {
    grid-column: 7 / 10;
    grid-row: 5 / 10;
}

.oct-about-photo-4 {
    grid-column: 10 / 13;
    grid-row: 5 / 10;
}

.oct-about-photo-5 {
    grid-column: 1 / 5;
    grid-row: 10 / 14;
}

.oct-about-photo-6 {
    grid-column: 5 / 9;
    grid-row: 10 / 14;
}

.oct-about-photo-7 {
    grid-column: 9 / 13;
    grid-row: 10 / 14;
}


/* ============================================================
   OLD CITY TRAVEL - OVERLAYS Y TAGS
============================================================ */
.oct-about-photo-overlay {
    position: absolute;
    top: 22px;
    left: 22px;
    bottom: auto;
    z-index: 2;
    max-width: 760px;
    padding: 14px 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(25,20,29,0.72), rgba(18,28,19,0.58));
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 34px rgba(0,0,0,0.14);
}

    .oct-about-photo-overlay span {
        display: inline-block;
        margin-bottom: 6px;
        color: #f5df95;
        font-size: 0.82rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .oct-about-photo-overlay strong {
        display: block;
        color: #ffffff;
        font-size: 0.96rem;
        line-height: 1.35;
        font-weight: 700;
        white-space: nowrap;
    }

.oct-about-mini-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(25, 27, 28, 0.55);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(12px);
    color: #fff4bf;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}

    .oct-about-mini-tag i {
        color: #f0d77e;
        font-size: 0.8rem;
    }

.oct-about-floating-card {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 3;
    max-width: 300px;
    padding: 18px 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(24,16,27,0.84), rgba(33,20,39,0.72));
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 36px rgba(0,0,0,0.18);
}

.oct-about-floating-label {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(216,193,95,0.14);
    border: 1px solid rgba(216,193,95,0.22);
    color: #f7e6a7;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.oct-about-floating-card h3 {
    margin: 0 0 10px;
    color: var(--oct-white);
    font-size: 1.12rem;
    line-height: 1.4;
}

.oct-about-floating-card p {
    margin: 0;
    color: rgba(255,255,255,0.78);
    line-height: 1.8;
    font-size: 0.93rem;
}


/* ============================================================
   OLD CITY TRAVEL - NOSOTROS RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
    .oct-about-grid {
        grid-template-columns: 1fr;
    }

    .oct-about-content {
        order: 1;
    }

    .oct-about-media {
        order: 2;
    }

    .oct-about-collage {
        min-height: 720px;
    }
}

@media (max-width: 768px) {
    .oct-about-section {
        padding: 85px 0;
    }

    .oct-about-features {
        grid-template-columns: 1fr;
    }

    .oct-about-collage {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 130px;
        min-height: auto;
    }

    .oct-about-photo-main {
        grid-column: 1 / 3;
        grid-row: span 2;
    }

    .oct-about-photo-1,
    .oct-about-photo-2,
    .oct-about-photo-3,
    .oct-about-photo-4,
    .oct-about-photo-5,
    .oct-about-photo-6,
    .oct-about-photo-7 {
        grid-column: auto;
        grid-row: span 2;
    }

    .oct-about-photo-overlay {
        top: 14px;
        left: 14px;
        right: 14px;
        bottom: auto;
        max-width: none;
        padding: 13px 14px;
        border-radius: 18px;
    }

    .oct-about-floating-card {
        position: static;
        max-width: 100%;
        margin-top: 8px;
    }
}

@media (max-width: 576px) {
    .oct-about-content h2 {
        font-size: 1.9rem;
    }

    .oct-about-actions {
        flex-direction: column;
    }

        .oct-about-actions .oct-btn {
            width: 100%;
        }

    .oct-about-feature {
        padding: 16px;
        border-radius: 18px;
    }

        .oct-about-feature i {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            font-size: 1rem;
        }

    .oct-about-collage {
        gap: 12px;
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .oct-about-photo,
    .oct-about-photo-main,
    .oct-about-photo-1,
    .oct-about-photo-2,
    .oct-about-photo-3,
    .oct-about-photo-4,
    .oct-about-photo-5,
    .oct-about-photo-6,
    .oct-about-photo-7 {
        grid-column: auto;
        grid-row: auto;
        border-radius: 20px;
    }

    .oct-about-photo-main {
        height: 220px;
    }

    .oct-about-photo-overlay {
        top: 12px;
        left: 12px;
        right: 12px;
        bottom: auto;
        max-width: none;
        padding: 10px 12px;
        border-radius: 16px;
    }

        .oct-about-photo-overlay strong {
            font-size: 0.84rem;
            line-height: 1.35;
            white-space: normal;
        }

    .oct-about-mini-tag {
        top: 12px;
        left: 12px;
        font-size: 0.74rem;
        padding: 7px 10px;
    }

    .oct-about-floating-card {
        padding: 16px;
        border-radius: 20px;
    }

        .oct-about-floating-card h3 {
            font-size: 1.02rem;
        }

        .oct-about-floating-card p {
            font-size: 0.9rem;
        }

    .oct-about-photo-overlay span {
        margin-bottom: 4px;
        font-size: 0.68rem;
        letter-spacing: 0.03em;
    }
}

/* ============================================================
   OLD CITY TRAVEL - CONTACTO
============================================================ */
.oct-contact-section {
    position: relative;
    padding: 110px 0 90px;
    background: radial-gradient(circle at 12% 18%, rgba(61,125,43,0.20), transparent 24%), radial-gradient(circle at 86% 18%, rgba(111, 61, 107, 0.10), transparent 22%), linear-gradient(135deg, rgba(84, 142, 69, 0.08), rgba(255,255,255,0.02));
}

    .oct-contact-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent 20%, transparent 80%, rgba(255,255,255,0.02));
        pointer-events: none;
    }

.oct-section-tag-contact {
    background: rgba(89, 165, 86, 0.18);
    border: 1px solid rgba(89, 165, 86, 0.24);
    color: #ecffd8;
    box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

.oct-contact-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 34px;
    align-items: stretch;
}

.oct-contact-content,
.oct-contact-highlight-card {
    position: relative;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.08) 100%);
    border: 1px solid rgba(255,255,255,0.16);
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 55px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.04) inset;
    overflow: hidden;
}

.oct-contact-content {
    padding: 34px 32px;
}

    .oct-contact-content::before,
    .oct-contact-highlight-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right, rgba(216,193,95,0.10), transparent 22%), radial-gradient(circle at bottom left, rgba(61,125,43,0.12), transparent 24%);
        pointer-events: none;
    }

    .oct-contact-content h2 {
        position: relative;
        z-index: 2;
        margin: 18px 0 18px;
        color: var(--oct-white);
        font-size: clamp(2rem, 4vw, 3.2rem);
        line-height: 1.12;
    }

.oct-contact-intro {
    position: relative;
    z-index: 2;
    margin: 0 0 28px;
    color: rgba(255,255,255,0.84);
    line-height: 1.9;
    font-size: 1rem;
}

.oct-contact-cards {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 18px;
    margin-bottom: 28px;
}

.oct-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 20px;
    border-radius: 24px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 14px 32px rgba(0,0,0,0.10);
}

.oct-contact-card-address {
    align-items: flex-start;
}

.oct-contact-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(61,125,43,0.22), rgba(216,193,95,0.18));
    color: #f4edba;
    font-size: 1.3rem;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.oct-contact-info h3 {
    margin: 0 0 8px;
    color: var(--oct-white);
    font-size: 1.15rem;
}

.oct-contact-info p {
    margin: 0 0 10px;
    color: rgba(255,255,255,0.78);
    line-height: 1.8;
}

.oct-contact-link {
    color: #dff7cb;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

    .oct-contact-link:hover {
        color: var(--oct-primary);
    }

.oct-contact-actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.oct-btn-contact-primary,
.oct-btn-contact-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.oct-btn-contact-primary {
    background: linear-gradient(135deg, #20d767, #12c85b);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.22), 0 0 20px rgba(37, 211, 102, 0.08);
}

    .oct-btn-contact-primary:hover {
        color: #ffffff;
        background: linear-gradient(135deg, #1dc861, #11b753);
    }

.oct-btn-contact-secondary {
    background: rgba(255,255,255,0.10);
    color: var(--oct-white);
    border: 1px solid rgba(255,255,255,0.16);
}

    .oct-btn-contact-secondary:hover {
        color: var(--oct-white);
        background: rgba(255,255,255,0.14);
    }


/* ============================================================
   OLD CITY TRAVEL - CONTACTO CARD DERECHA CON IMAGEN
============================================================ */
.oct-contact-highlight {
    height: 100%;
}

.oct-contact-highlight-card {
    height: 100%;
    min-height: 620px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

    .oct-contact-highlight-card.oct-contact-highlight-card-image {
        overflow: hidden;
    }

.oct-contact-office-image {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.10);
}

    .oct-contact-office-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .oct-contact-office-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(10, 18, 10, 0.28), rgba(10, 10, 10, 0.04));
        pointer-events: none;
    }

.oct-contact-office-content {
    position: relative;
    z-index: 2;
    padding: 28px 28px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.oct-contact-highlight-badge {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-self: flex-start;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.14);
    color: #fff3bf;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.oct-contact-highlight-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 14px;
    color: var(--oct-white);
    font-size: 1.75rem;
    line-height: 1.2;
}

.oct-contact-highlight-card p {
    position: relative;
    z-index: 2;
    margin: 0 0 22px;
    color: rgba(255,255,255,0.82);
    line-height: 1.85;
}

.oct-contact-highlight-points {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 14px;
}

.oct-contact-point {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--oct-white);
    font-weight: 600;
}

    .oct-contact-point i {
        color: #dff7cb;
    }

/* ============================================================
   OLD CITY TRAVEL - BLOQUE REGISTRO INGUAT PREMIUM
============================================================ */
.oct-contact-inguat-box {
    position: relative;
    z-index: 2;
    margin: 0 0 24px;
    padding: 22px 22px 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.06) 100%);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 16px 34px rgba(0,0,0,0.12);
    overflow: hidden;
}

    .oct-contact-inguat-box::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right, rgba(216,193,95,0.14), transparent 24%), radial-gradient(circle at bottom left, rgba(61,125,43,0.14), transparent 28%);
        pointer-events: none;
    }

.oct-contact-inguat-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.oct-contact-inguat-icon {
    width: 66px;
    height: 66px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(61,125,43,0.20), rgba(216,193,95,0.18));
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 12px 28px rgba(0,0,0,0.14);
    color: #f6e7a7;
    font-size: 1.65rem;
}

.oct-contact-inguat-headings {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.oct-contact-inguat-badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(216,193,95,0.16);
    border: 1px solid rgba(216,193,95,0.24);
    color: #fff0b3;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.oct-contact-inguat-headings h4 {
    margin: 0;
    color: var(--oct-white);
    font-size: 1.05rem;
    line-height: 1.4;
    font-weight: 700;
}

.oct-contact-inguat-text {
    position: relative;
    z-index: 2;
    margin: 0 0 16px !important;
    color: rgba(255,255,255,0.80) !important;
    line-height: 1.8;
    font-size: 0.96rem;
}

.oct-contact-inguat-data {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.oct-contact-inguat-item {
    padding: 14px 14px 12px;
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.oct-contact-inguat-label {
    color: rgba(255,255,255,0.60);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.oct-contact-inguat-item strong {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 700;
    word-break: break-word;
}

.oct-contact-inguat-link {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    border-radius: 999px;
    text-decoration: none;
    color: #e8ffd7;
    font-weight: 700;
    background: rgba(61,125,43,0.16);
    border: 1px solid rgba(61,125,43,0.28);
    transition: all 0.3s ease;
}

    .oct-contact-inguat-link:hover {
        color: #ffffff;
        background: rgba(61,125,43,0.24);
        transform: translateY(-2px);
    }


/* ============================================================
   OLD CITY TRAVEL - BLOQUE REGISTRO INGUAT RESPONSIVE
============================================================ */
@media (max-width: 768px) {
    .oct-contact-inguat-box {
        padding: 18px 16px 16px;
        border-radius: 22px;
    }

    .oct-contact-inguat-top {
        align-items: flex-start;
    }

    .oct-contact-inguat-data {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .oct-contact-inguat-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .oct-contact-inguat-icon {
        width: 60px;
        height: 60px;
        border-radius: 18px;
        font-size: 1.45rem;
    }

    .oct-contact-inguat-headings h4 {
        font-size: 1rem;
    }

    .oct-contact-inguat-link {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   OLD CITY TRAVEL - FOOTER
============================================================ */
.oct-footer {
    position: relative;
    padding: 34px 0 26px;
    background: linear-gradient(135deg, rgba(9,23,10,0.96), rgba(26,12,24,0.96));
    border-top: 1px solid rgba(255,255,255,0.08);
}

    .oct-footer::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(61,125,43,0.08), rgba(126,45,109,0.06));
        pointer-events: none;
    }

.oct-footer-top,
.oct-footer-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.oct-footer-top {
    padding-bottom: 24px;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.oct-footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 540px;
}

.oct-footer-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 14px;
}

.oct-footer-brand h3 {
    margin: 0 0 6px;
    color: var(--oct-white);
    font-size: 1.2rem;
}

.oct-footer-brand p {
    margin: 0;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
}

.oct-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}

    .oct-footer-links a {
        color: rgba(255,255,255,0.82);
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

        .oct-footer-links a:hover {
            color: var(--oct-primary);
        }

.oct-footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.68);
}

.oct-footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .oct-footer-social a {
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.10);
        color: var(--oct-white);
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .oct-footer-social a:hover {
            color: var(--oct-primary);
            background: rgba(255,255,255,0.12);
            transform: translateY(-2px);
        }


/* ============================================================
   OLD CITY TRAVEL - CONTACTO / FOOTER RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
    .oct-contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .oct-contact-section {
        padding: 85px 0 70px;
    }

    .oct-contact-content {
        padding: 26px 22px;
        border-radius: 26px;
    }

    .oct-contact-highlight-card {
        min-height: auto;
        border-radius: 26px;
    }

    .oct-contact-office-image {
        height: 240px;
    }

    .oct-contact-office-content {
        padding: 22px 20px 24px;
    }

    .oct-contact-actions {
        flex-direction: column;
    }

        .oct-contact-actions .oct-btn {
            width: 100%;
        }

    .oct-footer-top,
    .oct-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .oct-footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .oct-contact-content h2 {
        font-size: 1.9rem;
    }

    .oct-contact-card {
        padding: 18px 16px;
        border-radius: 20px;
    }

    .oct-contact-icon {
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }

    .oct-contact-office-image {
        height: 220px;
    }

    .oct-contact-highlight-card h3 {
        font-size: 1.45rem;
    }

    .oct-footer-logo {
        width: 50px;
        height: 50px;
    }

    .oct-footer-links {
        flex-direction: column;
        gap: 12px;
    }
}

/* ============================================================
   OLD CITY TRAVEL - VISTAS LEGALES / FAQ
============================================================ */
.oct-legal-page {
    position: relative;
    padding: 120px 0 90px;
    min-height: 100vh;
    background: radial-gradient(circle at 12% 18%, rgba(61,125,43,0.16), transparent 24%), radial-gradient(circle at 86% 18%, rgba(126,45,109,0.14), transparent 22%), linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
}

    .oct-legal-page::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent 16%, transparent 84%, rgba(255,255,255,0.02));
        pointer-events: none;
    }

.oct-section-tag-legal {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.16);
    color: #fff3bf;
    box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

.oct-legal-hero {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

    .oct-legal-hero h1 {
        margin: 18px 0 16px;
        color: var(--oct-white);
        font-size: clamp(2.3rem, 4vw, 4rem);
        line-height: 1.08;
    }

    .oct-legal-hero p {
        margin: 0;
        color: rgba(255,255,255,0.80);
        line-height: 1.9;
        font-size: 1.02rem;
    }

.oct-legal-card,
.oct-faq-list {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

.oct-legal-card {
    padding: 34px 30px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.07) 100%);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 55px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.04) inset;
    overflow: hidden;
}

    .oct-legal-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right, rgba(216,193,95,0.08), transparent 22%), radial-gradient(circle at bottom left, rgba(61,125,43,0.10), transparent 24%);
        pointer-events: none;
    }

.oct-legal-block {
    position: relative;
    z-index: 2;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

    .oct-legal-block:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .oct-legal-block:first-child {
        padding-top: 0;
    }

    .oct-legal-block h2 {
        margin: 0 0 10px;
        color: var(--oct-white);
        font-size: 1.35rem;
        line-height: 1.3;
    }

    .oct-legal-block p {
        margin: 0;
        color: rgba(255,255,255,0.80);
        line-height: 1.95;
        font-size: 1rem;
    }

.oct-faq-list {
    display: grid;
    gap: 18px;
}

.oct-faq-item {
    position: relative;
    padding: 26px 24px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.07) 100%);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.16), 0 0 0 1px rgba(255,255,255,0.04) inset;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

    .oct-faq-item::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right, rgba(216,193,95,0.08), transparent 20%), radial-gradient(circle at bottom left, rgba(61,125,43,0.10), transparent 24%);
        pointer-events: none;
    }

    .oct-faq-item:hover {
        transform: translateY(-4px);
        border-color: rgba(216,193,95,0.22);
        box-shadow: 0 24px 55px rgba(0,0,0,0.20), 0 0 0 1px rgba(255,255,255,0.05) inset;
    }

    .oct-faq-item h2 {
        position: relative;
        z-index: 2;
        margin: 0 0 10px;
        color: var(--oct-white);
        font-size: 1.22rem;
        line-height: 1.35;
    }

    .oct-faq-item p {
        position: relative;
        z-index: 2;
        margin: 0;
        color: rgba(255,255,255,0.80);
        line-height: 1.9;
        font-size: 0.98rem;
    }


/* ============================================================
   OLD CITY TRAVEL - VISTAS LEGALES / FAQ RESPONSIVE
============================================================ */
@media (max-width: 768px) {
    .oct-legal-page {
        padding: 100px 0 70px;
    }

    .oct-legal-card {
        padding: 26px 20px;
        border-radius: 26px;
    }

    .oct-legal-block {
        padding: 18px 0;
    }

    .oct-faq-item {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .oct-legal-hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .oct-legal-hero h1 {
        font-size: 1.9rem;
    }

    .oct-legal-block h2,
    .oct-faq-item h2 {
        font-size: 1.1rem;
    }

    .oct-legal-block p,
    .oct-faq-item p {
        font-size: 0.95rem;
        line-height: 1.8;
    }
}