/* ==========================================================================
   About Section Styles — used ONLY by the home page (#about section)
   Cinematic, dark luxury aesthetic
   Scoped to .about-section to avoid conflicts
   ========================================================================== */

.about-section {
    position: relative;
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-color) 0%, #0a0a0f 50%, var(--bg-color) 100%);
    content-visibility: auto;
    contain-intrinsic-size: 0 900px;
}

/* Background Orbs */
.about-section .about-glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.about-section .about-glow-orb.left {
    background: radial-gradient(circle, rgba(0, 140, 255, 0.1) 0%, transparent 70%);
    top: 20%;
    left: 0;
    transform: translateX(-50%);
}

.about-container {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Typography */
.about-header {
    max-width: 800px;
}

.about-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ff8c00;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
}

.about-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -60px;
    width: 40px;
    height: 1px;
    background: #ff8c00;
}

.about-title {
    font-family: 'Outfit', sans-serif;
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #fff 30%, #7b8192 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 700px;
    margin-bottom: 40px;
}

/* Service Highlights Grid */
.about-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-service-card {
    background: rgba(20, 20, 25, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: default;
}

.about-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.about-service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.about-service-card:hover::before {
    opacity: 1;
}

.about-service-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
    position: relative;
    color: #fff;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.about-service-card:hover .about-service-icon {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #8a2be2;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
}

.about-service-content {
    z-index: 1;
    position: relative;
}

.about-service-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px 0;
    letter-spacing: 0.5px;
    color: #fff;
}

.about-service-content p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 1200px) {
    .about-title { font-size: 3.5rem; }
    .about-services { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .about-section { padding: 80px 0; }
    .about-title { font-size: 2.8rem; }
    .about-description { font-size: 1.1rem; }
    .about-services { grid-template-columns: 1fr; }
    .about-subtitle::after { display: none; }
}
