/* ============================================
   ABOUT & STORAGE COMPONENTS
   - About Section (Asymmetric Editorial)
   - Storage Cards (Premium Elevated)
   - Storage Lightbox
   ============================================ */


/* ── About Section — Asymmetric Editorial ──── */
.about-section {
    background: linear-gradient(180deg, #FEF5F3 0%, #FFF8F6 50%, #FAFBFE 100%);
    position: relative;
    overflow: hidden;
}

/* Ambient floating decorations */
.about-ambient {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-50), transparent 70%);
    top: -120px;
    right: -120px;
    z-index: 0;
    animation: about-float 8s ease-in-out infinite;
    pointer-events: none;
}

.about-ambient-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-ghost), transparent 70%);
    bottom: -80px;
    left: -80px;
    z-index: 0;
    animation: about-float 10s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes about-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(15px, -10px) scale(1.05); }
    66% { transform: translate(-10px, 12px) scale(0.97); }
}

/* Two-column asymmetric layout */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* ── Left Column ──────────────────────────── */
.about-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Hero Feature Card */
.about-hero-card {
    background: var(--surface);
    border-radius: var(--border-radius-xl);
    padding: 36px 32px;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06),
                0 8px 24px rgba(0, 0, 0, 0.06);
    transition: border-color var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease);
    position: relative;
    overflow: hidden;
}

.about-hero-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10),
                0 0 0 1px rgba(234, 69, 38, 0.08);
    border-color: var(--primary-100);
}

/* Animated glow sweep on hero card */
.about-hero-card-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-50), transparent);
    z-index: 0;
    opacity: 0;
    transition: opacity var(--dur) var(--ease);
    pointer-events: none;
}

.about-hero-card:hover .about-hero-card-glow {
    opacity: 1;
    animation: about-glow-sweep 1.2s ease-out forwards;
}

@keyframes about-glow-sweep {
    0% { left: -60%; }
    100% { left: 120%; }
}

.about-hero-card > *:not(.about-hero-card-glow) {
    position: relative;
    z-index: 1;
}

.about-hero-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--primary-color);
    font-size: 24px;
    transition: all var(--dur) var(--ease);
}

.about-hero-card:hover .about-hero-icon {
    background: var(--gradient-primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

.about-hero-title {
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    margin-bottom: 10px;
    color: var(--gray-900);
    letter-spacing: -0.02em;
    transition: color var(--dur-fast) var(--ease);
}

.about-hero-card:hover .about-hero-title {
    color: var(--primary-color);
}

.about-hero-text {
    color: var(--text-secondary);
    font-size: var(--text-base);
    line-height: 1.7;
    margin-bottom: 8px;
}

/* Badges */
.about-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: var(--weight-bold);
    padding: 4px 12px;
    border-radius: var(--border-radius-full);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.about-badge-primary {
    background: var(--primary-100);
    color: #B7301A;
}

.about-badge-success {
    background: var(--success-ghost);
    color: var(--success-dark);
}

/* Stats Grid */
.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.about-stat {
    background: var(--surface);
    border-radius: var(--border-radius-xl);
    padding: 22px 20px;
    text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06),
                0 8px 24px rgba(0, 0, 0, 0.06);
    transition: border-color var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease),
                transform var(--dur) var(--ease);
    position: relative;
    overflow: hidden;
}

.about-stat::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 50%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-full);
    transition: transform 0.4s var(--ease);
}

.about-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10),
                0 0 0 1px rgba(234, 69, 38, 0.08);
    border-color: var(--primary-100);
}

.about-stat:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.about-stat:hover .about-stat-value {
    transform: scale(1.08);
}

.about-stat-value {
    display: block;
    font-size: var(--text-3xl);
    font-weight: var(--weight-extrabold);
    color: var(--primary-color);
    letter-spacing: -0.02em;
    font-family: var(--font-primary);
    line-height: 1.2;
    margin-bottom: 4px;
    transition: transform 0.35s var(--ease-spring);
}

.about-stat-label {
    display: block;
    font-size: var(--text-xs);
    color: var(--text-muted);
    font-weight: var(--weight-medium);
    letter-spacing: 0.01em;
}

