/* 
======================================================
  REGNOVA - PREMIUM ABOUT PAGE STYLES
====================================================== 
*/

/* --- Global Premium Utilities --- */
.font-secondary { font-family: var(--font-secondary); }
.text-gray { color: #5a6a7e; line-height: 1.8; }
.text-light-gray { color: rgba(255,255,255,0.7); line-height: 1.8; }
.bg-light-gradient { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); }
.font-weight-300 { font-weight: 300; }
.letter-spacing-2 { letter-spacing: 2px; }

.premium-heading {
    font-family: var(--font-primary);
    font-size: 38px;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.2;
    position: relative;
}

.accent-line {
    width: 60px;
    height: 3px;
    background-color: var(--color-gold);
    display: inline-block;
}

.shadow-premium {
    box-shadow: 0 15px 40px rgba(11, 37, 69, 0.1);
}

.relative { position: relative; }
.z-10 { z-index: 10; position: relative; }

/* --- About Hero (Inner Cinematic) --- */
.about-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-navy);
}

.about-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center 30%;
    transform: scale(1.05);
    animation: panImage 30s linear infinite alternate;
}

@keyframes panImage {
    0% { transform: scale(1.05) translateX(0); }
    100% { transform: scale(1.05) translateX(-2%); }
}

.about-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(7, 23, 44, 0.9) 0%, rgba(11, 37, 69, 0.7) 100%);
}

.about-hero-content {
    color: var(--color-white);
    max-width: 800px;
    padding: 0 20px;
}

.subtitle-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(198, 156, 56, 0.15);
    border-left: 3px solid var(--color-gold);
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-hero-title {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 48px;
    line-height: 1.2;
}

.about-hero-title span {
    color: var(--color-gold);
    font-weight: 400;
    font-family: var(--font-secondary);
    font-style: italic;
}

/* --- Intro Section --- */
.about-intro-section {
    padding: 80px 0;
    overflow: hidden;
}

.intro-image-wrapper {
    position: relative;
    height: 500px;
    border-radius: 4px;
    overflow: hidden;
}

.floating-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    padding: 25px;
    border-radius: 4px;
    z-index: 2;
}

.floating-box h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 20px;
}

.lead-text-premium {
    font-size: 18px;
    color: var(--color-navy);
    line-height: 1.6;
    border-left: 4px solid var(--color-teal);
    padding-left: 20px;
}

/* Stats Row */
.stats-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.stat-number span { font-size: 24px; }

.stat-label {
    color: var(--color-gray-800);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 5px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background-color: var(--color-gray-200);
}

/* --- Premium Services Grid --- */
.premium-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.premium-service-card {
    background: var(--color-white);
    padding: 30px 25px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    z-index: 1;
}

.premium-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: var(--color-teal);
}

.card-icon {
    font-size: 36px;
    color: var(--color-teal);
    margin-bottom: 20px;
}

.card-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 18px;
    color: var(--color-navy);
    margin-bottom: 15px;
}

.card-text {
    color: #5a6a7e;
    font-size: 14px;
    line-height: 1.6;
}

/* --- Deep Dive Sections --- */
.image-reveal-wrapper {
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.image-reveal-wrapper::after {
    content: '';
    position: absolute;
    top: -15px; bottom: -15px; width: 40px;
    background-color: var(--color-gold);
    z-index: -1;
}

.image-reveal-wrapper.right::after { right: -20px; }
.image-reveal-wrapper.left::after { left: -20px; }

.highlight-quote {
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    color: var(--color-teal);
    border-left: 3px solid var(--color-gold);
    padding-left: 20px;
    margin-top: 30px;
}

/* --- Clean Modern CTA --- */
.premium-cta-section {
    position: relative;
    background-color: var(--color-navy-dark);
    overflow: hidden;
}

.cta-bg-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: grayscale(100%) opacity(0.1);
}

.cta-overlay-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(7,23,44,0.95) 0%, rgba(11,37,69,0.98) 100%);
}

.clean-card {
    background: transparent;
    padding: 0;
}

.cta-massive-title {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: 1px;
}

.cta-lead-text {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.mission-commitment-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 40px;
    margin-top: 40px;
}

.premium-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.premium-tags span {
    background: rgba(255,255,255,0.08);
    color: var(--color-white);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.1);
}

/* --- Mobile Responsive Overrides --- */
@media (max-width: 992px) {
    .about-hero-title { font-size: 38px; }
    .floating-box { position: relative; bottom: auto; right: auto; margin-top: -30px; margin-left: 20px; margin-right: 20px; }
    .cta-massive-title { font-size: 32px; }
}

@media (max-width: 768px) {
    .premium-heading { font-size: 28px; }
    .about-hero { min-height: 250px; height: auto; padding: 60px 0; }
    .about-hero-title { font-size: 28px; }
    
    .about-intro-section { padding: 40px 0; }
    .intro-image-wrapper { height: 300px; margin-bottom: 30px; }
    .image-reveal-wrapper { height: 250px; }
    .image-reveal-wrapper::after { display: none; }
    
    .stats-row { flex-direction: row; gap: 20px; align-items: center; margin-top: 30px; }
    .stat-divider { width: 1px; height: 40px; }
    .stat-number { font-size: 32px; }
    .stat-number span { font-size: 20px; }
    .stat-label { font-size: 11px; }
    
    .flex-row-reverse { flex-direction: column; }
    
    .cta-massive-title { font-size: 24px; }
    .pulse-badge { font-size: 10px; padding: 6px 16px; }
    .mission-commitment-box { padding: 25px 15px; }
    
    .lead-text-premium, .highlight-quote, .cta-lead-text { font-size: 15px; }
}
