/* =============================================
   Z Production  INDUSTRIES - Complete Stylesheet
   Industrial Modern Design
   ============================================= */

/* CSS Variables */
:root {
    --primary-teal: #0a7a70;
    --primary-teal-dark: #076058;
    --dark-gray: #065550;
    --medium-gray: #0a7a70;
    --light-gray: #f0fdfa;
    --white: #ffffff;
    --text-dark: #0a4f48;
    --text-light: #4a8a84;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(13, 148, 136, 0.1);
    --shadow-hover: 0 20px 40px rgba(13, 148, 136, 0.15);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-teal);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(13, 148, 136, 0.3);
}

.btn-full {
    width: 100%;
}

/* Section Tags */
.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-teal);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-header p {
    color: var(--text-light);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* =============================================
   HEADER
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
    padding: 20px 0;
}

.header.scrolled {
    background-color: var(--dark-gray);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    transition: var(--transition);
    border-radius: 4px;
    padding: 5px 15px;
    background: #ffffff;
    border: none;
}

.logo-img:hover {
    opacity: 1;
    transform: scale(1.02);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-list a {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 1px;
    padding: 10px 0;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-teal);
    transition: var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-teal);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.slide-content h1 {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(13, 148, 136, 0.8);
    color: var(--white);
    border: none;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.slider-arrow:hover {
    background-color: var(--primary-teal);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background-color: var(--primary-teal);
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about {
    padding: 100px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--primary-teal);
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.about-badge .years {
    display: block;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
}

.about-badge .text {
    display: block;
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 1px;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.about-content .lead {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--primary-teal);
    color: var(--white);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-teal);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-10px);
}

.service-icon {
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.service-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.service-icon:hover img {
    transform: scale(1.05);
}

/* Service Image Lightbox */
.service-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.service-lightbox.active {
    display: flex;
}

.service-lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.service-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    background: none;
    border: none;
    font-weight: 300;
    line-height: 1;
    z-index: 10001;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.6;
    max-height: 4.8em;
}

.service-link {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-teal);
    letter-spacing: 1px;
}

.service-link:hover {
    color: var(--primary-teal-dark);
}

/* =============================================
   QUALITY SECTION
   ============================================= */
.quality {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
}

.quality-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.quality-item {
    text-align: center;
    color: var(--white);
}

.quality-icon {
    margin-bottom: 20px;
}

.quality-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.quality-item h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-teal);
}

.quality-item p {
    font-size: 14px;
    opacity: 0.8;
}

/* =============================================
   STATS SECTION
   ============================================= */
.stats {
    padding: 80px 0;
    background-color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-teal);
    margin-bottom: 10px;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 1px;
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials {
    padding: 100px 0;
    background-color: var(--primary-teal);
    position: relative;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.quote-icon {
    font-family: serif;
    font-size: 120px;
    line-height: 0.5;
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 22px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    opacity: 0.8;
}

/* =============================================
   GALLERY SECTION
   ============================================= */
.gallery {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 148, 136, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact {
    padding: 100px 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-info>p {
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    font-size: 24px;
}

.contact-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.contact-item p {
    color: var(--text-light);
}

.contact-form-wrapper {
    background-color: var(--light-gray);
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    font-family: var(--font-body);
    font-size: 16px;
    border: 2px solid transparent;
    background-color: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background-color: var(--dark-gray);
    padding: 80px 0 0;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    font-size: 18px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-teal);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-teal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-col ul a:hover {
    color: var(--primary-teal);
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-teal);
    color: var(--white);
    border: none;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-teal-dark);
    transform: translateY(-5px);
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--dark-gray);
        padding: 80px 30px;
        transition: var(--transition);
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .slide-content h1 {
        font-size: 36px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        display: inline-block;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .slider-arrow.prev {
        left: 15px;
    }

    .slider-arrow.next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 28px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .quality-content {
        flex-direction: column;
    }
}

/* =============================================
   PAGE BANNER
   ============================================= */
.page-banner {
    position: relative;
    height: 350px;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.page-banner.service-banner {
    background-image: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=1600');
    background-size: cover;
    background-position: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(51, 51, 51, 0.85) 100%);
}

.page-banner .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-banner h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 15px;
}

.breadcrumb {
    font-family: var(--font-heading);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

.breadcrumb a {
    color: var(--primary-teal);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 10px;
}

/* =============================================
   PAGE CONTENT
   ============================================= */
.page-content {
    padding: 80px 0;
    background-color: var(--white);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.main-content h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.main-content h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.main-content .lead {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.main-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Service Hero Image */
.service-hero-image {
    margin-bottom: 30px;
    overflow: hidden;
}

.service-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.process-step {
    display: flex;
    gap: 15px;
    padding: 20px;
    background-color: var(--light-gray);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-teal);
}

.step-content h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    margin-bottom: 0;
}

/* Feature List */
.feature-list {
    list-style: none;
    margin-bottom: 40px;
}

.feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: 700;
}

/* Capabilities Grid */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.capability-item {
    padding: 25px;
    background-color: var(--light-gray);
    transition: var(--transition);
}

.capability-item:hover {
    background-color: var(--primary-teal);
    color: var(--white);
}

.capability-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.capability-item h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.capability-item p {
    font-size: 14px;
    margin-bottom: 0;
}

/* Service CTA */
.service-cta {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
    padding: 40px;
    margin-top: 40px;
    color: var(--white);
    text-align: center;
}

.service-cta h3 {
    color: var(--primary-teal);
    margin-top: 0;
}

