/* Inner Page Styles - Created to bypass styles.css lock */

/* Page Headers */
.page-header {
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.5));
}

.page-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.page-header p {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Page Content Wrapper */
.page-content {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 0 0 400px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }

    .about-image {
        flex: 0 0 auto;
        width: 100%;
        margin-top: 30px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
}

/* Contact Wrapper Fix */
.contact-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-form-container {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }
}

/* Section Utility if missing */
.section {
    padding: 80px 0;
}

/* Hero Section for Index */
.hero {
    position: relative;
    background: url('images/img-01.jpg') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    color: #fff;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0.7) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.experience-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.experience-badge .years {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
}

.experience-badge .text {
    font-size: 1.2rem;
}

/* Dark Black Overlay for Hero */
.jarallax.dark-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Strong black overlay */
    z-index: 1;
}

.jarallax.dark-overlay .v-center {
    position: relative;
    z-index: 2;
}