/* =========================================
   BASE STYLES & UTILITIES
   ========================================= */
html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #4a4a4a;
    color: #ffffff;
    margin: 0;
    padding-top: 45px;
}

section { 
    padding: 30px 0; 
}

.bg-gray-dark { background-color: #4a4a4a; } 
.bg-gray-light { background-color: #575757; } 
.bg-gray-darker { background-color: #3d3d3d; }
.text-orange { color: #ff9800; }
.text-red { color: #ff1a1a; }

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #fff;
}

.btn-outline-white {
    border: 1px solid #fff; 
    color: #fff; 
    background: transparent; 
    padding: 10px 30px; 
    text-transform: uppercase; 
    font-size: 15px; 
    transition: all 0.3s; 
    border-radius: 0; 
    display: inline-block;
}

.btn-outline-white:hover { 
    background: #fff; 
    color: #333; 
    text-decoration: none; 
}

/* =========================================
   PRELOADER
   ========================================= */
#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: #3d3d3d; z-index: 999999;
    display: flex; justify-content: center; align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-brand-container {
    display: flex; align-items: center; gap: 15px;
    animation: loaderBreathe 3s infinite ease-in-out; animation-delay: 1.2s; opacity: 1;
}

@keyframes loaderBreathe {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.7; }
}

.loader-elem {
    opacity: 0; animation-duration: 0.8s; animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.loader-geo { font-weight: bold; text-transform: uppercase; color: #fff; font-size: 18px; transform: translateX(-50px); animation-name: slideInLeft; }
.loader-img { width: 40px; transform: scale(0); animation-name: popInCenter; animation-delay: 0.3s; }
.loader-lat { letter-spacing: 1px; color: #fff; font-size: 18px; transform: translateX(50px); animation-name: slideInRight; animation-delay: 0.5s; }
@keyframes slideInLeft { to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { to { opacity: 1; transform: translateX(0); } }
@keyframes popInCenter { to { opacity: 1; transform: scale(1); } }

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.header-fixed { position: fixed; top: 0; width: 100%; z-index: 1030; }
.top-bar { background-color: #3d3d3d; color: #ffffff; font-size: 13px; padding: 10px 0; border-bottom: 1px solid #222; }
.top-bar-wrapper { display: flex; align-items: center; justify-content: space-between; }
.top-bar-left, .top-bar-right { flex: 1; display: flex; align-items: center; gap: 15px; }
.top-bar-center { flex: 0 0 auto; display: flex; align-items: center; gap: 15px; }
.icon-small { width: 16px; filter: invert(1); margin-right: 8px; vertical-align: middle; }
.brand-geo { font-weight: bold; font-size: 14px; text-transform: uppercase; }
.brand-lat { font-size: 14px; letter-spacing: 0.5px; }

.navbar-custom { background: rgba(87, 87, 87, 0.85); border: none; border-radius: 0; margin-bottom: 0; }
@media (min-width: 768px) {
    .navbar-custom .navbar-collapse { display: flex !important; justify-content: center; }
    .navbar-custom .nav.navbar-nav { float: none; display: flex; }
}
.navbar-custom .nav.navbar-nav > li > a { 
    padding: 20px 25px; color: #fff; text-transform: uppercase; 
    font-size: 15px; letter-spacing: 1px; transition: color 0.3s ease; font-weight: bold;
}
.navbar-custom .nav.navbar-nav > li > a:hover,
.navbar-custom .nav.navbar-nav > li > a:focus,
.navbar-custom .nav.navbar-nav > li > a.active {
    color: #ff9800 !important; background-color: transparent !important;
}

/* =========================================
   HERO BLOCKS (VIDEO & SLIDER)
   ========================================= */
.hero {
    position: relative; height: 95vh; height: 95svh; min-height: 400px;
    display: flex; align-items: flex-end; padding-bottom: 100px; overflow: hidden;
    background: url('../../photos/newcontent/gamocdileba.jpg') center center / cover no-repeat scroll;
}
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; display: none; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.3); z-index: 1; }
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero h1 { font-size: 24px; text-transform: uppercase; font-weight: 300; background: rgba(0, 0, 0, 0.5); padding: 15px; line-height: 1.5; margin: 0; }
.video-control-btn { position: absolute; bottom: 40px; right: 40px; z-index: 20; min-width: 110px; padding: 10px 20px; }

/* Hero Slider Block */
.main-hero-slider { width: 100%; height: 80vh; position: relative; overflow: hidden; }
.hero-slide-item { width: 100%; height: 80vh; background-position: center; background-repeat: no-repeat; background-size: contain; }
.main-hero-slider .slick-dots { bottom: 30px; }
.main-hero-slider .custom-chevron {
    font-size: 50px; color: #fff; position: absolute; top: 50%; transform: translateY(-50%);
    cursor: pointer; z-index: 10; opacity: 0.7; text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}
.main-hero-slider .chevron-left { left: 30px; }
.main-hero-slider .chevron-right { right: 30px; }

/* =========================================
   MAIN PAGE SPECIFIC BLOCKS
   ========================================= */
.stats-section-new {
    background: linear-gradient(rgba(30, 35, 40, 0.85), rgba(30, 35, 40, 0.85)), url('../../photos/newcontent/gamocdileba.jpg?v=12');
    background-size: cover; background-position: 0px 135px; background-attachment: fixed; padding: 90px 0;
}
.stats-main-title { font-size: 24px; line-height: 1.6; font-weight: 400; color: #ffffff; text-transform: uppercase; max-width: 90%; margin-bottom: 50px; text-align: left; }
.stat-box-outlined { border: 1px solid rgba(255, 255, 255, 0.6); border-radius: 12px; padding: 25px 20px; text-align: left; height: 100%; display: flex; flex-direction: column; justify-content: center; transition: background 0.3s; }
.stat-box-outlined:hover { background: rgba(255, 255, 255, 0.05); }
.stat-number { font-size: 32px; font-weight: 700; margin: 0 0 5px 0; display: flex; align-items: baseline; gap: 10px; }
.stat-sub-text { font-size: 16px; font-weight: 400; text-transform: none; }
.stat-description { font-size: 15px; color: #dcdcdc; text-transform: uppercase; margin: 0; line-height: 1.4; }

.info-block-section { padding: 20px 0; }
.info-block-section.bg-gray-light { background-color: #727272; }
@media (min-width: 992px) { .flex-v-center { display: flex; align-items: center; flex-wrap: wrap; } }
.info-text-content { padding: 20px 40px; }
.info-text-content h3 { font-size: 20px; font-weight: 700; text-transform: uppercase; margin-bottom: 25px; color: #fff; line-height: 1.4; }
.info-text-content p { font-size: 16px; line-height: 1.8; color: #e0e0e0; margin-bottom: 20px; }
.info-text-content .btn-outline-white { margin-top: 15px; }

/* =========================================
   INDIVIDUAL PROJECT PAGE SPECIFIC BLOCKS
   ========================================= */
.work-step-box { text-align: left; margin-bottom: 30px; }
.work-step-icon { width: 100%; max-width: 260px; margin-bottom: 20px; display: block; }
.work-step-title { font-size: 16px; font-weight: 700; margin-bottom: 15px; color: #fff; }
.work-step-desc { font-size: 15px; line-height: 1.6; color: #ccc; }

.pricing-row-flex { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; flex-wrap: wrap; }
.pricing-row-flex > .col-md-4 { display: flex; flex-direction: column; }
.pricing-card-v2 { background-color: #555555; border: 4px solid #7a7a7a; padding: 0; text-align: center; display: flex; flex-direction: column; width: 100%; flex-grow: 1; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.pc-header-border { margin: 20px 20px 0 20px; border-bottom: 1px solid #aaa; padding-bottom: 15px; }
.pc-header-title { font-size: 20px; font-weight: 300; color: #ffffff; margin: 0; letter-spacing: 1px; }
.pc-header-title.premium-color { color: #e5c05e; }
.pc-list { padding: 10px 20px; flex-grow: 1; display: flex; flex-direction: column; }
.pc-list-item { font-size: 14px; color: #ffffff; padding: 12px 0; border-bottom: 1px solid #888; }
.pc-list-item.no-border { border-bottom: none; }
.pc-list-gap { height: 25px; }
.pc-sub-items-container { padding-bottom: 0; }
.pc-sub-list { list-style: none; padding: 5px 0 0 0; margin: 0; }
.pc-sub-item { font-size: 13px; color: #dcdcdc; padding: 4px 0; }
.pc-price-box { margin-top: auto; padding: 20px; }
.pc-price-main { font-size: 22px; font-weight: 700; color: #ff1a1a; margin-bottom: 8px; }
.pc-price-sub { font-size: 13px; font-weight: 700; color: #ff1a1a; margin-bottom: 5px; }
.pc-price-note { font-size: 11px; font-weight: 700; color: #ff1a1a; line-height: 1.4; max-width: 200px; margin: 0 auto; }
.pc-footer-border { margin: 0 20px 20px 20px; border-top: 1px solid #aaa; padding-top: 20px; min-height: 60px; display: flex; align-items: center; justify-content: center; }
.pc-footer-text { font-size: 14px; color: #dcdcdc; line-height: 1.5; }

.extra-info-section-v2 { padding: 60px 0; background-color: #575757; }
.title-line-container { display: flex; align-items: center; justify-content: center; margin-bottom: 50px; width: 100%; overflow: hidden; }
.extra-info-title-v2 { font-size: 18px; color: #ff9800; margin: 0 20px; text-align: center; font-weight: 400; white-space: nowrap; }
.title-line-left, .title-line-right { flex-grow: 1; height: 1px; background-color: #cccccc; position: relative; }
.title-line-left::before { content: ""; position: absolute; left: 0; bottom: 0; width: 25px; border-bottom: 1px solid #cccccc; transform: rotate(-45deg); transform-origin: left bottom; }
.title-line-right::after { content: ""; position: absolute; right: 0; bottom: 0; width: 25px; border-bottom: 1px solid #cccccc; transform: rotate(45deg); transform-origin: right bottom; }
.extra-info-list p { font-size: 15px; margin-bottom: 8px; font-weight: 400; text-transform: uppercase; }
.extra-info-list p.total { margin-top: 25px; font-weight: 700; }
.extra-info-dark-box { background-color: #4a4a4a; padding: 30px; border-radius: 2px; }
.extra-info-dark-box p { color: #ffffff; font-size: 14px; line-height: 1.6; margin-bottom: 15px; text-transform: uppercase; }
.extra-info-dark-box p:last-child { margin-bottom: 0; }

/* =========================================
   PROJECTS PAGE SPECIFIC BLOCKS (LIST & FILTER)
   ========================================= */
.projects-list-section { padding: 70px 0 80px 0; background-color: #fff; min-height: calc(100vh - 180px); }
.filter-box { background-color: #fff; padding: 0px; border-radius: 4px; margin-bottom: 20px;margin-top: 15px; display: flex; flex-wrap: wrap; gap: 15px; align-items: center; }
.filter-item { flex: 1; min-width: 140px; }
.filter-item-range { flex: 1.5; min-width: 200px; color: #fff; display: flex; flex-direction: column; justify-content: center; }
.dual-range-container { position: relative; width: 100%; height: 30px; margin-top: 5px; }
.range-values-display { text-align: center; font-weight: 700; font-size: 13px; color: #00a89d; letter-spacing: 1px; }
.range-track-container { position: absolute; top: 50%; transform: translateY(-50%); left: 0; right: 0; height: 6px; background-color: #555; border-radius: 3px; }
.range-track-active { position: absolute; top: 0; bottom: 0; background-color: #00a89d; border-radius: 3px; z-index: 1; }
.range-input-dual { position: absolute; top: 50%; transform: translateY(-50%); left: 0; width: 100%; -webkit-appearance: none; background: transparent; pointer-events: none; z-index: 2; margin: 0; padding: 0; }
.range-input-dual:focus { outline: none; }
.range-input-dual::-webkit-slider-thumb { -webkit-appearance: none; height: 22px; width: 22px; border-radius: 50%; background: #ffffff; border: 3px solid #00a89d; cursor: pointer; pointer-events: auto; box-shadow: 0 2px 5px rgba(0,0,0,0.3); }
.range-input-dual::-moz-range-thumb { height: 22px; width: 22px; border-radius: 50%; background: #ffffff; border: 3px solid #00a89d; cursor: pointer; pointer-events: auto; box-shadow: 0 2px 5px rgba(0,0,0,0.3); }
.filter-control { width: 100%; padding: 12px 15px; border: 1px solid #555; background-color: #fff; color: #000; font-size: 13px; border-radius: 2px; outline: none; transition: border-color 0.3s; }
.filter-control:focus { border-color: #ff9800; }
.btn-search { background-color: #00a89d; border: none; padding: 12px 20px; color: #fff; text-transform: uppercase; font-weight: 700; width: 100%; border-radius: 2px; transition: background-color 0.3s; }
.btn-search:hover { background-color: #e68a00; }

.project-card-full { margin-bottom: 30px; }
.pc-details { background-color: #ffffff; padding: 15px 8px; border: 1px solid #e0e0e0; border-top: none; }
.pc-detail-item { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #eee; font-size: 14px; }
.pc-detail-item:last-child { border-bottom: none; padding-bottom: 0; }
.pcd-left { display: flex; align-items: center; gap: 10px; color: #555; }
.pcd-icon { font-size: 14px; color: #888; width: 16px; text-align: center; }
.pcd-value { font-weight: 700; color: #333; }

.custom-pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 40px; }
.page-num, .page-arrow { display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; background-color: #ffffff; color: #333333; text-decoration: none; border: 1px solid #ddd; transition: 0.3s; font-size: 14px; font-weight: 700; }
.page-num:hover, .page-arrow:hover { background-color: #f5f5f5; color: #ff9800; text-decoration: none; }
.page-num.active { background-color: #00a89d; border-color: #00a89d; color: #ffffff; }
.page-dots { color: #ffffff; font-weight: 700; letter-spacing: 2px; padding: 0 5px; }

/* =========================================
   BUILDING PAGE SPECIFIC BLOCKS
   ========================================= */
.service-block { margin-bottom: 30px; }
.service-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 25px; padding-bottom: 10px; border-bottom: 1px solid #888; display: inline-block; }
.service-text { color: #ff1a1a; font-size: 13px; line-height: 1.8; text-transform: uppercase; font-weight: 700; }
.service-list { list-style: none; padding: 0; margin: 0; }
.service-list li { color: #ff1a1a; font-size: 13px; line-height: 1.8; margin-bottom: 10px; text-transform: uppercase; position: relative; padding-left: 15px; font-weight: 700; }
.service-list li::before { content: "-"; position: absolute; left: 0; top: 0; }

.portfolio-title { text-align: center; font-size: 20px; color: #fff; margin-bottom: 50px; }
.portfolio-card { background-color: #fff; margin-bottom: 30px; display: block; text-decoration: none !important; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.portfolio-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.5); }
.portfolio-img { width: 100%; height: 220px; object-fit: cover; display: block; }
.portfolio-caption { padding: 15px; text-align: center; color: #333; font-size: 12px; font-weight: 700; }

/* =========================================
   BLOG PAGE SPECIFIC BLOCKS
   ========================================= */
.blog-section { padding: 120px 0 80px 0; background-color: #4a4a4a; min-height: calc(100vh - 180px); }
.blog-card { background-color: #ffffff; display: block; text-decoration: none !important; transition: transform 0.3s ease, box-shadow 0.3s ease; margin-bottom: 30px; border-radius: 2px; overflow: hidden; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.4); }
.blog-img { width: 100%; height: 220px; object-fit: cover; border-bottom: 3px solid #ff9800; }
.blog-title { padding: 25px 20px; text-align: center; color: #333333; font-size: 15px; font-weight: 700; margin: 0; line-height: 1.5; }

/* =========================================
   ARTICLE PAGE & CKEDITOR OUTPUT BLOCKS
   ========================================= */
.article-section { padding: 120px 0 80px 0; background-color: #4a4a4a; min-height: calc(100vh - 180px); }
.article-wrapper { background-color: #3d3d3d; padding: 50px; border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); margin-bottom: 40px; }
.article-main-title { font-size: 26px; font-weight: 700; color: #ff9800; text-align: center; margin-top: 0; margin-bottom: 40px; padding-bottom: 20px; border-bottom: 1px solid #555; }

.ckeditor-output-container { background-color: #fff; padding: 40px; border-radius: 4px; margin-top: 40px; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.ckeditor-output-container::after { content: ""; display: table; clear: both; }
.ckeditor-output-container img { max-width: 100%; height: auto; cursor: zoom-in; }
.article-content p { font-size: 15px; line-height: 1.8; color: #dcdcdc; margin-bottom: 20px; }
.article-content strong, .article-content b { color: #000; font-weight: 700; }
.article-content h1, .article-content h2, .article-content h3, .article-content h4 { color: #ffffff; margin-top: 35px; margin-bottom: 15px; font-weight: 700; line-height: 1.4; }
.article-content h2 { font-size: 22px; }
.article-content h3 { font-size: 18px; }
.article-content ul, .article-content ol { margin-bottom: 20px; padding-left: 20px; }
.article-content li { font-size: 15px; line-height: 1.8; color: #dcdcdc; margin-bottom: 10px; }
.article-content a { color: #ff9800; text-decoration: underline; transition: color 0.3s; }
.article-content a:hover { color: #e68a00; }
.article-content table { border-collapse: collapse; color: #000; max-width: 100%; margin-bottom: 20px; }
.article-content td, .article-content th { border: 1px solid #777; padding: 8px 15px; }
.article-content th h3 { margin: 0; }

/* =========================================
   PROJECT DETAILS PAGE SPECIFIC BLOCKS
   ========================================= */
.project-details-section { padding: 90px 0 80px 0; background-color: #fff; }

.pd-main-slider-wrapper {
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    margin-bottom: 10px;
    background-color: #f5f5f5;
}

.pd-main-slide img, .pd-main-slide video, .pd-thumb-slide img, .pd-thumb-slide video { 
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
}
.is-mirrored .pd-main-slide img, .is-mirrored .pd-main-slide video, .is-mirrored .pd-thumb-slide img {
    transform: scaleX(-1);
}

.mirror-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 15;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: 1px solid #fff;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}
.mirror-btn:hover { background: #ff9800; border-color: #ff9800; }

.pd-main-slide img, .pd-main-slide video { 
    width: 100%; 
    height: 100%; 
    object-fit: contain; 
    display: block; 
    cursor: zoom-in;
}

.pd-main-slider .custom-chevron { font-size: 40px; color: #fff; position: absolute; top: 50%; transform: translateY(-50%); cursor: pointer; z-index: 10; opacity: 0.8; text-shadow: 0 2px 5px rgba(0,0,0,0.5); }
.pd-main-slider .chevron-left { left: 20px; }
.pd-main-slider .chevron-right { right: 20px; }

.pd-thumb-slider { margin: 0 -5px; }
.pd-thumb-slide { padding: 0 5px; cursor: pointer; outline: none; }
.pd-thumb-slide img, .pd-thumb-slide video { 
    width: 100%; 
    height: 90px; 
    object-fit: contain; 
    background-color: #f5f5f5;
    opacity: 0.5; 
    border: 2px solid transparent; 
}
.pd-thumb-slide.slick-current img, .pd-thumb-slide.slick-current video { opacity: 1; border-color: #00a89d; }

.pd-info-box { background-color: #ffffff; padding: 15px; border-radius: 4px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.pd-title { font-size: 30px; font-weight: 700; color: #333; margin: 0 0 15px 0; padding-bottom: 15px; border-bottom: 1px solid #eee; }
.pd-area { font-size: 30px; font-weight: 700; color: #333; margin-bottom: 25px; }
.pd-price-block { margin-bottom: 25px; }
.pd-price-label { display: block; font-size: 16px; color: #888; margin-bottom: 5px; }
.pd-price-value { font-size: 30px; font-weight: 700; color: #333; }
.pd-action-btn { background-color: #00a89d; color: #fff; display: block; width: 100%; padding: 15px; font-weight: 700; font-size: 14px; text-transform: uppercase; margin-bottom: 25px; border-radius: 2px; transition: background-color 0.3s; }
.pd-action-btn:hover { background-color: #008f85; color: #fff; text-decoration: none; }
.pd-timeline { font-size: 13px; color: #555; line-height: 1.6; border-top: 1px solid #eee; padding-top: 20px; padding-bottom: 20px;}
.pd-timeline strong { color: #333; font-size: 16px; display: block; margin-top: 5px; }

.pd-timeline-2 { font-size: 13px; color: #555; line-height: 1.6; border-top: 1px solid #eee; padding-top: 20px; padding-bottom: 20px;}
.pd-timeline-2 strong { color: #333; font-size: 16px; display: block; margin-top: 5px; }

.pd-timeline-2 span { color: #333; font-size: 18px; font-weight: bold; display: block; margin-top: 5px; }

.custom-pricing-accordion { margin-top: 40px; border-top: 1px solid #666; }
.cpa-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; color: #000; }
.cpa-header h4 { font-size: 18px; margin: 0; font-weight: 400; }
.cpa-icon { font-size: 16px; transition: transform 0.3s; color: #aaa; }
.cpa-header.collapsed .cpa-icon { transform: rotate(-90deg); }
.cpa-body { padding: 20px 0 40px 0; display: flex; flex-wrap: wrap; gap: 20px; }
.cpa-box { background-color: #ffffff; padding: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); height: 100%; display: flex; flex-direction: column; }
.cpa-box-title { color: #555555; font-size: 14px; margin-bottom: 15px; font-weight: 700; line-height: 1.5; }
.cpa-list-dark, .cpa-list-red { list-style: none; padding: 0; margin: 0 0 20px 0; }
.cpa-list-dark li, .cpa-list-red li { position: relative; padding-left: 15px; margin-bottom: 8px; font-size: 14px; line-height: 1.6; font-weight: 700; }
.cpa-list-dark li { color: #555555; }
.cpa-list-dark li::before { content: "•"; position: absolute; left: 0; top: 0; color: #555555; font-size: 16px; line-height: 1.2; }
.cpa-list-red li { color: #ff1a1a; }
.cpa-list-red li::before { content: "•"; position: absolute; left: 0; top: 0; color: #ff1a1a; font-size: 16px; line-height: 1.2; }
.cpa-total-red { color: #ff1a1a; font-size: 14px; font-weight: 700; margin-bottom: 20px; }
.cpa-text-block { color: #777777; font-size: 15px; line-height: 1.6; font-weight: 400; margin-bottom: 10px; }
.cpa-text-block:last-child { margin-bottom: 0; }

/* =========================================
   CUSTOM LIGHTBOX WITH NAVIGATION
   ========================================= */
.custom-lightbox {
    display: none;
    position: fixed;
    z-index: 9999999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.custom-lightbox.show {
    display: flex !important;
}

.lightbox-content {
    margin: auto !important;
    display: block !important;
    float: none !important;
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    transition: transform 0.4s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 4;
}

.lightbox-close:hover {
    color: #ff9800;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 3;
    padding: 20px;
    user-select: none;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover, .lightbox-next:hover { color: #ff9800; }

.is-mirrored-lightbox {
    transform: scaleX(-1);
}

/* Dynamic Image Wrapper for CKEditor DB Images */
.article-img-wrapper {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.article-img-wrapper img {
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.article-mirror-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 15;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: 1px solid #fff;
    width: 35px;
    height: 35px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-mirror-btn:hover {
    background: #ff9800;
    border-color: #ff9800;
}

.is-mirrored-img {
    transform: scaleX(-1) !important;
}

/* =========================================
   FAQ SECTION (Shared)
   ========================================= */
.faq-section { padding: 30px 0; background-color: #4a4a4a; }
.faq-section h3 { margin-bottom: 40px; font-size: 22px; color: #fff; }
.panel-group .panel { background: transparent; border: none; border-bottom: 1px solid rgba(255, 255, 255, 0.2); border-radius: 0; box-shadow: none; margin-top: 0 !important; }
.panel-group .panel-heading { background: transparent; border: none; padding: 0; }
.panel-title a { color: #ffffff; text-decoration: none; display: flex; justify-content: space-between; align-items: center; padding: 18px 0; font-size: 15px; font-weight: 400; transition: color 0.3s; }
.panel-title a:hover, .panel-title a:focus { color: #ff9800; text-decoration: none; }
.panel-title a::after { content: ""; display: inline-block; width: 10px; height: 10px; border-right: 1px solid #ccc; border-bottom: 1px solid #ccc; transform: rotate(45deg); transition: transform 0.3s ease; margin-right: 10px; }
.panel-title a:not(.collapsed)::after { transform: rotate(-135deg); margin-top: 6px; }
.panel-body { color: #ffffff; border-top: none !important; padding: 0 0 20px 0; font-size: 13px; line-height: 1.6; }

/* =========================================
   PROJECTS CAROUSEL & CARDS (Shared)
   ========================================= */
.projects-carousel-section { background-color: #575757; padding: 30px 0 100px 0; overflow: hidden; }
.projects-header-wrapper { margin-bottom: 40px; }
.project-slide-item { padding: 0 5px; outline: none; }
.project-card-link { display: block; border: 2px solid #fff; background: #fff; text-decoration: none !important; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.project-card-link:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.5); }
.pc-header { display: flex; align-items: stretch; }
.pc-id { background-color: #00a89d; color: #fff; font-weight: 700; padding: 12px 15px; flex: 1; font-size: 16px; }
.pc-area { background-color: #000; color: #fff; font-weight: 700; padding: 12px 15px; font-size: 16px; min-width: 100px; text-align: right; }
.pc-image { width: 100%; height: 175px; object-fit: cover; display: block; }
.slick-slider { position: relative; }
.projects-slider .custom-chevron { font-size: 60px; font-weight: 100; color: #fff; position: absolute; top: 50%; transform: translateY(-50%); cursor: pointer; z-index: 10; opacity: 0.7; transition: opacity 0.3s; }
.projects-slider .custom-chevron:hover { opacity: 1; }
.projects-slider .chevron-left { left: -40px; }
.projects-slider .chevron-right { right: -40px; }
.slick-dots { position: absolute; bottom: -50px; list-style: none; display: flex !important; justify-content: center; width: 100%; padding: 0; margin: 0; }
.slick-dots li { margin: 0 5px; cursor: pointer; }
.slick-dots li button { font-size: 0; line-height: 0; display: block; width: 12px; height: 12px; padding: 5px; cursor: pointer; color: transparent; border: 1px solid #fff; outline: none; background: transparent; border-radius: 50%; }
.slick-dots li.slick-active button { background-color: #fff; }


.car-specs {
    width: 100%;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
}

.spec-name {
    font-weight: 500;
}

.spec-value {
    font-weight: 600;
}


/* =========================================
   FOOTER (Shared)
   ========================================= */
.main-footer { background-color: #3d3d3d; padding: 40px 0 20px 0; border-top: 1px solid #222; }
.footer-title { color: #fff; font-size: 18px; margin-bottom: 20px; display: none; }
.footer-contacts { display: flex; justify-content: center; gap: 40px; margin-bottom: 20px; }
.footer-link { color: #e0e0e0; text-decoration: none; font-size: 14px; transition: all 0.3s ease; padding: 5px 0; border-bottom: 1px dashed rgba(224, 224, 224, 0.5); }
.footer-link:hover { color: #ff9800; border-bottom: 1px solid #ff9800; text-decoration: none; }
.footer-copyright { text-align: center; color: #888; font-size: 12px; margin-top: 30px; border-top: 1px solid #555; padding-top: 20px; }

/* =========================================
   GLOBAL RESPONSIVE RULES
   ========================================= */
@media (max-width: 991px) {
    .info-text-content { padding: 30px 15px; text-align: center; }
    .pricing-card-v2 { margin-bottom: 30px; }
    .article-wrapper { padding: 30px 20px; }
    .pd-info-box { margin-top: 15px; }
    .pd-included-box { margin-bottom: 30px; }
}

@media (max-width: 767px) {
    body { padding-top: 140px; }
    
    .top-bar-wrapper { flex-direction: column; gap: 10px; }
    .top-bar-left, .top-bar-right, .top-bar-center { justify-content: center; }
    
    .hero { padding-bottom: 100px; }
    .hero h1 { font-size: 18px; padding: 10px; }
    .video-control-btn { display: none !important; }
    
    .main-hero-slider { height: 25vh; }
    .hero-slide-item { height: 25vh; }
    
    .stat-box-outlined { margin-bottom: 20px; text-align: center; }
    .stat-number { justify-content: center; }
    .flex-v-center { display: flex; flex-direction: column; }
    .order-mobile-1 { order: 1; }
    .order-mobile-2 { order: 2; }
    
    .work-step-box { text-align: center; }
    .work-step-icon { margin: 0 auto 20px auto; }

    .pricing-row-flex { flex-direction: column; }
    .pricing-row-flex > .col-md-4 { width: 100%; }

    .extra-info-title-v2 { font-size: 13px; white-space: normal; }
    .extra-info-list { margin-bottom: 30px; }
    
    .blog-section { padding-top: 60px; }
    .article-section { padding-top: 60px; }
    .article-wrapper { padding: 20px 15px; }
    .article-main-title { font-size: 20px; margin-bottom: 20px; padding-bottom: 15px; }
    
    .article-content img { float: none !important; width: 100% !important; margin: 0 0 20px 0 !important; }
    .article-content table { float: none !important; width: 100% !important; margin: 0 auto 20px auto !important; }
    
    .projects-list-section { padding-top: 10px; }
    .filter-item { width: 100%; }
    
    .project-details-section { padding-top: 40px; }
    .pd-main-slide img, .pd-main-slide video { height: 100%; object-fit: contain; }
    .pd-thumb-slide img, .pd-thumb-slide video { height: 60px; object-fit: contain; }
    .cpa-body { flex-direction: column; }
    
    .projects-slider .chevron-left { left: 0px; }
    .projects-slider .chevron-right { right: 0px; }
    .projects-slider { padding: 0 30px; } 

    .footer-title { display: block; text-align: right; margin-bottom: 10px; }
    .footer-contacts { flex-direction: column; align-items: flex-end; gap: 0; margin-bottom: 30px; }
    .footer-link { border-bottom: 1px solid rgba(255,255,255,0.2); width: 100%; text-align: right; padding: 12px 0; }
    .footer-link:last-child { border-bottom: none; }
    .footer-link:hover { border-bottom-color: #ff9800; }
    
    .lightbox-prev, .lightbox-next { font-size: 30px; padding: 10px; }
    .lightbox-prev { left: 5px; }
    .lightbox-next { right: 5px; }
}

@media (min-width: 768px) {
    .hero { background: none; padding-bottom: 50px; } 
    .hero-video { display: block; } 
    .hero h1 { max-width: 80%; } 
}