.service-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

/* =============================================
   SIDEBAR
   ============================================= */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-box {
    background-color: var(--light-gray);
    padding: 30px;
}

.sidebar-box h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-teal);
}

.services-list ul {
    list-style: none;
}

.services-list ul li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.services-list ul li:last-child {
    border-bottom: none;
}

.services-list ul li a {
    display: block;
    padding: 12px 0;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.services-list ul li a:hover,
.services-list ul li.active a {
    color: var(--primary-teal);
    padding-left: 10px;
}

.contact-box .agent-info {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-box .agent-icon {
    font-size: 24px;
}

.contact-box p {
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--text-light);
}

/* Sidebar Form */
.sidebar-form input,
.sidebar-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 2px solid transparent;
    background-color: var(--white);
    font-family: var(--font-body);
    transition: var(--transition);
}

.sidebar-form input:focus,
.sidebar-form textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-page-content {
    padding: 80px 0;
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.about-intro h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-intro p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.mv-card {
    padding: 50px 40px;
    background-color: var(--light-gray);
    text-align: center;
    transition: var(--transition);
}

.mv-card:hover {
    background-color: var(--primary-teal);
    color: var(--white);
}

.mv-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.mv-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.team-section {
    text-align: center;
    margin-bottom: 80px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid var(--primary-teal);
}

.team-member h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-member p {
    font-size: 14px;
    color: var(--text-light);
}

/* =============================================
   GALLERY PAGE
   ============================================= */
.gallery-page-content {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    padding: 12px 25px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 2px solid var(--dark-gray);
    background-color: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background-color: var(--primary-teal);
    border-color: var(--primary-teal);
    color: var(--white);
}

.gallery-full-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-full-grid .gallery-item {
    height: 250px;
}

/* =============================================
   CLIENTS PAGE
   ============================================= */
.clients-page-content {
    padding: 80px 0;
}

.clients-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.clients-intro h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.clients-intro p {
    font-size: 18px;
    color: var(--text-light);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.client-card {
    background-color: var(--light-gray);
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    height: 150px;
}

.client-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.client-card img {
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.client-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* =============================================
   JOBS PAGE
   ============================================= */
.jobs-page-content {
    padding: 80px 0;
}

.jobs-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.jobs-intro h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.jobs-intro p {
    font-size: 18px;
    color: var(--text-light);
}

.jobs-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.job-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background-color: var(--light-gray);
    transition: var(--transition);
}

.job-card:hover {
    box-shadow: var(--shadow);
    transform: translateX(10px);
    border-left: 4px solid var(--primary-teal);
}

.job-info h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.job-info p {
    font-size: 14px;
    color: var(--text-light);
}

.job-meta {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.job-meta span {
    font-size: 13px;
    color: var(--primary-teal);
    font-weight: 500;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-page-content {
    padding: 80px 0;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-details-full {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.contact-detail-card {
    padding: 30px;
    background-color: var(--light-gray);
    text-align: center;
    transition: var(--transition);
}

.contact-detail-card:hover {
    background-color: var(--primary-teal);
    color: var(--white);
}

.contact-detail-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-detail-card .icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.contact-detail-card h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-detail-card p {
    font-size: 14px;
    color: var(--text-light);
}

.map-container {
    margin-top: 60px;
    width: 100%;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* =============================================
   RESPONSIVE - NEW PAGES
   ============================================= */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: -1;
    }

    .gallery-full-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-banner h1 {
        font-size: 32px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .gallery-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .contact-details-full {
        grid-template-columns: 1fr;
    }

    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .gallery-full-grid {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   DYNAMIC CONTENT LOADING
   ============================================= */

.loading-indicator {
    text-align: center;
    padding: 40px;
    color: var(--text-light);
    font-size: 16px;
    grid-column: 1 / -1;
}

.loading-indicator::before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
    border: 3px solid var(--light-gray);
    border-top-color: var(--primary-teal);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.no-items,
.no-jobs {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
    font-size: 18px;
    grid-column: 1 / -1;
}

.no-jobs p {
    color: var(--text-light);
}

.client-placeholder {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-teal);
    color: white;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    margin: 0 auto;
}

.client-card .client-name {
    display: block;
    margin-top: 10px;
    font-weight: 500;
    color: var(--text-dark);
}

/* =============================================
   GALLERY GRID FULL (Gallery Page)
   ============================================= */
.gallery-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-page {
    padding: 60px 0 80px;
    background-color: var(--light-gray);
}

.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.filter-btn {
    padding: 10px 25px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--white);
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-teal);
    border-color: var(--primary-teal);
    color: var(--white);
}

@media (max-width: 768px) {
    .gallery-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid-full {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-image {
    max-width: 85vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: lightboxZoomIn 0.3s ease;
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: white;
    font-size: 42px;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
    padding: 5px 12px;
    transition: var(--transition);
    opacity: 0.8;
}

.lightbox-close:hover {
    opacity: 1;
    transform: scale(1.15);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    padding: 15px 18px;
    z-index: 10001;
    transition: var(--transition);
    border-radius: 4px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-caption {
    color: white;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    padding: 18px 20px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .lightbox-image {
        max-width: 95vw;
        max-height: 70vh;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 22px;
        padding: 10px 14px;
    }

    .lightbox-prev {
        left: 8px;
    }

    .lightbox-next {
        right: 8px;
    }

    .lightbox-close {
        top: 10px;
        right: 12px;
        font-size: 34px;
    }
}