/* ── Right Column — Feature Rows ─────────── */
.about-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-feature-row {
    background: var(--surface);
    border-radius: var(--border-radius-xl);
    padding: 28px 26px;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06),
                0 8px 24px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: border-color var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease),
                transform var(--dur) var(--ease);
    position: relative;
    overflow: hidden;
}

/* Animated left accent bar — slides in on hover */
.about-feature-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 0 var(--border-radius-full) var(--border-radius-full) 0;
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.4s var(--ease-spring);
}

.about-feature-row:hover::before {
    transform: scaleY(1);
}

.about-feature-row:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10),
                0 0 0 1px rgba(234, 69, 38, 0.08);
    border-color: var(--primary-100);
}

/* Unified brand icon — all icons same color */
.about-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    color: var(--primary-color);
    transition: all var(--dur) var(--ease);
}

.about-feature-row:hover .about-feature-icon {
    background: var(--gradient-primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

.about-feature-content {
    flex: 1;
    min-width: 0;
}

.about-feature-title {
    font-size: var(--text-lg);
    font-weight: var(--weight-bold);
    margin-bottom: 6px;
    color: var(--gray-900);
    letter-spacing: -0.01em;
    transition: color var(--dur-fast) var(--ease);
}

.about-feature-row:hover .about-feature-title {
    color: var(--primary-color);
}

.about-feature-text {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: 1.65;
    margin-bottom: 6px;
}

/* Shared link style */
.about-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    font-weight: var(--weight-semibold);
    padding: 6px 0;
    transition: all var(--dur-fast) var(--ease);
    font-size: var(--text-sm);
}

.about-link i {
    transition: transform var(--dur-fast) var(--ease);
    font-size: 12px;
}

.about-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

.about-link:hover i {
    transform: translateX(5px);
}

/* Rental discount tags */
.about-rental-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.about-tag {
    font-size: 12px;
    font-weight: var(--weight-semibold);
    padding: 5px 14px;
    border-radius: var(--border-radius-full);
    background: var(--gray-100);
    color: var(--text-secondary);
    letter-spacing: 0.01em;
    transition: all var(--dur-fast) var(--ease);
}

.about-feature-row:hover .about-tag {
    transform: translateY(-1px);
}

.about-tag-success {
    background: var(--success-ghost);
    color: var(--success-dark);
}

.about-tag-warning {
    background: var(--warning-ghost);
    color: var(--warning-dark);
}

/* Reduced motion — disable decorative animations */
@media (prefers-reduced-motion: reduce) {
    .about-ambient,
    .about-ambient-2 {
        animation: none;
    }
    .about-hero-card-glow {
        display: none;
    }
    .about-stat::after,
    .about-feature-row::before {
        transition: none;
    }
}

/* ── Storage Cards — Premium Elevated ─────── */
.storage-section {
    background: linear-gradient(180deg, var(--background-color), var(--surface));
    position: relative;
    overflow: hidden;
}

.storage-options {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ── Card Base ── */
.storage-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background: var(--surface);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    transition: border-color var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease),
                transform var(--dur) var(--ease);
    position: relative;
    border: 2px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06),
                0 8px 24px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.storage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10),
                0 0 0 1px rgba(234, 69, 38, 0.08);
    border-color: var(--primary-100);
}

/* ── Badge ── */
.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    color: #fff;
    font-size: 11px;
    font-weight: var(--weight-bold);
    padding: 6px 16px;
    border-radius: var(--border-radius-full);
    z-index: 10;
    letter-spacing: 0.02em;
    transition: all var(--dur-fast) var(--ease);
    background: var(--gradient-primary);
    box-shadow: var(--shadow-primary);
}

.storage-card:hover .card-badge {
    transform: rotate(2deg) scale(1.05);
}

/* ── Image Area ── */
.storage-image {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: var(--surface);
}

.storage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.storage-card:hover .storage-image img {
    transform: scale(1.06);
}

/* Subtle gradient overlay at image bottom */
.storage-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.6), transparent);
    pointer-events: none;
}

/* ── Isometric SVG Visualizer ── */
.storage-iso {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    height: 230px;
}

.storage-iso::after {
    display: none;
}

.storage-iso-svg {
    width: 100%;
    height: 100%;
}

