/**
 * Sections Styles for Kelo Theme
 * @package Kelo
 * @since 1.0.0
 */

/* ==========================================================================
   Global Section Styles
   ========================================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-blue-primary);
    margin-bottom: 20px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    color: white;
    position: relative;
    overflow: hidden;
}

/* Hero content - layout controlled in style.css */

/* Hero text h1 - controlled in style.css via .hero-heading */

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-button {
    display: inline-block;
    background: white;
    color: var(--color-blue-primary);
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   About Us Section
   ========================================================================== */

.about-section {
    padding: 120px 60px;
    background: #ffffff;
}

.page-template-template-home .about-section {
    padding: 120px 60px 50px;
}

.about-container {
    max-width: 1320px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: clamp(40px, 8vw, 120px);
    align-items: flex-start;
    justify-content: space-between;
}

.about-text {
    flex: 0 0 500px;
    min-width: 0;
}

.about-title {
    font-family: Manrope;
    font-size: 57px;
    font-style: normal;
    font-weight: 600;
    line-height: 64px;
    color: #202225;
    margin: 0 0 24px 0;
}

.about-description {
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 200;
    line-height: 28px;
    color: #868080;
    margin: 0;
}

.about-image {
    flex: 0 1 660px;
    max-width: 100%;
    min-width: 0;
}

.about-image img {
    width: 100%;
    height: 510px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* ==========================================================================
   Advantages Section
   ========================================================================== */

.advantages-section {
    padding: 60px 60px;
    background: var(--color-blue-primary);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.advantage-item {
    text-align: left;
}

.advantage-number {
    color: #FFF;
    font-family: Manrope;
    font-size: 19px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    margin: 0;
    text-align: left;
}

.advantage-text {
    color: #FFF;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 200;
    line-height: 28px;
    margin: 0;
    text-align: left;
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services-section {
    padding: 60px 60px 100px;
}

/* Services Section on Home page */
.page-template-template-home .services-section {
    padding: 120px 60px 0px;
}

/* Services Section on About page */
.page-template-template-about .services-section {
    padding: 0 60px 100px;
}

/* SEO Content Section on About page */
.page-template-template-about .seo-content-section {
    padding: 120px 60px;
}

.services-description {
    font-weight: 200;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.services-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-more-button {
    background: #12426A;
    color: #ffffff;
    font-family: Manrope;
    font-size: 15px;
    font-weight: 600;
    line-height: 50px;
    padding: 0 28px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.services-more-button:hover {
    background: #1a5a8f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: #ffffff;
}

.service-card {
    background: white;
    padding: 0px;
    transition: transform 0.3s ease;
    text-align: center;
}

.service-icon {
    margin-bottom: 50px;
}

.service-icon img {
    width: 74px;
    height: 74px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--color-blue-primary);
}

.service-description {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: var(--color-blue-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-link:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Ticker Section
   ========================================================================== */
/* Ticker styles moved to style.css */

/* ==========================================================================
   CTA Sections
   ========================================================================== */

.cta-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 66, 106, 0.85);
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--color-blue-primary);
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* ==========================================================================
   Trending Products Section (styles moved to style.css)
   ========================================================================== */

/* ==========================================================================
   Projects Section
   ========================================================================== */

.projects-section {
    padding: 80px 60px;
    background: #ffffff;
}

.page-template-template-home .projects-section {
    padding: 40px 60px 80px;
}

.projects-spacing-top {
    height: 0;
}

.projects-header-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 60px 0;
}

.projects-header {
    text-align: center;
}

.projects-title {
    font-family: Manrope;
    font-size: 57px;
    font-style: normal;
    font-weight: 600;
    line-height: 57px;
    color: #1f242e;
    margin: 0;
}

.projects-description {
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    color: #797c7f;
    margin: 0;
}

.projects-spacing-middle {
    height: 0;
}

.projects-slider-container {
    max-width: 1320px;
    margin: 0 auto;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 16px;
}

.project-card {
    position: relative;
    height: 329px;
    border-radius: 10px;
    overflow: hidden;
}

.project-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.project-background {
    position: relative;
    width: 100%;
    height: 100%;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 84.269%);
}

.project-content {
    position: absolute;
    left: 52px;
    right: 52px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: center;
}

.project-category {
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #FFFEFE;
    opacity: 0.9;
    margin: 0 0 19.6px 0;
}

.project-name {
    font-family: Manrope;
    font-size: 47px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    color: #FFFEFE;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    padding-bottom: 4px;
}

.projects-slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 16px 0;
}

.project-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E4DFDF;
    border: none;
    cursor: pointer;
    opacity: 1;
}

.project-dot.active {
    background: #12426A;
}

@media (max-width: 768px) {
    .projects-section,
    .page-template-template-home .projects-section {
        padding: 20px 10px 0;
    }

    .page-template-template-home .projects-header {
        text-align: center;
        gap: 0px;
    }
}

/* ==========================================================================
   Info Block Section
   ========================================================================== */

.info-section {
    padding: 100px 0;
}

.info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-text h2 {
    margin-bottom: 20px;
}

.info-button {
    display: inline-block;
    background: var(--color-blue-primary);
    color: white;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.info-button:hover {
    background: #1a5a8f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: #ffffff;
}

.info-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */

.why-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    width: 70px;
    height: 70px;
}

.feature-item h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--color-blue-primary);
}

.feature-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */

.reviews-section {
    padding: 100px 0;
}

.reviews-widget {
    margin-top: 40px;
    text-align: center;
}

/* ==========================================================================
   Latest News Section
   ========================================================================== */

.news-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.news-image {
    overflow: hidden;
    aspect-ratio: 16/9;
}

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

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 25px;
}

.news-meta {
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
}

.news-title {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 15px;
}

.news-title a {
    color: #333;
    text-decoration: none;
}

.news-title a:hover {
    color: var(--color-blue-primary);
}

