/* ============================================
   Inner Pages Styles (About, Contact, Blog, FAQ, etc.)
   ============================================ */

/* ============================================
   Page Hero (for inner pages)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, #1e8449 0%, #2d5f3d 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #52c97a;
}

.page-hero p {
    font-size: 1.2em;
    color: #ecf0f1;
}

/* ============================================
   Page Content Layout
   ============================================ */
.page-content {
    padding: 40px 0;
    background: #f8f9fa;
}

/* Old layout - only for pages using .content-layout class */
.content-layout {
    display: grid;
    grid-template-columns: minmax(220px, 250px) 1fr;
    gap: 40px;
    align-items: start;
}

/* New layout - for pages using .page-grid class */
.page-wrapper .page-grid {
    display: grid;
    grid-template-columns: minmax(220px, 260px) 1fr;
    gap: 50px;
    align-items: start;
}

.main-content {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.main-content h2 {
    color: #1e8449;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.main-content h3 {
    color: #1e8449;
    margin: 25px 0 15px 0;
}

.main-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.main-content ul, .main-content ol {
    margin: 15px 0 15px 30px;
}

/* CTA Section inside main-content */
.main-content .cta-section {
    margin: 40px -40px -40px -40px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #1e8449 0%, #2d5f3d 100%);
    border-radius: 0 0 10px 10px;
}

.main-content .cta-section h2 {
    color: #fff;
    margin-bottom: 15px;
}

.main-content .cta-section p {
    color: #ecf0f1;
    margin-bottom: 25px;
}

.main-content .cta-section .btn {
    margin: 0 8px;
}

.main-content .cta-section .btn-primary {
    background: #fff;
    color: #1e8449;
    border: 2px solid #fff;
}

.main-content .cta-section .btn-primary:hover {
    background: #f0f0f0;
    color: #1e8449;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.main-content .cta-section .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.main-content .cta-section .btn-secondary:hover {
    background: #fff;
    color: #1e8449;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* CTA Section in page-content (for projects, services, etc.) */
.page-content .cta-section {
    margin-top: 60px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #1e8449 0%, #2d5f3d 100%);
    color: #fff;
    text-align: center;
    border-radius: 10px;
}

/* ============================================
   Sidebar Styles
   ============================================ */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-widget {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sidebar-widget h3 {
    color: #1e8449;
    margin-bottom: 12px;
    font-size: 1.1em;
    line-height: 1.3;
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-widget ul li:last-child {
    border-bottom: none;
}

.sidebar-widget ul li a {
    color: #333;
    text-decoration: none;
}

.sidebar-widget ul li a:hover {
    color: #27ae60;
}

.sidebar-widget.cta-box {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: #fff;
}

.sidebar-widget.cta-box h3,
.sidebar-widget.cta-box p {
    color: #fff;
}

.sidebar-widget.cta-box .btn {
    background: #fff;
    color: #27ae60;
}

/* ============================================
   Form Styles
   ============================================ */
.quote-form, .contact-form {
    max-width: 800px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group .required {
    color: #e74c3c;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #27ae60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 0.9em;
}

/* ============================================
   Process Flow Styles
   ============================================ */
.flow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.flow-step {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    position: relative;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #27ae60;
    color: #fff;
    border-radius: 50%;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 15px;
}

.flow-step h3 {
    margin-bottom: 10px;
    color: #1e8449;
}

/* Modern Process Flow */
.process-flow-modern {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 10px;
    margin: 40px 0;
    position: relative;
    overflow-x: auto;
}

.process-flow-modern .process-step {
    flex: 1;
    min-width: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    flex-shrink: 1;
}

.process-flow-modern .step-icon {
    position: relative;
    margin-bottom: 15px;
}

.process-flow-modern .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    line-height: 1;
    flex-shrink: 0;
}

.process-flow-modern .process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.process-flow-modern .step-content {
    flex: 1;
    min-width: 0;
}

.process-flow-modern .step-title {
    font-size: 1.1em;
    color: #1e8449;
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.3;
}

.process-flow-modern .step-description {
    color: #666;
    line-height: 1.5;
    font-size: 0.9em;
}

.process-flow-modern .process-connector {
    flex: 0 0 20px;
    height: 3px;
    background: linear-gradient(90deg, #27ae60, #52c97a);
    margin-top: 30px;
    position: relative;
    border-radius: 2px;
    flex-shrink: 0;
}

.process-flow-modern .process-connector::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid #52c97a;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* ============================================
   FAQ Styles
   ============================================ */
.faq-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    color: #1e8449;
    margin-bottom: 10px;
}

/* ============================================
   Blog Styles
   ============================================ */
.blog-post-preview {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.blog-post-preview:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.blog-post-preview h2 {
    margin-bottom: 15px;
    border-bottom: none;
    padding-bottom: 0;
}

.blog-post-preview h2 a {
    color: #1e8449;
    text-decoration: none;
}

.blog-post-preview h2 a:hover {
    color: #27ae60;
}

.blog-post-preview p {
    margin-bottom: 15px;
    color: #666;
}

/* ============================================
   Projects & Solutions Pages Styles
   ============================================ */

/* Page Banner */
.projects-banner,
.solutions-banner,
.service-detail-banner,
.application-detail-banner,
.applications-banner,
.services-banner {
    position: relative;
    background: linear-gradient(135deg, #1e8449 0%, #2d5f3d 100%);
    padding: 100px 0;
    overflow: hidden;
}

.projects-banner .banner-overlay,
.solutions-banner .banner-overlay,
.service-detail-banner .banner-overlay,
.application-detail-banner .banner-overlay,
.applications-banner .banner-overlay,
.services-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/pattern.png') repeat;
    opacity: 0.1;
}

.projects-banner .banner-content,
.solutions-banner .banner-content,
.service-detail-banner .banner-content,
.application-detail-banner .banner-content,
.applications-banner .banner-content,
.services-banner .banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.projects-banner .banner-title,
.solutions-banner .banner-title,
.service-detail-banner .banner-title,
.application-detail-banner .banner-title,
.applications-banner .banner-title,
.services-banner .banner-title {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.projects-banner .banner-subtitle,
.solutions-banner .banner-subtitle,
.service-detail-banner .banner-subtitle,
.application-detail-banner .banner-subtitle,
.applications-banner .banner-subtitle,
.services-banner .banner-subtitle {
    font-size: 1.3em;
    color: #ecf0f1;
    max-width: 700px;
    margin: 0 auto;
}

/* Page Wrapper */
.projects-wrapper,
.solutions-wrapper,
.service-detail-wrapper,
.application-detail-wrapper,
.applications-wrapper,
.services-wrapper {
    padding: 60px 0;
    background: #f8f9fa;
    overflow-x: hidden;
}

.projects-wrapper .container,
.solutions-wrapper .container,
.service-detail-wrapper .container,
.application-detail-wrapper .container,
.applications-wrapper .container,
.services-wrapper .container {
    max-width: 1400px;
    width: 100%;
    overflow: visible !important;
}

.service-detail-wrapper .page-grid,
.application-detail-wrapper .page-grid {
    display: grid !important;
    grid-template-columns: minmax(200px, 240px) 1fr !important;
    gap: 40px !important;
    align-items: start !important;
    max-width: none !important;
    overflow: visible;
}

.service-detail-wrapper .page-main,
.application-detail-wrapper .page-main {
    min-width: 0;
    width: 100%;
    max-width: none;
    overflow: visible;
}

.service-detail-wrapper .page-sidebar,
.application-detail-wrapper .page-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-detail-wrapper .sidebar-module,
.application-detail-wrapper .sidebar-module {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.service-detail-wrapper .module-title,
.application-detail-wrapper .module-title {
    color: #1e8449;
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f5e9;
}

.service-detail-wrapper .module-list,
.application-detail-wrapper .module-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-detail-wrapper .module-list li,
.application-detail-wrapper .module-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.service-detail-wrapper .module-list li:last-child,
.application-detail-wrapper .module-list li:last-child {
    border-bottom: none;
}

.service-detail-wrapper .module-list li a,
.application-detail-wrapper .module-list li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-detail-wrapper .module-list li a:hover,
.application-detail-wrapper .module-list li a:hover {
    color: #27ae60;
}

.service-detail-wrapper .cta-module,
.application-detail-wrapper .cta-module {
    background: linear-gradient(135deg, #1e8449 0%, #27ae60 100%);
    color: #fff;
    text-align: center;
    padding: 30px 20px !important;
}

.service-detail-wrapper .cta-module .module-title,
.application-detail-wrapper .cta-module .module-title {
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.service-detail-wrapper .cta-module p,
.application-detail-wrapper .cta-module p {
    color: #ecf0f1;
    margin-bottom: 25px;
    font-size: 0.95em;
    line-height: 1.6;
}

.service-detail-wrapper .cta-module .btn-block,
.application-detail-wrapper .cta-module .btn-block {
    width: 100%;
    display: block;
    text-align: center;
    background: #fff;
    color: #1e8449;
    border: none;
    padding: 14px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-detail-wrapper .cta-module .btn-block:hover,
.application-detail-wrapper .cta-module .btn-block:hover {
    background: #f8f9fa;
    color: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Content Blocks (for detail pages) */
.content-block {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.block-header {
    margin-bottom: 30px;
}

.block-title {
    font-size: 2em;
    color: #1e8449;
    margin-bottom: 15px;
    font-weight: 700;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #27ae60, #52c97a);
    border-radius: 2px;
}

.block-body {
    color: #555;
    line-height: 1.8;
}

.lead-text {
    font-size: 1.15em;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.card-grid {
    display: grid;
    gap: 25px;
}

.two-cols {
    grid-template-columns: repeat(2, 1fr);
}

.capability-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-left: 4px solid #27ae60;
}

.capability-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.15);
}

.capability-title {
    font-size: 1.3em;
    color: #1e8449;
    font-weight: 600;
    margin: 0 0 20px 0;
}

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

.capability-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.capability-list li:last-child {
    border-bottom: none;
}

.capability-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.15);
    border-color: #27ae60;
}

.info-card .card-title {
    font-size: 1.4em;
    color: #1e8449;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-card .card-text {
    color: #666;
    line-height: 1.7;
}

/* Section Header */
.section-header {
    margin-bottom: 50px;
    text-align: center;
}

.section-title {
    font-size: 2.5em;
    color: #1e8449;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-description {
    font-size: 1.1em;
    color: #666;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Cases Grid (Projects) */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.case-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.15);
}

.case-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

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

.case-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #1e8449;
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
}

.case-content {
    padding: 30px;
}

.case-title {
    font-size: 1.4em;
    margin-bottom: 15px;
}

.case-title a {
    color: #1e8449;
    text-decoration: none;
    transition: color 0.3s ease;
}

.case-title a:hover {
    color: #27ae60;
}

.case-excerpt {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.case-link {
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.case-link:hover {
    color: #1e8449;
    text-decoration: underline;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.solution-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #27ae60;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.15);
}

.solution-header {
    margin-bottom: 20px;
}

.solution-title {
    font-size: 1.5em;
    margin: 0;
}

.solution-title a {
    color: #1e8449;
    text-decoration: none;
    transition: color 0.3s ease;
}

.solution-title a:hover {
    color: #27ae60;
}

.solution-body {
    color: #555;
}

.solution-description {
    line-height: 1.7;
    margin-bottom: 25px;
    color: #666;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.solution-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.solution-features li:last-child {
    border-bottom: none;
}

.solution-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.solution-link {
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.solution-link:hover {
    color: #1e8449;
    text-decoration: underline;
}

/* CTA Block */
.cta-block {
    background: linear-gradient(135deg, #1e8449 0%, #2d5f3d 100%);
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(30, 132, 73, 0.3);
}

.cta-content {
    color: #fff;
}

.cta-title {
    font-size: 2.2em;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-text {
    font-size: 1.1em;
    color: #ecf0f1;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-actions .btn-outline:hover {
    background: #fff;
    color: #1e8449;
}

/* Applications Grid */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.application-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.15);
}

.application-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: #f0f0f0;
}

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

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

.application-content {
    padding: 30px;
}

.application-title {
    font-size: 1.4em;
    margin-bottom: 15px;
}

.application-title a {
    color: #1e8449;
    text-decoration: none;
    transition: color 0.3s ease;
}

.application-title a:hover {
    color: #27ae60;
}

.application-excerpt {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.application-link {
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.application-link:hover {
    color: #1e8449;
    text-decoration: underline;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #27ae60;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.15);
}

.service-header {
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.5em;
    margin: 0;
}

.service-title a {
    color: #1e8449;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-title a:hover {
    color: #27ae60;
}

.service-body {
    color: #555;
}

.service-description {
    line-height: 1.7;
    margin-bottom: 25px;
    color: #666;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-link {
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #1e8449;
    text-decoration: underline;
}

/* Product Gallery Fullwidth */
.product-gallery-fullwidth {
    width: 100%;
    position: relative;
    padding: 50px 0;
    background: #f8f9fa;
    margin-top: 30px;
    margin-bottom: 30px;
    overflow-x: hidden;
    z-index: 1;
}

/* Break out of page-main and container constraints */
.service-detail-wrapper .page-main .product-gallery-fullwidth,
.application-detail-wrapper .page-main .product-gallery-fullwidth {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.gallery-title {
    font-size: 2.2em;
    color: #1e8449;
    margin-bottom: 12px;
    font-weight: 700;
}

.gallery-subtitle {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
}

.gallery-slider-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.gallery-slider {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    flex: 1;
    min-width: 0;
    order: 2;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16 / 10;
    max-height: 650px;
    background: #e0e0e0;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-height: 650px;
}

.gallery-slide .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    padding: 30px 20px 20px;
    font-size: 1.2em;
    font-weight: 600;
    text-align: center;
}

.gallery-nav-btn {
    position: relative;
    width: 50px;
    height: 50px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    color: #1e8449;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    line-height: 1;
    padding: 0;
    flex-shrink: 0;
}

.gallery-nav-btn span {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}

.gallery-nav-btn:hover {
    background: #27ae60;
    color: #fff;
    border-color: #27ae60;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    transform: scale(1.1);
}

.gallery-nav-btn:active {
    transform: scale(0.95);
}

.gallery-nav-btn:disabled,
.gallery-nav-btn[style*="cursor: not-allowed"] {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    background: #f5f5f5;
    border-color: #e0e0e0;
    color: #999;
}

.gallery-prev {
    order: 1;
}

.gallery-next {
    order: 3;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: #27ae60;
    width: 30px;
    border-radius: 6px;
}

.gallery-dot:hover {
    background: #1e8449;
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 768px) {
    .page-hero {
        padding: 40px 0;
    }

    .page-hero h1 {
        font-size: 2em;
    }

    .page-hero p {
        font-size: 1.1em;
    }

    .page-content {
        padding: 30px 0;
    }

    .content-layout {
        grid-template-columns: 1fr;
    }

    .main-content {
        padding: 30px 20px;
    }

    .main-content .cta-section {
        margin: 30px -20px -30px -20px;
        padding: 40px 20px;
    }

    .sidebar {
        margin-top: 30px;
    }

    .flow-steps {
        grid-template-columns: 1fr;
    }

    /* Projects & Solutions Responsive */
    .projects-banner,
    .solutions-banner,
    .service-detail-banner,
    .application-detail-banner,
    .applications-banner,
    .services-banner {
        padding: 60px 0;
    }

    .projects-banner .banner-title,
    .solutions-banner .banner-title,
    .service-detail-banner .banner-title,
    .application-detail-banner .banner-title,
    .applications-banner .banner-title,
    .services-banner .banner-title {
        font-size: 2.5em;
    }

    .projects-banner .banner-subtitle,
    .solutions-banner .banner-subtitle,
    .service-detail-banner .banner-subtitle,
    .application-detail-banner .banner-subtitle,
    .applications-banner .banner-subtitle,
    .services-banner .banner-subtitle {
        font-size: 1.1em;
    }

    .projects-wrapper,
    .solutions-wrapper,
    .service-detail-wrapper,
    .application-detail-wrapper,
    .applications-wrapper,
    .services-wrapper {
        padding: 40px 0;
    }

    .section-title {
        font-size: 2em;
    }

    .cases-grid,
    .solutions-grid,
    .applications-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .case-content,
    .solution-card {
        padding: 25px;
    }

    .cta-block {
        padding: 40px 25px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
    }

    /* Service & Application Detail Responsive */
    .service-detail-wrapper .page-grid,
    .application-detail-wrapper .page-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .content-block {
        padding: 30px 20px;
    }

    .two-cols {
        grid-template-columns: 1fr;
    }

    /* Process Flow Modern Responsive */
    .process-flow-modern {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .process-flow-modern .process-step {
        min-width: 100%;
        max-width: 100%;
    }

    .process-flow-modern .process-connector {
        flex: 0 0 3px;
        width: 3px;
        height: 40px;
        margin-top: 0;
        margin-bottom: 0;
        background: linear-gradient(180deg, #27ae60, #52c97a);
    }

    .process-flow-modern .process-connector::after {
        right: 50%;
        top: 100%;
        transform: translateX(50%);
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 8px solid #52c97a;
        border-bottom: none;
    }

    .process-flow-modern .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5em;
    }

    /* Product Gallery Responsive */
    .product-gallery-fullwidth {
        padding: 40px 0;
    }
    
    .service-detail-wrapper .page-main .product-gallery-fullwidth,
    .application-detail-wrapper .page-main .product-gallery-fullwidth {
        width: 100vw !important;
        position: relative !important;
        left: 50% !important;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
        max-width: none !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .gallery-header {
        max-width: 100%;
        padding: 0 15px;
        margin-bottom: 30px;
    }

    .gallery-title {
        font-size: 1.8em;
    }

    .gallery-subtitle {
        font-size: 0.95em;
    }

    .gallery-slider-wrapper {
        max-width: 100%;
        padding: 0 15px;
        gap: 10px;
    }

    .gallery-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }

    .gallery-slide {
        aspect-ratio: 16 / 10;
        max-height: 400px;
    }
    
    .gallery-slide img {
        max-height: 400px;
    }

    .gallery-slide .gallery-caption {
        font-size: 1em;
        padding: 20px 15px 15px;
    }

    .gallery-dots {
        margin-top: 20px;
        gap: 8px;
    }

    .gallery-dot {
        width: 10px;
        height: 10px;
    }

    .gallery-dot.active {
        width: 25px;
    }
}

