/**
 * Pages Stylesheet
 * All page templates CSS (Contact, About, Gallery, Services)
 * 
 * @package MeetEnterprises
 */

/* ============================================================================
   COMMON PAGE STYLES
   ========================================================================= */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================================================
   CONTACT PAGE STYLES
   ========================================================================= */

.contact-page {
    padding-top: 150px;
    min-height: 100vh;
    padding-bottom: 4rem;
}

.contact-page h1 {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-page .section-title + p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 1rem auto;
    text-align: center;
}

.contact-page > .container > div:first-child {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-page > .container > div:nth-child(2) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-form-wrapper {
    background: var(--card-bg);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
}

.contact-form-wrapper h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-cyan);
    margin-bottom: 2rem;
}

.contact-form-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form-wrapper label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea,
.contact-form-wrapper select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Rajdhani', sans-serif;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus,
.contact-form-wrapper select:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form-wrapper select option {
    background: var(--dark-bg);
    color: #fff;
}

.contact-form-wrapper textarea {
    resize: vertical;
}

.contact-form-wrapper button {
    align-self: flex-start;
    cursor: pointer;
}

#formMessage {
    display: none;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.contact-info-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
}

.contact-info-card h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-cyan);
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-top: 0.2rem;
}

.contact-info-item h3 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-info-item p,
.contact-info-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.map-section {
    background: var(--card-bg);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
}

.map-section h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-cyan);
    margin-bottom: 2rem;
    text-align: center;
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    border: 0;
    filter: grayscale(100%) invert(92%) contrast(83%);
}

.map-section p {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
    font-size: 0.9rem;
}

.map-section a {
    color: var(--neon-cyan);
    text-decoration: none;
}

/* ============================================================================
   ABOUT PAGE STYLES
   ========================================================================= */

.about-page {
    padding-top: 150px;
    min-height: 100vh;
    padding-bottom: 4rem;
}

.about-page .services-hero {
    text-align: center;
    margin-bottom: 5rem;
}

.about-page .services-intro {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 1rem auto;
    line-height: 1.8;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.about-story h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-cyan);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-story p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-image-placeholder {
    background: var(--card-bg);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-bg), var(--neon-purple));
}

.about-image-placeholder i {
    font-size: 8rem;
    color: var(--neon-cyan);
    opacity: 0.3;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 6rem;
}

.mission-card,
.vision-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
}

.mission-icon,
.vision-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.vision-icon {
    background: rgba(160, 32, 240, 0.1);
}

.mission-icon i {
    font-size: 2rem;
    color: var(--neon-cyan);
}

.vision-icon i {
    font-size: 2rem;
    color: var(--neon-purple);
}

.mission-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-cyan);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.vision-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-purple);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.why-choose-section {
    margin-bottom: 6rem;
}

.why-choose-section .section-title {
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 240, 255, 0.3);
}

.feature-card i {
    font-size: 3rem;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    margin-bottom: 1rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.stats-counter {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(160, 32, 240, 0.1));
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 6rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-item .stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.about-cta {
    text-align: center;
    background: var(--card-bg);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    padding: 4rem 2rem;
}

.about-cta h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-cyan);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================================
   GALLERY PAGE STYLES
   ========================================================================= */

.gallery-page {
    padding-top: 150px;
    min-height: 100vh;
    padding-bottom: 4rem;
}

.gallery-page .services-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-page .services-intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 1rem auto;
}

.gallery-filter {
    text-align: center;
    margin-bottom: 3rem;
}

#galleryFilter {
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--neon-cyan);
    color: var(--darker-bg);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 240, 255, 0.4);
}

#galleryGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    opacity: 1;
    transition: all 0.3s;
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.gallery-item a {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    transition: all 0.3s;
}

.gallery-item a:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.gallery-item a:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.gallery-item a:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: var(--neon-cyan);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.gallery-overlay i {
    color: var(--neon-cyan);
    font-size: 1.5rem;
    margin-top: 1rem;
}

.gallery-instructions {
    margin-top: 4rem;
    text-align: center;
    background: var(--card-bg);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
}

.gallery-instructions h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.gallery-instructions p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.gallery-instructions p:last-of-type {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ============================================================================
   SERVICES PAGE STYLES
   ========================================================================= */

.services-page {
    padding-top: 150px;
    min-height: 100vh;
    padding-bottom: 4rem;
}

.services-hero {
    text-align: center;
    margin-bottom: 5rem;
}

.services-intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 1.5rem auto;
    line-height: 1.8;
}

.main-services {
    margin-bottom: 6rem;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    transition: all 0.3s;
}

.service-card.featured {
    border-width: 2px;
}

.service-card:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 240, 255, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.service-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-cyan);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0.8rem;
}

.service-features li {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.service-features li i {
    color: var(--neon-cyan);
    font-size: 1rem;
}

.service-tech {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tech-badge {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--neon-cyan);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--neon-cyan);
    font-size: 0.9rem;
    font-weight: 600;
}

.additional-services-section {
    margin-bottom: 6rem;
}

.additional-services-section .section-title {
    margin-bottom: 3rem;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.addon-service {
    background: var(--card-bg);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.addon-service:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 240, 255, 0.3);
}

.addon-service i {
    font-size: 3rem;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.addon-service h3 {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.addon-service p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.why-choose-us {
    margin-bottom: 6rem;
}

.why-choose-us .section-title {
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 240, 255, 0.3);
}

.benefit-number {
    position: absolute;
    top: -15px;
    right: 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 240, 255, 0.2);
}

.benefit-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-cyan);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.process-section {
    margin-bottom: 6rem;
}

.process-section .section-title {
    margin-bottom: 4rem;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.process-step {
    background: var(--card-bg);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.process-step:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 240, 255, 0.3);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-icon i {
    font-size: 2rem;
    color: #fff;
}

.step-content h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-cyan);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.services-cta {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(160, 32, 240, 0.1));
    border: 2px solid rgba(0, 240, 255, 0.3);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 6rem;
}

.cta-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-cyan);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.faq-section {
    margin-bottom: 4rem;
}

.faq-section .section-title {
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2);
}

.faq-item h3 {
    color: var(--neon-cyan);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.faq-item h3 i {
    font-size: 1.2rem;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* ============================================================================
   RESPONSIVE STYLES
   ========================================================================= */

@media (max-width: 968px) {
    .contact-page > .container > div:nth-child(2),
    .about-story,
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    #galleryGrid {
        grid-template-columns: 1fr;
    }

    #galleryFilter {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-btn {
        width: 100%;
    }

    .service-features ul {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}