.news-excerpt {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.news-link {
    color: var(--color-blue-primary);
    font-weight: 600;
    text-decoration: none;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-section {
    padding: 60px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-template-template-home .faq-section {
    padding: 105px 60px 60px;
}

.faq-title-wrapper {
    max-width: 500px;
    width: 100%;
    height: 114px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 57px;
    line-height: 57px;
    text-align: center;
    color: #202225;
}

.faq-spacing {
    height: 45px;
}

.faq-container {
    width: 100%;
    max-width: 1320px;
    padding: 0;
}

.faq-item {
    border-top: 1px solid #e4dfdf;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 0;
    text-align: left;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    color: #202225;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.faq-question-text {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.faq-arrow-closed,
.faq-arrow-open {
    width: 22px;
    height: 22px;
    position: absolute;
    transition: opacity 0.3s ease;
}

.faq-arrow-open {
    opacity: 0;
}

.faq-item-open .faq-arrow-closed {
    opacity: 0;
}

.faq-item-open .faq-arrow-open {
    opacity: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.faq-item-open .faq-answer {
    max-height: 500px;
    padding-bottom: 15px;
}

.faq-answer p {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 32px;
    color: #797c7f;
    margin: 0;
}

/* ==========================================================================
   SEO Content Section
   ========================================================================== */
/* ---------- SEO Content Section ---------- */
.seo-content-section {
    padding: 20px 60px 80px 60px;
    background: #ffffff;
}

.seo-content-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0;
}

/* --- Wrapper with scrollbar --- */
.seo-content-wrapper {
    display: flex;
    gap: 24px;
}

/* --- Rich Text --- */
.seo-content-text {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    flex: 1;
    max-height: 340px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.seo-content-text::-webkit-scrollbar {
    display: none;
}

/* --- Custom Scrollbar --- */
.seo-content-scrollbar {
    position: relative;
    width: 3px;
    flex-shrink: 0;
    height: 340px;
}

.seo-content-scrollbar-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #E9E9E9;
    border-radius: 2px;
}

.seo-content-scrollbar-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    background: #12426A;
    border-radius: 2px;
    min-height: 30px;
}

.seo-content-text p {
    margin: 0 0 20px;
}

.seo-content-text p:last-child {
    margin-bottom: 0;
}

.seo-content-text h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.3;
    color: #1f242e;
    margin: 40px 0 16px;
}

.seo-content-text h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    color: #1f242e;
    margin: 32px 0 12px;
}

.seo-content-text h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    color: #1f242e;
    margin: 24px 0 10px;
}

.seo-content-text h5 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    color: #1f242e;
    margin: 20px 0 8px;
}

.seo-content-text h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.3;
    color: #1f242e;
    margin: 16px 0 8px;
}

.seo-content-text h2:first-child,
.seo-content-text h3:first-child,
.seo-content-text h4:first-child,
.seo-content-text h5:first-child,
.seo-content-text h6:first-child {
    margin-top: 0;
}

.seo-content-text a {
    color: #12426A;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.seo-content-text a:hover {
    color: #1A5A8F;
}

.seo-content-text strong,
.seo-content-text b {
    font-weight: 600;
    color: #1f242e;
}

.seo-content-text em,
.seo-content-text i {
    font-style: italic;
}

.seo-content-text u {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.seo-content-text s,
.seo-content-text del,
.seo-content-text strike {
    text-decoration: line-through;
}

.seo-content-text sub {
    vertical-align: sub;
    font-size: 0.8em;
}

.seo-content-text sup {
    vertical-align: super;
    font-size: 0.8em;
}

.seo-content-text hr {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 24px 0;
}

/* Lists */
.seo-content-text ul,
.seo-content-text ol {
    margin: 0 0 20px;
    padding-left: 24px;
}

.seo-content-text ul {
    list-style-type: disc;
}

.seo-content-text ol {
    list-style-type: decimal;
}

.seo-content-text li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.seo-content-text li:last-child {
    margin-bottom: 0;
}

.seo-content-text ul ul,
.seo-content-text ol ol,
.seo-content-text ul ol,
.seo-content-text ol ul {
    margin: 8px 0 0;
}

/* Tables */
.seo-content-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.5;
}

.seo-content-text th,
.seo-content-text td {
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    text-align: left;
    vertical-align: top;
}

.seo-content-text th {
    background: #f5f5f5;
    font-weight: 600;
    color: #1f242e;
}

.seo-content-text tr:nth-child(even) td {
    background: #fafafa;
}

/* Images */
.seo-content-text img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 16px 0;
    display: block;
}

.seo-content-text figure {
    margin: 24px 0;
}

.seo-content-text figcaption {
    font-size: 14px;
    color: #797c7f;
    margin-top: 8px;
    text-align: center;
}

/* Blockquote */
.seo-content-text blockquote {
    margin: 24px 0;
    padding: 16px 24px;
    border-left: 4px solid #12426A;
    background: #f8f9fa;
    font-style: italic;
    color: #4a4a4a;
}

.seo-content-text blockquote p:last-child {
    margin-bottom: 0;
}

/* --- SEO FAQ Block --- */
.seo-faq {
    margin-top: 48px;
    border-top: 1px solid #e0e0e0;
    padding-top: 48px;
}

.seo-faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.seo-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    font-family: 'Manrope', sans-serif;
}

.seo-faq-question-text {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    color: #1f242e;
}

.seo-faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #12426A;
}

.seo-faq-icon-minus {
    display: none;
}

.seo-faq-item-open .seo-faq-icon-plus {
    display: none;
}

.seo-faq-item-open .seo-faq-icon-minus {
    display: block;
}

.seo-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 0;
}

.seo-faq-item-open .seo-faq-answer {
    max-height: 1000px;
    padding: 0 0 24px;
}

.seo-faq-answer div {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
}

.seo-faq-answer p {
    margin: 0 0 12px;
}

.seo-faq-answer p:last-child {
    margin-bottom: 0;
}

/* --- SEO Content Responsive --- */
@media (max-width: 1024px) {
    .seo-content-container {
        padding: 0 30px;
    }

    .seo-content-text h2 {
        font-size: 28px;
    }

    .seo-content-text h3 {
        font-size: 22px;
    }

    .seo-content-text h4 {
        font-size: 18px;
    }

    .seo-content-text h5 {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .seo-content-section,
    .page-template-template-about .seo-content-section {
        padding: 40px 10px;
    }

    .seo-content-container {
        padding: 0 15px;
    }

    .seo-content-text {
        font-size: 15px;
        max-height: 280px;
    }

    .seo-content-scrollbar {
        height: 280px;
    }

    .seo-content-text h2 {
        font-size: 24px;
        margin: 32px 0 12px;
    }

    .seo-content-text h3 {
        font-size: 20px;
        margin: 24px 0 10px;
    }

    .seo-content-text h4 {
        font-size: 17px;
        margin: 20px 0 8px;
    }

    .seo-content-text h5 {
        font-size: 16px;
        margin: 16px 0 6px;
    }

    .seo-content-text h6 {
        font-size: 15px;
        margin: 14px 0 6px;
    }

    /* Responsive table scroll */
    .seo-content-text table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .seo-content-text th,
    .seo-content-text td {
        padding: 10px 12px;
        font-size: 14px;
        white-space: nowrap;
    }

    .seo-faq {
        margin-top: 36px;
        padding-top: 36px;
    }

    .seo-faq-question-text {
        font-size: 16px;
    }

    .seo-faq-question {
        padding: 16px 0;
    }
}

@media (max-width: 480px) {
    .seo-content-text h2 {
        font-size: 22px;
    }

    .seo-content-text h3 {
        font-size: 18px;
    }

    .seo-content-text h4 {
        font-size: 16px;
    }

    .seo-content-text h5 {
        font-size: 15px;
    }

    .seo-faq-question-text {
        font-size: 15px;
    }
}

/* ==========================================================================
   404 Error Page
   ========================================================================== */
.error-404-section {
    padding: 60px 0 100px;
    background: #ffffff;
}

.error-404-container {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
}

.error-404-number {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 315px;
    line-height: 1;
    letter-spacing: -3.15px;
    color: rgba(18, 59, 113, 0.2);
    margin-bottom: 20px;
}

.error-404-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 47px;
    line-height: 1.1;
    color: #1f242e;
    margin: 0 0 16px 0;
}

