/* ============================================
   OFFICE DETAIL PAGE - High Contrast Version
   ============================================ */

/* Base Reset */
.office-detail {
    background: #FFFFFF;
    color: #111827;
    min-height: 100vh;
}

.office-detail * {
    color: inherit;
}

/* ============================================
   HERO SECTION
   ============================================ */
.od-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: flex-end;
    background: #FFFFFF;
    padding-bottom: 60px;
}

.od-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.od-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F0FDF4 100%);
    opacity: 1;
    z-index: 1;
}

.od-hero-overlay {
    display: none;
}

.od-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.od-hero-inner {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: end;
}

/* Breadcrumb */
.od-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    grid-column: 1 / -1;
}

.od-breadcrumb a {
    color: #374151 !important;
    text-decoration: none;
}

.od-breadcrumb a:hover {
    color: #111827 !important;
}

.od-breadcrumb-sep {
    color: #6B7280 !important;
}

.od-breadcrumb-sep svg {
    color: #6B7280 !important;
}

.od-breadcrumb-current {
    color: #111827 !important;
    font-weight: 600;
}

/* Hero Badges */
.od-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.od-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(251, 191, 36, 0.2);
    border: 1px solid rgba(251, 191, 36, 0.4);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fbbf24 !important;
}

/* Hero Title */
.od-hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #111827 !important;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

/* Hero Meta */
.od-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}

.od-hero-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #111827 !important;
    font-size: 1rem;
}

.od-hero-location svg {
    color: #fbbf24 !important;
    flex-shrink: 0;
}

.od-hero-location span {
    color: #111827 !important;
}

.od-hero-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.od-stars {
    display: flex;
    gap: 2px;
}

.od-stars svg {
    color: #fbbf24 !important;
    fill: #fbbf24;
}

.od-rating-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827 !important;
}

/* Hero Price Card */
.od-hero-price {
    background: rgba(249, 250, 251, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
}

.od-price-label {
    font-size: 0.9rem;
    color: #374151 !important;
    margin-bottom: 8px;
}

.od-price-amount {
    margin-bottom: 4px;
}

.od-price-yen {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827 !important;
}

.od-price-number {
    font-size: 3rem;
    font-weight: 800;
    color: #fbbf24 !important;
}

.od-price-tax {
    font-size: 0.9rem;
    color: #374151 !important;
    margin-bottom: 20px;
}

.od-hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #f59e0b, #fb923c);
    color: #000 !important;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.od-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    color: #000 !important;
}

.od-hero-cta svg {
    color: #000 !important;
}

/* Scroll Indicator */
.od-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #6B7280 !important;
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

.od-scroll-indicator svg {
    color: #6B7280 !important;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   STICKY NAVIGATION
   ============================================ */
.od-sticky-nav {
    position: sticky;
    top: 72px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.od-sticky-nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 24px;
}

.od-sticky-nav-title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.od-sticky-nav-title strong {
    font-size: 1rem;
    color: #111827 !important;
}

.od-sticky-price {
    font-size: 0.9rem;
    color: #fbbf24 !important;
    font-weight: 600;
}

.od-nav-links {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.od-nav-links a {
    display: block;
    padding: 10px 18px;
    color: #374151 !important;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.2s;
}

.od-nav-links a:hover,
.od-nav-links a.active {
    color: #111827 !important;
    background: rgba(251, 191, 36, 0.15);
}

.od-sticky-cta {
    padding: 10px 24px;
    background: linear-gradient(135deg, #f59e0b, #fb923c);
    color: #000 !important;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.od-sticky-cta:hover {
    transform: scale(1.05);
    color: #000 !important;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.od-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    background: #FFFFFF;
}

.od-main {
    min-width: 0;
}

/* Sections */
.od-section {
    margin-bottom: 60px;
}

.od-section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.od-section-icon {
    width: 52px;
    height: 52px;
    background: rgba(251, 191, 36, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.od-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827 !important;
    margin: 0;
}

/* ============================================
   BENTO GRID
   ============================================ */
.od-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.od-bento-item {
    background: #F9FAFB;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
}

.od-bento-item:hover {
    border-color: rgba(251, 191, 36, 0.4);
}

.od-bento-lg {
    grid-column: span 2;
    grid-row: span 2;
}

.od-bento-wide {
    grid-column: span 2;
}

.od-bento-highlight {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(251, 146, 60, 0.1));
    border-color: rgba(251, 191, 36, 0.3);
}

.od-bento-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.od-bento-label {
    font-size: 0.85rem;
    color: #374151 !important;
    margin-bottom: 8px;
}

.od-bento-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: #111827 !important;
}

.od-bento-sub {
    font-size: 0.9rem;
    color: #374151 !important;
    margin-top: 8px;
    line-height: 1.5;
}

/* ============================================
   DESCRIPTION
   ============================================ */
.od-description {
    background: #F9FAFB;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    color: #374151 !important;
    font-size: 1rem;
    line-height: 1.8;
}

.od-description p {
    color: #374151 !important;
    margin-bottom: 16px;
}

.od-description p:last-child {
    margin-bottom: 0;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.od-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
}

.od-service-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: #F9FAFB;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.od-service-card:hover {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
}

.od-service-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.od-service-name {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 500;
    color: #111827 !important;
}

.od-service-check {
    flex-shrink: 0;
}

.od-service-check svg {
    color: #34d399 !important;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.od-comparison-table {
    background: #F9FAFB;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.od-comparison-header {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    background: rgba(251, 191, 36, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.od-comparison-header .od-comparison-col {
    padding: 18px 20px;
    font-weight: 600;
    color: #111827 !important;
}

.od-comparison-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.od-comparison-row:last-child {
    border-bottom: none;
}

.od-comparison-col {
    padding: 18px 20px;
    color: #374151 !important;
}

.od-comparison-highlight {
    background: rgba(251, 191, 36, 0.05);
}

.od-comparison-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fbbf24 !important;
}

