/* ===== Inner Pages Global Styles ===== */

/* Page Header */
.page-header {
    position: relative;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(0,230,118,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #00e676;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    color: rgba(255,255,255,0.5);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* Page Content Section */
.page-content {
    background: #ffffff;
    background: #ffffff;
    padding: 60px 0 80px;
}

.section-padding {
    padding: 60px 0;
}

/* ===== Contact Page ===== */
.contact-info-wrapper {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 40px;
}

.contact-info-wrapper h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(0,230,118,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #00e676;
    font-size: 18px;
}

.contact-details h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-details p,
.contact-details a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #00e676;
}

.contact-social h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #00e676;
    border-color: #00e676;
    color: #0f0f1a;
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 40px;
}

.contact-form-wrapper h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00e676;
    background: rgba(0,230,118,0.05);
}

.btn-primary {
    background: #00e676;
    color: #0f0f1a;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    background: #00c853;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,230,118,0.3);
}

/* Contact Map */
.contact-map {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    display: block;
}

/* ===== Blog Page ===== */
.blog-page {
    padding: 20px 0;
}

.blog-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0,230,118,0.3);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #00e676;
    color: #0f0f1a;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    line-height: 1.2;
}

.blog-date .day {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}

.blog-date .month {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.blog-content h3 a {
    color: #fff;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: #00e676;
}

.blog-content p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-link {
    color: #00e676;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.blog-link:hover {
    gap: 12px;
}

/* Blog Detail */
.blog-detail {
    padding: 20px 0;
}

.blog-single {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 30px;
}

.blog-single .blog-image img {
    width: 100%;
    border-radius: 12px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.blog-meta i {
    color: #00e676;
    margin-right: 8px;
}

.blog-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
}

.blog-content {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.blog-share h5 {
    color: #fff;
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #000; }
.share-btn.whatsapp { background: #25d366; }

.share-btn:hover {
    transform: translateY(-3px);
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
}

.widget-title {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.recent-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.recent-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-posts a {
    display: flex;
    gap: 15px;
    align-items: center;
}

.recent-posts img {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

.recent-posts .post-info h6 {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.recent-posts a:hover .post-info h6 {
    color: #00e676;
}

.recent-posts .post-info span {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
}

/* ===== Portfolio/Gallery Page ===== */
.portfolio-page {
    padding: 20px 0;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #00e676;
    border-color: #00e676;
    color: #0f0f1a;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.portfolio-item {
    border-radius: 12px;
    overflow: hidden;
}

.portfolio-image {
    position: relative;
    aspect-ratio: 4/3;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,230,118,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-info {
    text-align: center;
    color: #0f0f1a;
}

.portfolio-category {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.portfolio-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 10px 0 15px;
}

.portfolio-link {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #00e676;
    font-size: 18px;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    transform: scale(1.1);
}

/* ===== Services Page ===== */
.services-page {
    padding: 20px 0;
}

.service-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0,230,118,0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(0,230,118,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 32px;
    color: #00e676;
}

.service-title {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    color: #00e676;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

/* ===== Pagination ===== */
.pagination-wrapper {
    margin-top: 40px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #fff;
    transition: all 0.3s ease;
}

.page-link:hover,
.page-link.active {
    background: #00e676;
    border-color: #00e676;
    color: #0f0f1a;
}

/* ===== Utility Classes ===== */
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }
.text-center { text-align: center; }

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .page-header {
        padding: 100px 0 50px;
    }
    .page-title {
        font-size: 2rem;
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 90px 0 40px;
    }
    .page-title {
        font-size: 1.6rem;
    }
    .page-content {
    background: #ffffff;
        padding: 40px 0 60px;
    }
    .contact-info-wrapper,
    .contact-form-wrapper {
        padding: 25px;
    }
    .blog-single {
        padding: 20px;
    }
    .blog-title {
        font-size: 1.5rem;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Video Gallery Page ===== */
.video-gallery-page {
    padding: 20px 0;
}

.video-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0,230,118,0.3);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-thumbnail .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(0,230,118,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f0f1a;
    font-size: 24px;
    transition: all 0.3s ease;
}

.video-thumbnail .play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #00e676;
}

.video-info {
    padding: 20px;
}

.video-info h4 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0;
}

/* ===== References Page ===== */
.references-page {
    padding: 20px 0;
}

.reference-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: all 0.3s ease;
}

.reference-item:hover {
    border-color: rgba(0,230,118,0.3);
    transform: translateY(-3px);
}

.reference-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.3s ease;
}

.reference-item:hover img {
    filter: grayscale(0%) brightness(1);
}

/* ===== FAQ Page ===== */
.faq-page {
    padding: 20px 0;
}

.accordion-box {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-box .accordion.block {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-box .acc-btn {
    padding: 20px 25px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    padding-right: 50px;
    transition: all 0.3s ease;
}

.accordion-box .acc-btn::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #00e676;
    transition: transform 0.3s ease;
}

.accordion-box .accordion.block.active .acc-btn::after {
    transform: translateY(-50%) rotate(180deg);
}

.accordion-box .acc-btn:hover {
    color: #00e676;
}

.accordion-box .acc-content {
    display: none;
    padding: 0 25px 20px;
}

.accordion-box .accordion.block.active .acc-content {
    display: block;
}

.accordion-box .acc-content .text {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* ===== Gallery Detail Page ===== */
.gallery-detail-page {
    padding: 20px 0;
}

.gallery-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-box:hover .gallery-img img {
    transform: scale(1.05);
}

.gallery-detail {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-box:hover .gallery-detail {
    opacity: 1;
}

.gallery-detail h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0;
}

/* Gallery link wrapper */
.gallery-masonry-item-img-link {
    display: block;
}

/* ===== Section Header ===== */
.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-desc {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
}

/* ===== Additional Responsive ===== */
@media (max-width: 991px) {
    .gallery-items {
        grid-template-columns: repeat(2, 1fr);
    }
    .video-thumbnail .play-btn {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .gallery-items {
        grid-template-columns: 1fr;
    }
    .accordion-box .acc-btn {
        padding: 15px 20px;
        padding-right: 45px;
        font-size: 0.95rem;
    }
    .video-thumbnail .play-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

/* ===== Service Detail Page ===== */
.service-detail-page {
    padding: 20px 0;
}

.service-detail-image {
    margin-bottom: 30px;
}

.service-detail-image img {
    width: 100%;
    border-radius: 16px;
}

.service-detail-content {
    padding-left: 20px;
}

.service-detail-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.service-detail-text {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.service-detail-text p {
    margin-bottom: 15px;
}

.service-detail-text ul,
.service-detail-text ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.service-detail-text li {
    margin-bottom: 8px;
}

/* Service Card Image */
.service-card .service-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
}

.service-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

/* ===== Video Detail Page ===== */
.video-detail-page {
    padding: 20px 0;
}

.video-player-wrapper {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 30px;
}

.video-detail-title {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
}

.video-player {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.video-player iframe,
.video-player video,
.video-player embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Portfolio link wrapper */
.portfolio-link-wrap {
    display: block;
    text-decoration: none;
}

/* ===== Additional Responsive for Service & Video ===== */
@media (max-width: 991px) {
    .service-detail-content {
        padding-left: 0;
        margin-top: 30px;
    }
    .service-detail-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 767px) {
    .video-player-wrapper {
        padding: 20px;
    }
    .video-detail-title {
        font-size: 1.4rem;
    }
}
/* Page Content Section - WHITE BACKGROUND */
.page-content {
    background: #ffffff;
    padding: 60px 0 80px;
}

/* Override dark text colors for white background */
.blog-content h3 a { color: #1a1a2e; }
.blog-content h3 a:hover { color: #00e676; }
.blog-content p { color: #666; }
.blog-card { background: #fff; border: 1px solid #e9ecef; box-shadow: 0 2px 15px rgba(0,0,0,0.05); }
.blog-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.blog-title { color: #1a1a2e; }
.blog-single { background: #fff; border: 1px solid #e9ecef; }
.blog-single .blog-content { color: #555; }
.blog-meta { color: #888; }
.service-card { background: #fff; border: 1px solid #e9ecef; box-shadow: 0 2px 15px rgba(0,0,0,0.05); }
.service-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.service-title { color: #1a1a2e; }
.service-desc { color: #666; }
.video-card { background: #fff; border: 1px solid #e9ecef; }
.video-info h4 { color: #1a1a2e; }
.contact-info-wrapper { background: #f8f9fa; border: 1px solid #e9ecef; }
.contact-info-wrapper h3 { color: #1a1a2e; }
.contact-form-wrapper { background: #f8f9fa; border: 1px solid #e9ecef; }
.contact-form-wrapper h3 { color: #1a1a2e; }
.contact-details h4 { color: #1a1a2e; }
.contact-details p, .contact-details a { color: #555; }
.form-group input, .form-group textarea, .form-group select { background: #fff; border: 1px solid #ddd; color: #333; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #999; }
.sidebar-widget { background: #f8f9fa; border: 1px solid #e9ecef; }
.widget-title { color: #1a1a2e; border-bottom: 1px solid #e9ecef; }
.recent-posts .post-info h6 { color: #1a1a2e; }
.recent-posts .post-info span { color: #888; }
.section-header h2 { color: #1a1a2e; }
.section-desc { color: #666; }
.page-link { background: #f8f9fa; border: 1px solid #e9ecef; color: #333; }
.accordion-box .accordion.block { background: #fff; border: 1px solid #e9ecef; }
.accordion-box .acc-btn { color: #1a1a2e; }
.accordion-box .acc-content .text { color: #666; }
.reference-item { background: #f8f9fa; border: 1px solid #e9ecef; }
.filter-btn { border: 1px solid #ddd; color: #333; }
.social-links a { background: #f0f0f0; border: 1px solid #e0e0e0; color: #333; }
.video-player-wrapper { background: #fff; border: 1px solid #e9ecef; }
.video-detail-title { color: #1a1a2e; }
.service-detail-title { color: #1a1a2e; }
.service-detail-text { color: #555; }