.error-404-description {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.7;
    color: #797c7f;
    margin: 0 0 32px 0;
}

.error-404-button {
    display: inline-block;
    background: #12426a;
    color: #fffefe;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 21px;
    text-decoration: none;
    padding: 17px 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.error-404-button:hover {
    background: #1a5a8f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: #ffffff;
}

/* 404 Responsive */
@media (max-width: 1024px) {
    .error-404-number {
        font-size: 200px;
    }

    .error-404-title {
        font-size: 36px;
    }

    .error-404-container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .error-404-number {
        font-size: 120px;
        letter-spacing: -1.5px;
    }

    .error-404-title {
        font-size: 28px;
    }

    .error-404-description {
        font-size: 15px;
    }

    .error-404-container {
        padding: 0 15px;
    }
}

/* ==========================================================================
   Text Page Styles
   ========================================================================== */

.text-page-section {
    padding: 0 0 120px;
    background: #fff;
}

.text-page-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 60px 0;
}

.text-page-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 57px;
    line-height: 1;
    color: #1f242e;
    margin: 0 0 53px;
}

.text-page-content {
    width: 100%;
}

.text-page-content p {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #797c7f;
    margin: 0 0 24px;
}

.text-page-content p:last-child {
    margin-bottom: 0;
}

.text-page-content h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.2;
    color: #1f242e;
    margin: 40px 0 20px;
}

.text-page-content h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    color: #1f242e;
    margin: 32px 0 16px;
}

.text-page-content ul,
.text-page-content ol {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #797c7f;
    margin: 0 0 24px;
    padding-left: 24px;
}

.text-page-content li {
    margin-bottom: 8px;
}

.text-page-content a {
    color: #1f242e;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.text-page-content a:hover {
    color: #797c7f;
}

@media (max-width: 1024px) {
    .text-page-container {
        padding: 0 30px;
    }

    .text-page-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .text-page-section {
        padding: 0 0 80px;
    }

    .text-page-container {
        padding: 10px 15px 0;
    }

    .text-page-title {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .text-page-content h2 {
        font-size: 24px;
    }

    .text-page-content h3 {
        font-size: 20px;
    }
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .info-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-title {
        font-size: 36px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .advantage-number {
        line-height: 16px;
    }

    .services-grid,
    .projects-grid,
    .features-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .ticker-item {
        font-size: 46px;
        padding: 0 20px;
    }
}

/* ==========================================================================
   Breadcrumbs Section
   ========================================================================== */

.breadcrumbs-section {
    padding: 24px 60px;
    background: #ffffff;
}

.breadcrumbs-container {
    max-width: 1320px;
    margin: 0 auto;
    /* padding: 0 60px; */
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
}

.breadcrumb-link {
    color: #797c7f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #1f242e;
}

.breadcrumb-separator {
    color: #797c7f;
}

.breadcrumb-current {
    color: #1f242e;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .breadcrumbs-container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .breadcrumbs-section {
        padding: 24px 10px;
    }

    .breadcrumbs-container {
        padding: 0 10px;
    }

    .breadcrumbs {
        font-size: 13px;
    }
}

/* ==========================================================================
   About Us Section (About Page)
   ========================================================================== */

.about-us-section {
    padding: 60px 60px 0;
    background: #ffffff;
}

.about-us-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    gap: 98px;
    align-items: flex-start;
}

.about-us-image {
    flex-shrink: 0;
    width: 630px;
}

.about-us-image img {
    width: 100%;
    height: 724px;
    object-fit: cover;
    border-radius: 12px;
}

.about-us-content {
    flex: 1;
    padding-top: 0;
}

.about-us-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 57px;
    line-height: 57px;
    color: #1f242e;
    margin: 0 0 22px;
}

.about-us-description {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 28.9px;
    color: #797c7f;
    margin: 0 0 45px;
}

.about-us-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 30px;
    margin-bottom: 45px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 90px;
    line-height: 90px;
    letter-spacing: -0.9px;
    color: #1f242e;
    text-align: left;
}

.stat-divider {
    width: 100%;
    max-width: 245px;
    height: 1px;
    background: #e4e4e4;
    margin: 22px 0 12px;
}

.stat-label {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 34px;
    color: #1f242e;
}

.about-us-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #12426a;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 50px;
    padding: 0 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-us-button:hover {
    background: #1a5a8f;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* About Us Section Responsive */
@media (max-width: 1200px) {
    .about-us-container {
        gap: 60px;
    }

    .about-us-image {
        width: 500px;
    }

    .about-us-image img {
        height: 600px;
    }

    .about-us-title {
        font-size: 48px;
        line-height: 48px;
    }

    .stat-number {
        font-size: 70px;
        line-height: 70px;
    }

    .stat-label {
        font-size: 20px;
        line-height: 28px;
    }
}

@media (max-width: 1024px) {
    .about-us-container {
        padding: 0 30px;
        flex-direction: column;
        gap: 40px;
    }

    .about-us-image {
        width: 100%;
    }

    .about-us-image img {
        height: 450px;
    }

    .about-us-title {
        font-size: 42px;
        line-height: 42px;
    }

    .stat-number {
        font-size: 60px;
        line-height: 60px;
    }
}

@media (max-width: 768px) {
    .about-us-section {
        padding: 0 0 80px;
    }

    .about-us-container {
        padding: 10px 20px 0;
    }

    .about-us-image img {
        height: 350px;
    }

    .about-us-title {
        font-size: 32px;
        line-height: 36px;
        margin-bottom: 16px;
    }

    .about-us-description {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 32px;
    }

    .about-us-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
        margin-bottom: 32px;
    }

    .stat-number {
        font-size: 42px;
        line-height: 42px;
    }

    .stat-divider {
        margin: 12px 0 8px;
    }

    .stat-label {
        font-size: 16px;
        line-height: 22px;
    }
}

/* ==========================================================================
   Team Section
   ========================================================================== */

.team-section {
    padding: 10px 60px 0;
    background: #ffffff;
}