.od-comparison-badge {
    display: inline-block;
    margin-left: 10px;
    padding: 4px 10px;
    background: rgba(52, 211, 153, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #34d399 !important;
}

.od-check-yes {
    color: #34d399 !important;
    font-weight: 700;
}

.od-check-no {
    color: #f87171 !important;
}

/* ============================================
   ACCESS SECTION
   ============================================ */
.od-access-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.od-access-info {
    background: #F9FAFB;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 28px;
}

.od-access-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.od-access-item:last-child {
    margin-bottom: 0;
}

.od-access-icon {
    width: 48px;
    height: 48px;
    background: rgba(251, 191, 36, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.od-access-icon svg {
    color: #fbbf24 !important;
}

.od-access-text {
    flex: 1;
}

.od-access-label {
    font-size: 0.85rem;
    color: #6B7280 !important;
    margin-bottom: 6px;
}

.od-access-value {
    font-size: 1rem;
    color: #111827 !important;
    line-height: 1.6;
}

.od-map {
    background: #F9FAFB;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    min-height: 300px;
}

.od-map iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: none;
}

/* ============================================
   SIDEBAR
   ============================================ */
.od-sidebar {
    position: sticky;
    top: 150px;
    height: fit-content;
}

.od-sidebar-card {
    background: #F9FAFB;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    margin-bottom: 24px;
}

.od-sidebar-price {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.od-sidebar-price-label {
    font-size: 0.9rem;
    color: #374151 !important;
    margin-bottom: 8px;
}

.od-sidebar-price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24 !important;
}

.od-sidebar-price-amount .od-price-yen {
    font-size: 1.2rem;
    color: #111827 !important;
}

.od-sidebar-price-amount .od-price-unit {
    font-size: 1rem;
    color: #374151 !important;
    font-weight: 400;
}

.od-sidebar-badge {
    display: inline-block;
    margin-top: 12px;
    padding: 6px 14px;
    background: rgba(52, 211, 153, 0.15);
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #34d399 !important;
}

.od-sidebar-features {
    margin-bottom: 24px;
}

.od-sidebar-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.od-sidebar-feature:last-child {
    border-bottom: none;
}

.od-sidebar-feature svg {
    color: #34d399 !important;
    flex-shrink: 0;
}

.od-sidebar-feature span {
    font-size: 0.95rem;
    color: #111827 !important;
}

.od-sidebar-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, #f59e0b, #fb923c);
    color: #000 !important;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 14px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.od-sidebar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    color: #000 !important;
}

.od-sidebar-cta svg {
    color: #000 !important;
}

.od-sidebar-trust {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.od-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.85rem;
    color: #6B7280 !important;
}

.od-trust-item svg {
    color: #6B7280 !important;
    flex-shrink: 0;
}

.od-trust-item span {
    color: #6B7280 !important;
}

/* Related Offices */
.od-sidebar-related {
    background: #F9FAFB;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 24px;
}

.od-sidebar-related-title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827 !important;
    margin: 0 0 16px 0;
}

.od-related-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.od-related-card:last-child {
    margin-bottom: 0;
}

.od-related-card:hover {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
}

.od-related-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #111827 !important;
    margin-bottom: 4px;
}

.od-related-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fbbf24 !important;
}

.od-related-card svg {
    color: #6B7280 !important;
    flex-shrink: 0;
}

/* ============================================
   MOBILE FLOATING CTA
   ============================================ */
.od-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
}

.od-mobile-cta-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.od-mobile-price-amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fbbf24 !important;
}

.od-mobile-price-unit {
    font-size: 0.9rem;
    color: #6B7280 !important;
}

.od-mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    margin-left: 16px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #f59e0b, #fb923c);
    color: #000 !important;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
}

.od-mobile-cta-btn svg {
    color: #000 !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .od-content {
        grid-template-columns: 1fr;
    }

    .od-sidebar {
        position: relative;
        top: 0;
    }

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

    .od-hero-price {
        max-width: 400px;
    }
}

@media (max-width: 1024px) {
    .od-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .od-bento-lg {
        grid-column: span 2;
        grid-row: span 1;
    }

    .od-access-card {
        grid-template-columns: 1fr;
    }

    .od-nav-links {
        display: none;
    }

    .od-mobile-cta {
        display: flex;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .od-hero {
        min-height: 60vh;
    }

    .od-hero-content {
        padding: 0 16px;
    }

    .od-hero-inner {
        gap: 30px;
    }

    .od-content {
        padding: 40px 16px 100px;
    }

    .od-bento-grid {
        grid-template-columns: 1fr;
    }

    .od-bento-lg,
    .od-bento-wide {
        grid-column: span 1;
    }

    .od-services-grid {
        grid-template-columns: 1fr;
    }

    .od-comparison-header,
    .od-comparison-row {
        grid-template-columns: 1fr;
    }

    .od-comparison-col {
        padding: 12px 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .od-comparison-row .od-comparison-col:last-child {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .od-hero-title {
        font-size: 1.5rem;
    }

    .od-price-number {
        font-size: 2.5rem;
    }

    .od-sidebar-price-amount {
        font-size: 2rem;
    }
}