.storage-card:hover .storage-iso-svg {
    transform: scale(1.02);
    transition: transform 0.6s var(--ease);
}

/* ── Content Area ── */
.storage-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Unit photo thumbnail (replaces icon) */
.storage-thumb {
    width: 64px;
    height: 64px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    top: -40px;
    margin-bottom: -22px;
    border: 3px solid var(--surface);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08),
                0 6px 18px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all var(--dur) var(--ease);
    background: var(--gray-50);
}

.storage-thumb button {
    all: unset;
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: relative;
}

.storage-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}

.storage-thumb:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12),
                0 0 0 2px rgba(234, 69, 38, 0.15);
}

.storage-thumb:hover img {
    transform: scale(1.1);
}

.storage-thumb-expand {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    opacity: 0;
    transition: opacity var(--dur-fast) var(--ease);
    pointer-events: none;
}

.storage-thumb:hover .storage-thumb-expand {
    opacity: 1;
}

/* ── Unit Image Lightbox ── */
.storage-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

.storage-lightbox--open {
    opacity: 1;
    visibility: visible;
}

.storage-lightbox-panel {
    position: relative;
    max-width: 680px;
    max-height: 85vh;
    width: 90%;
    animation: storageZoomIn 0.35s var(--ease-spring);
}

.storage-lightbox--open .storage-lightbox-panel {
    animation: storageZoomIn 0.35s var(--ease-spring) forwards;
}

@keyframes storageZoomIn {
    from { opacity: 0; transform: scale(0.85); }
    to   { opacity: 1; transform: scale(1); }
}

.storage-lightbox-panel img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--border-radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.storage-lightbox-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--surface);
    color: var(--gray-700);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: all var(--dur-fast) var(--ease);
    z-index: 5;
}

.storage-lightbox-close:hover {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(90deg);
}

/* Title */
.storage-title {
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    margin-bottom: 10px;
    color: var(--gray-900);
    transition: color var(--dur-fast) var(--ease);
    letter-spacing: -0.02em;
}

.storage-card:hover .storage-title {
    color: var(--primary-color);
}

/* Meta (dimensions + sqm) */
.storage-meta {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.storage-meta-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: var(--text-sm);
    color: var(--text-secondary);
    padding: 4px 12px;
    background: var(--gray-50);
    border-radius: var(--border-radius-full);
    border: 1px solid var(--border-light);
    transition: border-color var(--dur-fast) var(--ease);
}

.storage-card:hover .storage-meta-item {
    border-color: var(--primary-100);
}

.storage-meta-item i {
    color: var(--primary-color);
    font-size: 13px;
}

/* Description */
.storage-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: var(--text-base);
    line-height: 1.65;
}

/* Price */
.storage-price {
    font-size: var(--text-3xl);
    font-weight: var(--weight-extrabold);
    color: var(--primary-color);
    margin-bottom: 18px;
    display: flex;
    align-items: baseline;
    gap: 5px;
    font-family: var(--font-primary);
    letter-spacing: -0.02em;
    transition: transform 0.35s var(--ease-spring);
}

.storage-card:hover .storage-price {
    transform: scale(1.04);
}

.storage-price span {
    font-size: var(--text-sm);
    font-weight: var(--weight-regular);
    color: var(--text-muted);
}

/* Features list */
.storage-features {
    margin-bottom: 22px;
    padding: 14px;
    background: var(--gray-50);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-light);
}

.storage-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.storage-feature:last-child {
    margin-bottom: 0;
}

.storage-feature i {
    color: var(--success-color);
    font-size: 14px;
}

/* Book Now Button */
.storage-button {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: #fff;
    font-weight: var(--weight-semibold);
    padding: 14px 20px;
    border-radius: var(--border-radius-full);
    transition: all var(--dur) var(--ease);
    border: none;
    text-align: center;
    font-family: var(--font-primary);
    letter-spacing: 0.02em;
    box-shadow: var(--shadow-primary);
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.storage-button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.18) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    transition: transform 0.55s var(--ease);
}

.storage-button:hover::after {
    transform: translateX(100%);
}

.storage-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary-lg);
    color: #fff;
    background: var(--gradient-primary-hover);
}

.storage-button:active {
    transform: translateY(0);
}