.team-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.team-card-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.team-card-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.team-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(22, 18, 18, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card-image:hover .team-card-overlay {
    opacity: 1;
}

.team-card-social {
    display: flex;
    gap: 6px;
}

.team-card-social .social-icon {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-card-social .social-icon:hover {
    background: #f5f5f5;
}

.team-card-social .social-icon img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.team-card-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.team-card-name {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 28.8px;
    color: #1f242e;
    margin: 0;
}

.team-card-position {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #797c7f;
    margin: 0;
}

/* Team Section Responsive */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .team-card-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .team-card-image img {
        height: 350px;
    }

    .team-card-name {
        font-size: 20px;
        line-height: 24px;
    }

    .team-card-position {
        font-size: 14px;
        line-height: 18px;
    }
}

/* ==========================================================================
   Clients Section - Marquee/Running Line
   ========================================================================== */

.clients-section {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.clients-marquee {
    width: 100%;
    overflow: hidden;
}

.clients-track {
    display: flex;
    align-items: center;
    gap: 0;
    animation: clients-scroll 30s linear infinite;
    width: fit-content;
}

.clients-track:hover {
    animation-play-state: paused;
}

@keyframes clients-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.client-logo {
    flex-shrink: 0;
    width: 240px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.client-logo img {
    max-width: 215px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.client-placeholder {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #c4c4c4;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Clients Section Responsive */
@media (max-width: 768px) {
    .clients-section {
        padding: 40px 0;
    }

    .clients-track {
        gap: 20px;
    }

    .client-logo {
        width: 180px;
        height: 70px;
    }

    .client-logo img {
        max-width: 160px;
        max-height: 70px;
    }

    .client-placeholder {
        font-size: 18px;
    }

    .clients-track {
        animation-duration: 20s;
    }
}

/* ==========================================================================
   Single Service Page
   ========================================================================== */

.single-service {
    background: #ffffff;
}

.single-service-hero {
    padding: 60px 0 40px;
    text-align: center;
}

.single-service-hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.single-service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.single-service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.single-service-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 1.2;
    color: #1f242e;
    margin: 0 0 16px;
}

.single-service-subtitle {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #797c7f;
    margin: 0;
}

.single-service-image {
    padding: 0 0 60px;
}

.single-service-image-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.single-service-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.single-service-content {
    padding: 0 0 80px;
}

.single-service-content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.single-service-content h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.3;
    color: #1f242e;
    margin: 40px 0 20px;
}

.single-service-content h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    color: #1f242e;
    margin: 32px 0 16px;
}

.single-service-content p {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.7;
    color: #797c7f;
    margin: 0 0 20px;
}

.single-service-content ul,
.single-service-content ol {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.7;
    color: #797c7f;
    margin: 0 0 20px;
    padding-left: 24px;
}

.single-service-content li {
    margin-bottom: 8px;
}

.single-service-related {
    padding: 80px 0;
    background: #f8f9fa;
}

.single-service-related-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.single-service-related-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.2;
    color: #1f242e;
    margin: 0 0 40px;
    text-align: center;
}

.single-service-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.single-service-cta {
    padding: 80px 0;
    background: #12426a;
    text-align: center;
}

.single-service-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.single-service-cta-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 16px;
}

.single-service-cta-text {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 32px;
}

.single-service-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #12426a;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 50px;
    padding: 0 32px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.single-service-cta-button:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Single Service Responsive */
@media (max-width: 1024px) {
    .single-service-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .single-service-hero {
        padding: 40px 0 30px;
    }

    .single-service-title {
        font-size: 32px;
    }

    .single-service-subtitle {
        font-size: 16px;
    }

    .single-service-content h2 {
        font-size: 26px;
    }

    .single-service-content h3 {
        font-size: 20px;
    }

    .single-service-related {
        padding: 60px 0;
    }

    .single-service-related-title {
        font-size: 28px;
    }

    .single-service-related-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .single-service-cta {
        padding: 60px 0;
    }

    .single-service-cta-title {
        font-size: 28px;
    }
}

/* ==========================================================================
   Video Section
   ========================================================================== */

.video-section {
    padding: 0;
}

