/* Enhanced About Page Styles */

/* Premium Banner */
.premium-banner {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-image: url('images/about-banner.png');
    background-size: cover;
    background-attachment: fixed; /* Parallax effect */
    background-position: center;
    margin-top: 80px;
    display: flex;
    align-items: center;
}

.premium-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(123, 17, 19, 0.4) 100%);
}

.banner-content-modern {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 600px;
}

.banner-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
}

.banner-title-modern {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

/* Modern About Section */
.modern-about {
    padding: 100px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    padding-right: 40px;
    padding-bottom: 40px;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 80%;
    height: 80%;
    background-color: var(--accent);
    border-radius: 12px;
    z-index: 0;
}

.about-image-wrapper img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
}

.about-content-modern h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.about-content-modern p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Premium Stats Bar */
.stats-bar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 60px 0;
    color: var(--white);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 30px;
}

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.stat-number-modern {
    font-size: 4rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label-modern {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Glassmorphism VMP Section */
.vmp-modern-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
}

.vmp-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vmp-card-modern {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.vmp-card-modern::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.vmp-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.vmp-card-modern:hover::before {
    transform: scaleX(1);
}

.vmp-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.vmp-title-modern {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.vmp-card-modern p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Premium Team Section */
.team-premium {
    padding: 100px 0;
    background-color: var(--white);
}

.team-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.team-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.team-header p {
    font-size: 1.15rem;
    color: var(--text-muted);
}

.team-photo-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.team-photo-container img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.team-photo-container:hover img {
    transform: scale(1.03);
}

.team-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 40px 30px 20px;
    color: var(--white);
}

.team-caption h3 {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 5px;
}

/* Quotation Section Modernized */
.quote-premium {
    background-color: var(--bg-light);
    padding: 100px 0;
}

.quote-wrapper {
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
}

.quote-info {
    flex: 1;
    background-color: var(--primary);
    color: var(--white);
    padding: 60px 50px;
}

.quote-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.quote-info p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.quote-info ul {
    margin-top: 30px;
}

.quote-info li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.quote-info i {
    color: var(--accent);
    font-size: 1.3rem;
}

.quote-form-container {
    flex: 1.2;
    padding: 60px 50px;
}

.premium-form .form-group {
    margin-bottom: 25px;
}

.premium-form input {
    background-color: var(--bg-light);
    border: 1px solid transparent;
    padding: 15px 20px;
    font-size: 1rem;
    border-radius: 8px;
    transition: var(--transition);
}

.premium-form input:focus {
    outline: none;
    border-color: var(--accent);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.1);
}

.premium-form .btn-primary {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    border-radius: 8px;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .about-grid, .vmp-modern-grid, .quote-wrapper {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .stat-item:not(:last-child)::after {
        display: none;
    }
    .banner-title-modern {
        font-size: 3.5rem;
    }
}
