/* ===== INNER PAGES CSS ===== */

/* Header Inner */
.header-inner {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
}

/* Page Hero */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 20px 80px;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 15, 46, 0.95) 0%,
        rgba(10, 10, 10, 0.9) 50%,
        rgba(45, 27, 78, 0.95) 100%
    );
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--gold);
    font-size: 0.95rem;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--gray-400);
    font-size: 0.95rem;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 15px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT PAGE ===== */
.about-page-section {
    padding: 100px 0;
    background: var(--black);
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-intro-content p {
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-intro-image {
    position: relative;
}

.about-intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid rgba(212, 175, 55, 0.3);
}

.intro-image-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--gold-gradient);
    padding: 25px 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

.badge-text {
    font-size: 0.9rem;
    color: var(--black);
    font-weight: 600;
}

/* Mission Vision */
.mission-vision-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--black) 100%);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 50px 40px;
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 25px;
}

.mv-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--white);
}

.mv-card p {
    color: var(--gray-400);
    line-height: 1.8;
}

/* Values */
.values-section {
    padding: 100px 0;
    background: var(--black);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 25px;
    background: rgba(45, 27, 78, 0.2);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(45, 27, 78, 0.4);
    border-color: var(--gold);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--black);
    margin: 0 auto 20px;
}

.value-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.value-card p {
    color: var(--gray-400);
    font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-box {
    text-align: center;
    padding: 40px 20px;
}

.stat-box i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-num::after {
    content: '+';
    font-size: 2rem;
    color: var(--gold);
}

.stat-label {
    display: block;
    margin-top: 10px;
    color: var(--gray-300);
    font-size: 1rem;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 100px 0;
    background: var(--black);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-desc {
    color: var(--gray-400);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-cards {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: rgba(45, 27, 78, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.contact-card:hover {
    background: rgba(45, 27, 78, 0.4);
    border-color: var(--gold);
    transform: translateX(10px);
}

.contact-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: var(--gold-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--black);
}

.contact-detail h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--white);
}

.contact-detail a,
.contact-detail p {
    color: var(--gray-400);
    font-size: 0.95rem;
}

.contact-detail a:hover {
    color: var(--gold);
}

.contact-social h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-5px);
}

/* Contact Form */
.contact-form-wrapper {
    position: relative;
}

.contact-form-card {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    border-radius: 25px;
    padding: 50px 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-form-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--white);
}

.contact-form-card > p {
    color: var(--gray-300);
    margin-bottom: 30px;
}

.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.alert.success {
    background: rgba(46, 204, 113, 0.2);
    border: 1px solid rgba(46, 204, 113, 0.5);
    color: #2ecc71;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--gray-300);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--black);
    color: var(--white);
}

/* Map Section */
.map-section {
    padding: 0 0 100px;
    background: var(--black);
}

.map-wrapper {
    border-radius: 25px;
    overflow: hidden;
    border: 3px solid rgba(212, 175, 55, 0.3);
}

.map-wrapper iframe {
    display: block;
    filter: grayscale(100%) invert(90%);
}

/* ===== SERVICES PAGE ===== */
.services-page-section {
    padding: 100px 0;
    background: var(--black);
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-page-card {
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 25px;
    overflow: hidden;
    transition: var(--transition);
}

.service-page-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.service-page-image {
    height: 250px;
    overflow: hidden;
}

.service-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-page-card:hover .service-page-image img {
    transform: scale(1.1);
}

.service-page-content {
    padding: 35px;
}

.service-page-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.service-page-content p {
    color: var(--gray-400);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Service Detail Page */
.service-detail-section {
    padding: 100px 0;
    background: var(--black);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.service-detail-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.service-detail-content p {
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features-list {
    margin: 30px 0;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--white);
}

.service-features-list li i {
    color: var(--gold);
    font-size: 1.2rem;
}

.service-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-card {
    background: rgba(45, 27, 78, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.sidebar-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--white);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold);
}

.sidebar-links li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    color: var(--gray-400);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.sidebar-links li a:hover,
.sidebar-links li a.active {
    color: var(--gold);
    padding-left: 10px;
}

.sidebar-contact {
    text-align: center;
}

.sidebar-contact p {
    color: var(--gray-400);
    margin-bottom: 20px;
}

/* ===== MISSION VISION BLOCK ===== */
.mv-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.mv-block.mv-reverse {
    direction: rtl;
}

.mv-block.mv-reverse > * {
    direction: ltr;
}

.mv-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
}

.mv-content p {
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 15px;
}

.mv-list {
    margin-top: 25px;
}

.mv-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--white);
}

.mv-list li i {
    color: var(--gold);
}

.mv-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid rgba(212, 175, 55, 0.3);
}

.values-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
}

/* ===== PROJECTS PAGE ===== */
.projects-section {
    padding: 100px 0;
    background: var(--black);
}

.projects-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--gray-300);
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.15);
    opacity: 1 !important;
    visibility: visible !important;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    opacity: 1 !important;
    visibility: visible !important;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-image .project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 27, 78, 0.5);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-image .project-overlay {
    opacity: 1;
}

.project-category {
    background: var(--gold-gradient);
    color: var(--black);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 10px;
}

.project-info p {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.9rem;
}

.project-location i {
    font-size: 0.85rem;
}

/* Legacy project overlay for other pages */
.project-card-legacy {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
}

.project-card-legacy img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.project-card-legacy:hover img {
    transform: scale(1.1);
}

.project-overlay-legacy {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95), transparent);
    transform: translateY(50px);
    opacity: 0;
    transition: var(--transition);
}

.project-card-legacy:hover .project-overlay-legacy {
    transform: translateY(0);
    opacity: 1;
}

.project-overlay-legacy h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 5px;
}

.project-overlay-legacy span {
    color: var(--gold);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .values-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-intro,
    .contact-grid,
    .mv-grid,
    .mv-block,
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .mv-block.mv-reverse {
        direction: ltr;
    }

    .about-intro-image {
        order: -1;
    }

    .service-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .values-grid,
    .stats-grid,
    .services-page-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 30px 20px;
    }

    .intro-image-badge {
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 120px 15px 60px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .mv-card,
    .value-card {
        padding: 30px 20px;
    }
}