.video-container {
    max-width: 1130px;
    margin: 0 auto;
    padding: 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.video-background {
    position: relative;
    width: 100%;
    height: 520px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(16, 15, 15, 0.2);
    border-radius: 10px;
}

.video-play-button {
    position: relative;
    z-index: 2;
    width: 65px;
    height: 65px;
    background-color: #FFFFFF;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.video-play-button svg {
    margin-left: 3px;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
}

.video-modal-content {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 1000px;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: opacity 0.3s ease;
}

.video-modal-close:hover {
    opacity: 0.7;
}

.video-modal-iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-modal-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Video Section Responsive */
@media (max-width: 1024px) {
    .video-background {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .video-background {
        height: 300px;
    }

    .video-play-button {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .video-background {
        height: 220px;
    }

    .video-play-button {
        width: 50px;
        height: 50px;
    }
}

/* ==========================================================================
   Global Responsive Styles - Homepage & About Us
   ========================================================================== */

/* Tablet - 1200px */
@media (max-width: 1200px) {
    /* About Section (homepage) */
    .about-section {
        padding: 80px 40px;
    }

    .about-content {
        gap: 60px;
    }

    .about-text {
        flex: 0 0 45%;
    }

    .about-image {
        flex: 0 0 50%;
    }

    .about-title {
        font-size: 44px;
        line-height: 52px;
    }

    /* Services Section */
    .services-section {
        padding: 80px 0 0;
    }

    .services-wrapper {
        padding: 0 40px;
    }
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
    /* Hero Section - layout controlled in style.css */

    /* About Section (homepage) */
    .about-section {
        padding: 60px 30px;
    }

    .page-template-template-home .about-section {
        padding: 60px 20px 50px;
    }

    .page-template-template-home .services-section {
        padding: 60px 20px 0px;
    }

    .about-content {
        flex-direction: column;
        gap: 40px;
    }

    .about-text,
    .about-image {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .about-image img {
        height: auto;
    }

    .about-title {
        font-size: 38px;
        line-height: 46px;
    }

    /* About Us Section (About page) */
    .about-us-container {
        flex-direction: column;
        gap: 40px;
    }

    .about-us-image {
        width: 100%;
    }

    .about-us-image img {
        height: auto;
        max-height: 500px;
    }

    .about-us-title {
        font-size: 44px;
        line-height: 50px;
    }

    .stat-number {
        font-size: 60px;
        line-height: 60px;
    }

    /* Services Section */
    .services-wrapper {
        padding: 0 30px;
    }

    .services-header {
        flex-direction: column;
        gap: 24px;
    }

    .services-header-left,
    .services-header-right {
        max-width: 100%;
        padding: 0;
    }

    .services-title {
        font-size: 38px;
        line-height: 46px;
    }

    /* Video Section */
    .video-container {
        max-width: 100%;
        padding: 0 30px;
    }
}

/* Mobile - 768px */
@media (max-width: 768px) {
    /* Hero Section - controlled in style.css */

    .hero-text p {
        font-size: 16px;
    }

    .hero-button {
        padding: 14px 30px;
        font-size: 14px;
    }

    /* About Section (homepage) */
    .about-section {
        padding: 50px 20px;
    }

    .about-title {
        font-size: 32px;
        line-height: 40px;
    }

    .about-description {
        font-size: 15px;
        line-height: 24px;
    }

    /* About Us Section (About page) */
    .about-us-section {
        padding: 0 0 60px;
    }

    .about-us-container {
        padding: 0 20px;
    }

    .about-us-title {
        font-size: 32px;
        line-height: 40px;
    }

    .about-us-description {
        font-size: 15px;
        line-height: 24px;
    }

    .about-us-stats {
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
    }

    .stat-number {
        font-size: 48px;
        line-height: 48px;
    }

    .stat-label {
        font-size: 18px;
        line-height: 26px;
    }

    /* Services Section */
    .services-section {
        padding: 50px 20px 40px;
    }

    .page-template-template-about .services-section,
    .page-template-template-services .services-section {
        padding: 10px 20px 40px;
    }

    .services-wrapper {
        padding: 0;
    }

    .services-title {
        font-size: 28px;
        line-height: 36px;
    }

    .services-description {
        font-size: 15px;
        line-height: 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Advantages Section */
    .advantages-section {
        padding: 40px 20px;
    }

    .advantages-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    /* Video Section */
    .video-section {
        padding: 30px 0;
    }

    .video-container {
        padding: 0 20px;
    }

    /* Clients Section */
    .clients-section {
        padding: 40px 0;
    }

    .client-logo {
        width: 180px;
        height: 70px;
    }

    /* FAQ Section */
    .faq-section,
    .page-template-template-home .faq-section {
        padding: 50px 20px;
    }

    .faq-title {
        font-size: 32px;
        line-height: 40px;
    }

    .faq-question-text {
        font-size: 16px;
    }

    /* CTA Section */
    .cta-section {
        padding: 60px 20px;
    }

    .cta-title {
        font-size: 32px;
    }
}

/* Mobile Small - 480px */
@media (max-width: 480px) {
    /* About Section */
    .about-title {
        font-size: 28px;
        line-height: 36px;
    }

    /* About Us Section (About page) */
    .about-us-title {
        font-size: 28px;
        line-height: 36px;
    }

    .about-us-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stat-number {
        font-size: 40px;
        line-height: 40px;
    }

    .stat-label {
        font-size: 16px;
        line-height: 24px;
    }

    /* Services Section */
    .services-title {
        font-size: 24px;
        line-height: 32px;
    }

    .service-icon img {
        width: 60px;
        height: 60px;
    }

    /* Advantages Section */
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    /* Clients Section */
    .client-logo {
        width: 150px;
        height: 60px;
    }

    /* FAQ Section */
    .faq-title {
        font-size: 28px;
        line-height: 36px;
    }

    .faq-question-text {
        font-size: 15px;
    }
}

/* ==========================================================================
   Projects Section Responsive
   ========================================================================== */

@media (max-width: 1200px) {
    .projects-header-container {
        padding: 0 40px 45px;
    }

    .projects-slider-container {
        padding: 0 40px;
    }

    .projects-title {
        font-size: 48px;
        line-height: 52px;
    }

    .project-name {
        font-size: 38px;
        line-height: 42px;
        max-height: none;
    }
}

@media (max-width: 1024px) {
    .projects-header-container {
        padding: 0 30px 35px;
    }

    .projects-slider-container {
        padding: 0 30px;
    }

    .projects-title {
        font-size: 42px;
        line-height: 48px;
    }

    .project-card {
        height: 280px;
    }

    .project-content {
        left: 30px;
        right: 30px;
    }

    .project-name {
        font-size: 32px;
        line-height: 38px;
    }

    .project-category {
        font-size: 13px;
        letter-spacing: 1.4px;
        margin-bottom: 12px;
    }
}

@media (max-width: 768px) {
    .projects-header-container {
        padding: 0 20px 30px;
    }

    .projects-slider-container {
        padding: 0 20px;
    }

    .projects-title {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 16px;
    }

    .projects-description {
        font-size: 15px;
        line-height: 24px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-card {
        height: 250px;
    }

    .project-content {
        left: 24px;
        right: 24px;
    }

    .project-name {
        font-size: 28px;
        line-height: 34px;
    }

    .project-category {
        font-size: 12px;
        letter-spacing: 1.2px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .projects-header-container,
    .projects-slider-container {
        padding: 0 15px;
    }

    .projects-title {
        font-size: 28px;
        line-height: 36px;
    }

    .project-card {
        height: 220px;
    }

    .project-content {
        left: 20px;
        right: 20px;
    }

    .project-name {
        font-size: 24px;
        line-height: 30px;
    }
}

/* ==========================================================================
   About Service Section (Single Service Page)
   ========================================================================== */

.about-service-section {
    padding: 0 60px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.about-service-section::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 748px;
    width: calc(50% + 190px);
    background: #f5f5f5;
    border-radius: 8px 0 0 8px;
    z-index: 0;
}

.about-service-container {
    max-width: 1410px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    min-height: 748px;
    position: relative;
    z-index: 1;
}

.about-service-left {
    flex: 0 1 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 120px 15px 120px 0;
    min-width: 0;
}

.about-service-image {
    width: 100%;
    max-width: 635px;
}

.about-service-image img {
    width: 100%;
    height: 508px;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

body.single-kelo_service .about-service-image img {
    border-radius: 10px;
}

.about-service-right {
    flex: 0 1 50%;
    display: flex;
    align-items: center;
    padding: 120px 39px 120px 54px;
    min-width: 0;
}

.about-service-content {
    max-width: 552px;
}

.about-service-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 57px;
    line-height: 57px;
    color: #202225;
    margin: 0 0 23px;
}

.about-service-description {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 28px;
    color: #868080;
    overflow: auto;
    max-height: 250px;
    padding-right: 15px;
}

.about-service-description p {
    margin: 0 0 20px;
}

.about-service-description p:last-child {
    margin-bottom: 0;
}

/* About Service Responsive */
@media (max-width: 1200px) {
    .about-service-left {
        padding: 80px 15px 80px 40px;
    }

    .about-service-right {
        padding: 80px 30px 80px 40px;
    }

    .about-service-title {
        font-size: 48px;
        line-height: 52px;
    }

    .about-service-image img {
        height: 450px;
    }
}

@media (max-width: 1024px) {
    .about-service-container {
        flex-direction: column;
        min-height: auto;
    }

    .about-service-left {
        flex: none;
        padding: 60px 30px;
    }

    .about-service-right {
        flex: none;
        padding: 0 30px 60px;
    }

    .about-service-content {
        max-width: 100%;
    }

    .about-service-title {
        font-size: 42px;
        line-height: 48px;
    }

    .about-service-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .about-service-section {
        padding: 0;
    }

    .about-service-left {
        padding: 40px 20px;
    }

    .about-service-right {
        padding: 0 20px 40px;
    }

    .about-service-title {
        font-size: 32px;
        line-height: 40px;
    }

    .about-service-description {
        font-size: 15px;
        line-height: 24px;
    }

    .about-service-image img {
        height: 300px;
    }
}

/* ==========================================================================
   Info Block Section (Home Page)
   ========================================================================== */

.info-block-section {
    padding: 80px 60px;
    overflow: hidden;
}

.info-block-container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-block-row {
    display: inline-flex;
    align-items: center;
    gap: 45px;
}

.info-block-row-top {
    align-self: flex-start;
}

.info-block-row-bottom {
    align-self: flex-end;
}

.info-block-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 71px;
    line-height: 71px;
    color: #382F33;
    margin: 0;
    white-space: nowrap;
}

.info-block-image {
    flex-shrink: 0;
    width: 173px;
    height: 121px;
    border-radius: 10px;
    overflow: hidden;
}

.info-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

@media (max-width: 1200px) {
    .info-block-title {
        font-size: 56px;
        line-height: 56px;
    }

    .info-block-image {
        width: 145px;
        height: 101px;
    }
}

@media (max-width: 1024px) {
    .info-block-section {
        padding: 60px 15px;
    }

    .info-block-title {
        font-size: 44px;
        line-height: 44px;
    }

    .info-block-row {
        gap: 24px;
    }

    .info-block-image {
        width: 120px;
        height: 84px;
    }
}

@media (max-width: 768px) {
    .info-block-section {
        padding: 48px 15px;
    }

    .info-block-title {
        font-size: 32px;
        line-height: 36px;
        white-space: normal;
    }

    .info-block-row {
        gap: 16px;
    }

    .info-block-image {
        width: 100px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .info-block-title {
        font-size: 26px;
        line-height: 30px;
    }

    .info-block-image {
        width: 70px;
        height: 49px;
    }
}

/* ==========================================================================
   Info Block Section (mirrored About Service)
   ========================================================================== */

.service-info-block-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    min-height: 748px;
    margin-top: 80px;
}

.service-info-block-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1080px;
    max-width: 100%;
    height: 748px;
    background: #F3F3F3;
    border-radius: 8px;
    z-index: 0;
}

.service-info-block-container {
    max-width: 1410px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    height: 748px;
    position: relative;
    z-index: 1;
}

.service-info-block-left {
    flex: 0 1 50%;
    display: flex;
    align-items: center;
    padding: 0 39px 0 54px;
    min-width: 0;
}

.service-info-block-content {
    max-width: 552px;
}

.service-info-block-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 57px;
    line-height: 57px;
    color: #202225;
    margin: 0 0 23px;
}

.service-info-block-description {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 28px;
    color: #868080;
    overflow: auto;
    max-height: 250px;
    padding-right: 15px;
}

.service-info-block-description p {
    margin: 0 0 20px;
}

.service-info-block-description p:last-child {
    margin-bottom: 0;
}

.service-info-block-right {
    flex: 0 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 15px 120px 70px;
    min-width: 0;
}

.service-info-block-image {
    position: static;
    width: 100%;
    max-width: 635px;
    height: auto;
    overflow: visible;
}

.service-info-block-image img {
    width: 100%;
    height: 508px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* Info Block Responsive */
@media (max-width: 1200px) {
    .service-info-block-left {
        padding: 0 30px 0 40px;
    }

    .service-info-block-right {
        padding: 80px 15px 80px 40px;
    }

    .service-info-block-title {
        font-size: 48px;
        line-height: 52px;
    }

    .service-info-block-image img {
        height: 450px;
    }
}

@media (max-width: 1024px) {
    .service-info-block-section::after {
        width: 100%;
        height: 50%;
        border-radius: 0;
    }

    .service-info-block-container {
        flex-direction: column;
        height: auto;
    }

    .service-info-block-left {
        flex: none;
        padding: 60px 30px;
    }

    .service-info-block-right {
        flex: none;
        padding: 0 30px 60px;
    }

    .service-info-block-content {
        max-width: 100%;
    }

    .service-info-block-title {
        font-size: 42px;
        line-height: 48px;
    }

    .service-info-block-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .service-info-block-left {
        padding: 40px 20px;
    }

    .service-info-block-right {
        padding: 0 20px 40px;
    }

    .service-info-block-title {
        font-size: 32px;
        line-height: 40px;
    }

    .service-info-block-description {
        font-size: 15px;
        line-height: 24px;
    }

    .service-info-block-image img {
        height: 300px;
    }
}

/* ==========================================================================
   Service Hero Section
   ========================================================================== */

.service-hero-section {
    background: #ffffff;
    overflow: hidden;
}

.service-hero-container {
    max-width: 1410px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 60px 75px 0;
    min-height: 522px;
}

.service-hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 56px;
}

.service-hero-label {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1f242e;
}

.service-hero-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 57px;
    line-height: 60px;
    letter-spacing: -1px;
    color: #1f242e;
    margin: 0;
}

.service-hero-description {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 28px;
    color: #1f242e;
}

.service-hero-description p {
    margin: 0;
}

.service-hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.service-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #12426a;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 50px;
    padding: 0 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-hero-btn-primary:hover {
    background: #1a5a8f;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.service-hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #12426a;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 50px;
    padding: 0 28px;
    border-radius: 10px;
    border: 1px solid #12426a;
    text-decoration: none;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.service-hero-btn-secondary:hover {
    background: #12426a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.service-hero-right {
    position: relative;
    width: 473px;
    height: 522px;
    flex-shrink: 0;
}

.service-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 331px;
    height: 439px;
    border-radius: 8px;
    overflow: hidden;
}

.service-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-hero-card {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 376px;
    height: 308px;
    background: #12426a;
    border-radius: 8px;
    padding: 45px 43px 40px 44px;
    box-sizing: border-box;
}

.service-hero-card-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 21px;
}

.service-hero-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.service-hero-card-text {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: rgba(255, 254, 254, 0.8);
    margin: 0;
}

/* Service Hero Responsive */
@media (max-width: 1200px) {
    .service-hero-container {
        padding: 0 40px;
    }

    .service-hero-title {
        font-size: 48px;
        line-height: 52px;
    }

    .service-hero-right {
        width: 400px;
    }
}

@media (max-width: 1024px) {
    .service-hero-container {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

    .service-hero-left {
        padding-bottom: 0;
    }

    .service-hero-right {
        width: 100%;
        max-width: 473px;
    }

    .service-hero-title {
        font-size: 42px;
        line-height: 48px;
    }
}

@media (max-width: 768px) {
    .service-hero-section {
        padding-bottom: 0;
    }

    .service-hero-container {
        padding: 10px 20px 40px;
        min-height: auto;
    }

    .service-hero-title {
        font-size: 32px;
        line-height: 40px;
    }

    .service-hero-left {
        padding-bottom: 0;
    }

    .service-hero-description {
        font-size: 15px;
        line-height: 24px;
    }

    .service-hero-buttons {
        flex-direction: row;
    }

    .service-hero-btn-primary,
    .service-hero-btn-secondary {
        font-size: 16px;
        padding: 0 14px;
    }

    .service-hero-right {
        display: none;
    }
}

/* ==========================================================================
   Product Hero Section
   ========================================================================== */

.product-hero-section {
    background: #ffffff;
    overflow: hidden;
    padding: 60px 60px 80px;
}

.product-hero-container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0;
}

.product-hero-left {
    flex: 0 0 50%;
    max-width: 50%;
}

.product-hero-slider {
    position: relative;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    overflow: hidden;
}

.product-hero-swiper {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.product-hero-swiper .swiper-wrapper {
    display: flex;
    height: 100%;
}

.product-hero-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-sizing: border-box;
    flex-shrink: 0;
    width: 100%;
}

.product-hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-hero-prev,
.product-hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #1f242e;
    padding: 0;
}

.product-hero-prev:hover,
.product-hero-next:hover {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-hero-prev {
    left: 16px;
}

.product-hero-next {
    right: 16px;
}

.product-hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-hero-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -1px;
    color: #1f242e;
    margin: 0;
}

.product-hero-description {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 28px;
    color: #1f242e;
}

.product-hero-description p {
    margin: 0 0 8px;
}

.product-hero-description ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.product-hero-description ul li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
}

