/* Reset old styles */
.about-hero-geometric,
.geometric-bg,
.brand-story-split,
.philosophy-section,
.experience-process,
.why-choose-stats,
.master-barber-interactive,
.master-compact-section,
.team-modern-section,
.cta-particles-section {
    display: none;
}

/* Compact Hero */
.about-hero-compact {
    position: relative;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.hero-content-compact {
    position: relative;
    text-align: center;
    color: white;
}

.hero-label-small {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 25px;
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.hero-content-compact h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content-compact p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
}

/* Stats Banner */
.stats-banner {
    padding: 3rem 0;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-weight: 600;
}

/* Story & Values Section */
.story-values-section {
    padding: 5rem 0;
    background: white;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-label-mini {
    display: inline-block;
    color: #d4af37;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.story-side h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.story-side p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.values-quick {
    display: flex;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.value-item i {
    color: #d4af37;
    font-size: 1.3rem;
}

.value-item span {
    font-weight: 600;
    color: #1a1a1a;
}

.visual-side {
    position: relative;
}

.image-stack {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.image-main {
    position: relative;
    width: 100%;
    padding-top: 100%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.image-main img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    animation: float 3s ease-in-out infinite;
}

.badge-1 {
    top: 15%;
    right: -10%;
}

.badge-2 {
    bottom: 15%;
    left: -10%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.floating-badge i {
    font-size: 1.5rem;
    color: #d4af37;
}

.floating-badge span {
    font-weight: 700;
    color: #1a1a1a;
}

/* Offerings Compact */
.offerings-compact {
    padding: 5rem 0;
    background: #f8f9fa;
}

.section-header-mini {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-mini h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.offering-card {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.offering-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.offering-card:hover .card-icon {
    transform: scale(1.1) rotate(360deg);
}

.offering-card h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.offering-card p {
    color: #666;
    font-size: 0.95rem;
}

/* CTA Compact */
.cta-compact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    color: rgba(0,0,0,0.8);
    margin-bottom: 2rem;
}

.btn-cta-gold {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    background: #1a1a1a;
    color: #d4af37;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn-cta-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    color: white;
}

.btn-cta-gold i {
    transition: transform 0.3s ease;
}

.btn-cta-gold:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .visual-side {
        order: -1;
    }
    
    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Hero compact */
    .about-hero-compact {
        padding: 6rem 0 3rem;
    }
    
    .hero-content-compact h1 {
        font-size: 2.5rem;
    }
    
    .hero-content-compact p {
        font-size: 1.1rem;
    }
    
    .hero-label-small {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }
    
    /* Stats banner */
    .stats-banner {
        padding: 2rem 0;
    }
    
    .stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.25rem 1rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .stat-item p {
        font-size: 0.9rem;
    }
    
    /* Story section */
    .story-values-section {
        padding: 3rem 0;
    }
    
    .content-wrapper {
        gap: 2rem;
    }
    
    .section-label-mini {
        font-size: 0.8rem;
    }
    
    .story-side h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .story-side p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .values-quick {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .value-item {
        justify-content: center;
    }
    
    /* Visual side */
    .image-stack {
        max-width: 100%;
        margin-top: 2rem;
    }
    
    .floating-badge {
        position: static;
        display: inline-flex;
        margin: 0.5rem;
    }
    
    .badge-1,
    .badge-2 {
        position: static;
        animation: none;
    }
    
    /* Offerings */
    .offerings-compact {
        padding: 3rem 0;
    }
    
    .section-header-mini {
        margin-bottom: 2rem;
    }
    
    .section-header-mini h2 {
        font-size: 2rem;
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .offering-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    .offering-card h3 {
        font-size: 1.2rem;
    }
    
    /* CTA */
    .cta-compact {
        padding: 3rem 0;
    }
    
    .cta-box h2 {
        font-size: 2rem;
    }
    
    .cta-box p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-cta-gold {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .about-hero-compact {
        padding: 5rem 0 2.5rem;
    }
    
    .hero-content-compact h1 {
        font-size: 2rem;
    }
    
    .hero-content-compact p {
        font-size: 1rem;
    }
    
    .hero-label-small {
        font-size: 0.75rem;
        padding: 0.35rem 1rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }
    
    .story-side h2 {
        font-size: 1.6rem;
    }
    
    .story-side p {
        font-size: 0.95rem;
    }
    
    .value-item {
        padding: 0.8rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    
    .offering-card h3 {
        font-size: 1.1rem;
    }
    
    .offering-card p {
        font-size: 0.9rem;
    }
    
    .cta-box h2 {
        font-size: 1.7rem;
    }
    
    .cta-box p {
        font-size: 0.95rem;
    }
    
    .btn-cta-gold {
        padding: 0.9rem 1.75rem;
        font-size: 0.95rem;
        width: 100%;
    }
}