.product-hero-description ul li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: #1f242e;
}

.product-hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 8px;
}

.product-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #12426a;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 50px;
    padding: 0 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-hero-btn-primary:hover {
    background: #1a5a8f;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.product-hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #12426a;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 50px;
    padding: 0 28px;
    border-radius: 10px;
    border: 1px solid #12426a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-hero-btn-secondary:hover {
    background: #12426a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Product Hero Responsive */
@media (max-width: 1024px) {
    .product-hero-container {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

    .product-hero-left {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .product-hero-title {
        font-size: 36px;
        line-height: 44px;
    }
}

@media (max-width: 768px) {
    .product-hero-section {
        padding: 10px 0 40px;
    }

    .product-hero-container {
        padding: 0 20px;
        gap: 30px;
    }

    .product-hero-title {
        font-size: 28px;
        line-height: 36px;
    }

    .product-hero-description {
        font-size: 15px;
        line-height: 24px;
    }

    .product-hero-buttons {
        flex-direction: row;
        align-items: center;
    }

    .product-hero-prev,
    .product-hero-next {
        width: 40px;
        height: 40px;
    }

    .product-hero-prev {
        left: 10px;
    }

    .product-hero-next {
        right: 10px;
    }
}

/* ==========================================================================
   What Include / How We Work Section
   ========================================================================== */

.what-include-section {
    background: none;
    padding: 90px 60px 120px;
}

.what-include-container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.what-include-left {
    flex: 1;
    padding: 10px 15px 0;
}

.what-include-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 57px;
    line-height: 64px;
    color: #1f242e;
    margin: 0 0 23px;
    max-width: 500px;
}

.what-include-description {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 28px;
    color: #797c7f;
    max-width: 500px;
}

.what-include-description p {
    margin: 0 0 16px;
}

.what-include-description p:last-child {
    margin-bottom: 0;
}

.what-include-description strong,
.what-include-description b {
    font-weight: 600;
    color: #1f242e;
}

.what-include-right {
    flex: 1;
    padding: 10px 15px 0;
}

.what-include-steps {
    max-width: 599px;
}

.what-include-step {
    display: flex;
    gap: 0;
    position: relative;
}

.what-include-step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 56px;
    margin-right: 84px;
}

.what-include-step-icon {
    width: 56px;
    height: 56px;
    background: #f6f6f6;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.what-include-step-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.what-include-step-line {
    width: 1px;
    flex: 1;
    background: #e4dfdf;
    margin: 0;
}

.what-include-step-content {
    padding: 9px 0 40px;
}

.what-include-step-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 33px;
    color: #1f242e;
    margin: 0 0 18px;
}

.what-include-step-text {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #797c7f;
    margin: 0;
}

/* What Include Responsive */
@media (max-width: 1200px) {
    .what-include-section {
        padding: 60px 40px;
    }

    .what-include-title {
        font-size: 48px;
        line-height: 56px;
    }

    .what-include-step-indicator {
        margin-right: 40px;
    }
}

@media (max-width: 1024px) {
    .what-include-section {
        padding: 60px 30px;
    }

    .what-include-container {
        flex-direction: column;
        gap: 40px;
    }

    .what-include-left {
        padding: 0;
    }

    .what-include-right {
        padding: 0;
    }

    .what-include-title {
        font-size: 42px;
        line-height: 50px;
        max-width: 100%;
    }

    .what-include-description {
        max-width: 100%;
    }

    .what-include-steps {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .what-include-section {
        padding: 40px 20px;
    }

    .what-include-title {
        font-size: 32px;
        line-height: 40px;
    }

    .what-include-step-indicator {
        margin-right: 24px;
    }

    .what-include-step-title {
        font-size: 22px;
        line-height: 28px;
    }

    .what-include-step-text {
        font-size: 15px;
    }
}

/* ==========================================================================
   Projects Page
   ========================================================================== */

.projects-page {
    background: #ffffff;
}

/* Projects Grid */
.projects-grid-section {
    padding: 0 60px 80px;
}

.projects-grid-wrapper {
    max-width: 1320px;
    margin: 0 auto;
}

.projects-grid-section .projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 50px;
}

/* Project Card (Projects Page) */
.projects-grid-section .project-card {
    position: relative;
    display: block;
    height: 329px;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
}

.project-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #333;
    transition: transform 0.4s ease;
}

.project-card:hover .project-card-bg {
    transform: scale(1.05);
}

.project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 84%);
    z-index: 1;
}

.project-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    height: 100%;
    padding: 76px 52px;
}

.project-card-category {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #fffefe;
    opacity: 0.9;
}

.project-card-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 47px;
    line-height: 1.2;
    color: #fffefe;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Projects Page Pagination (scoped to projects page only) */
.projects-grid-section .projects-pagination {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    margin-top: 60px;
}

.projects-grid-section .projects-pagination a,
.projects-grid-section .projects-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 6px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #1f242e;
    background: #F6F6F6;
    text-decoration: none;
    transition: all 0.2s ease;
}

.projects-grid-section .projects-pagination a:hover {
    background: #f5f5f5;
}

.projects-grid-section .projects-pagination .current {
    background: #12426A;
    color: #ffffff;
}

.projects-grid-section .projects-pagination .prev,
.projects-grid-section .projects-pagination .next {
    color: #797c7f;
}

.projects-grid-section .projects-pagination svg {
    display: block;
}

.projects-no-posts {
    text-align: center;
    padding: 80px 0;
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    color: #797c7f;
}

/* Projects Page Responsive */
@media (max-width: 1200px) {
    .project-card-title {
        font-size: 38px;
        line-height: 42px;
    }

    .project-card-content {
        padding: 50px 40px;
    }
}

@media (max-width: 1024px) {
    .projects-grid-section {
        padding: 0 30px 60px;
    }

    .project-card {
        height: 280px;
    }

    .project-card-title {
        font-size: 32px;
        line-height: 36px;
    }

    .project-card-content {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .projects-grid-section {
        padding: 0 20px 40px;
    }

    .projects-grid,
    .projects-grid-section .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-card {
        height: 250px;
    }

    .project-card-title {
        font-size: 28px;
        line-height: 34px;
    }

    .project-card-content {
        padding: 30px 24px;
    }

    .project-card-category {
        font-size: 12px;
    }

    .projects-pagination {
        margin-top: 30px;
    }
}

/* ==========================================================================
   Request a Quote Popup Modal
   ========================================================================== */

.quote-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.quote-modal.active {
    opacity: 1;
    visibility: visible;
}

.quote-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
}

.quote-modal-close {
    position: absolute;
    top: -36px;
    right: -8px;
    z-index: 10;
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    padding: 0;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.quote-modal-close:hover {
    opacity: 0.7;
}

.quote-modal-card {
    position: relative;
    z-index: 5;
    background: var(--color-blue-primary, #12426A);
    border-radius: 10px;
    padding: 29px 64px 64px;
    width: 100%;
    max-width: 528px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.quote-modal.active .quote-modal-card {
    transform: translateY(0);
}

.quote-modal-title {
    font-family: var(--font-heading, 'Manrope', sans-serif);
    font-size: 32px;
    font-weight: 600;
    color: #fffefe;
    line-height: 56px;
    text-align: center;
    margin: 0 0 32px 0;
}

.quote-modal-field {
    margin-bottom: 16px;
}

.quote-modal-field input {
    width: 100%;
    height: 55px;
    padding: 16px 24px;
    background: #eeeeee;
    border: none;
    border-radius: 10px;
    font-family: var(--font-body, 'Manrope', sans-serif);
    font-size: 16px;
    color: #333333;
    outline: none;
    transition: background 0.2s ease;
    box-sizing: border-box;
}

.quote-modal-field input::placeholder {
    color: #797c7f;
}

.quote-modal-field input:focus {
    background: #e4e4e4;
}

.quote-modal-footer {
    display: flex;
    flex-direction: column;
    gap: 17px;
    margin-top: 20px;
}

.quote-modal-checkbox-label {
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
}

.quote-modal-checkbox-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.quote-modal-checkbox-box {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border: 1px solid #e4dfdf;
    border-radius: 4px;
    position: relative;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.quote-modal-checkbox-input:checked + .quote-modal-checkbox-box {
    background: #ffffff;
    border-color: #ffffff;
}

.quote-modal-checkbox-input:checked + .quote-modal-checkbox-box::after {
    content: '';
    position: absolute;
    left: 4.5px;
    top: 1.5px;
    width: 4px;
    height: 8px;
    border: solid var(--color-blue-primary, #12426A);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.quote-modal-checkbox-text {
    font-size: 14px;
    color: #ffffff;
    line-height: 22px;
}

.quote-modal-privacy-link {
    color: #ffffff;
    text-decoration: underline;
}

.quote-modal-privacy-link:hover {
    opacity: 0.8;
}

.quote-modal-submit {
    width: 100%;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 10px;
    font-family: var(--font-body, 'Manrope', sans-serif);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.1s ease;
}

.quote-modal-submit:hover {
    opacity: 0.9;
}

.quote-modal-submit:active {
    transform: scale(0.97);
}

.quote-modal-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.quote-modal-success {
    text-align: center;
    padding: 20px 0;
}

.quote-modal-success svg {
    margin-bottom: 16px;
}

.quote-modal-success p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .quote-modal-card {
        max-width: calc(100% - 32px);
        padding: 29px 24px 36px;
    }

    .quote-modal-title {
        font-size: 26px;
        line-height: 40px;
    }
}

@media (max-width: 480px) {
    .quote-modal-card {
        padding: 24px 20px 28px;
    }

    .quote-modal-title {
        font-size: 22px;
        line-height: 34px;
        margin-bottom: 24px;
    }
}

/* CF7 form overrides inside popup */
.quote-modal-cf7 .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.quote-modal-cf7 .wpcf7-form p {
    margin: 0;
}

.quote-modal-cf7 .wpcf7-form .quote-modal-field {
    margin-bottom: 12px;
}

.quote-modal-cf7 .wpcf7-form .quote-modal-footer {
    margin-top: 8px;
}

.quote-modal-cf7 .wpcf7-form input[type="text"],
.quote-modal-cf7 .wpcf7-form input[type="tel"],
.quote-modal-cf7 .wpcf7-form input[type="email"],
.quote-modal-cf7 .wpcf7-form textarea {
    width: 100%;
    height: 55px;
    padding: 16px 24px;
    background: #eeeeee;
    border: none;
    border-radius: 10px;
    font-family: var(--font-body, 'Manrope', sans-serif);
    font-size: 16px;
    color: #333333;
    outline: none;
    transition: background 0.2s ease;
    box-sizing: border-box;
}

.quote-modal-cf7 .wpcf7-form textarea {
    height: auto;
}

.quote-modal-cf7 .wpcf7-form input::placeholder,
.quote-modal-cf7 .wpcf7-form textarea::placeholder {
    color: #797c7f;
}

.quote-modal-cf7 .wpcf7-form input:focus,
.quote-modal-cf7 .wpcf7-form textarea:focus {
    background: #e4e4e4;
}

.quote-modal-cf7 .wpcf7-form .wpcf7-submit {
    width: 100%;
    height: 55px;
    padding: 0;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 10px;
    font-family: var(--font-body, 'Manrope', sans-serif);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.quote-modal-cf7 .wpcf7-form .wpcf7-submit:hover {
    opacity: 0.9;
}

.quote-modal-cf7 .wpcf7-form br {
    display: none;
}

.quote-modal-cf7 .wpcf7-form .wpcf7-acceptance {
    text-align: left;
}

.quote-modal-cf7 .wpcf7-form .wpcf7-acceptance label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    color: #ffffff;
    cursor: pointer;
}

.quote-modal-cf7 .quote-modal-checkbox-box {
    display: none;
}

.quote-modal-cf7 .quote-modal-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin-bottom: 20px;
    line-height: 1;
}

.quote-modal-cf7 .wpcf7-form-control-wrap {
    display: inline-flex;
    align-items: center;
}

.quote-modal-cf7 .quote-modal-field .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.quote-modal-cf7 .wpcf7-list-item {
    margin: 0;
}

.quote-modal-cf7 .wpcf7-list-item-label {
    display: none;
}

.quote-modal-cf7 .wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    background: transparent;
    cursor: pointer;
    position: relative !important;
    opacity: 1 !important;
    margin: 0;
    display: inline-block;
}

.quote-modal-cf7 .wpcf7-form .wpcf7-acceptance input[type="checkbox"]:checked {
    background: #ffffff;
    border-color: #ffffff;
}

.quote-modal-cf7 .wpcf7-form .wpcf7-acceptance input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 0px;
    width: 5px;
    height: 9px;
    border: solid #12426a;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.quote-modal-cf7 .wpcf7-form .wpcf7-acceptance a {
    color: #ffffff;
    text-decoration: underline;
}

.quote-modal-cf7 .wpcf7-form .wpcf7-response-output {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
    margin: 8px 0 0;
    padding: 8px 12px;
}

.quote-modal-cf7 .wpcf7-form .wpcf7-not-valid-tip {
    color: #ff9999;
    font-size: 12px;
    display: block;
    margin-top: 4px;
}

.quote-modal-cf7 .wpcf7-form label {
    color: #ffffff;
    font-size: 14px;
}
