/* Global Styles */
body {
    font-family: 'Outfit', sans-serif;
    /* Assuming this font is loaded or fallback */
    color: #333;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

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

.mt-4 {
    margin-top: 2rem;
}

.btn-primary {
    display: inline-block;
    background-color: #FA8106;
    /* Orange accent */
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: #d96e00;
    color: #fff;
}

/* Modern Kitchen Cabinets - square button corners */
.page-modern-kitchen-cabinets .btn-primary {
    border-radius: 0 !important;
}

.btn-secondary {
    display: inline-block;
    border: 2px solid #333;
    color: #333;
    padding: 10px 25px;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background-color: #333;
    color: #fff;
}

/* Hero Section */
.home-hero {
    position: relative;
    height: 100vh;
    /* Full screen height */
    min-height: 600px;
    overflow: hidden;
    color: #fff;
}

.hero-slider-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 0;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Slight overlay */
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    /* Align text to bottom */
    padding-bottom: 80px;
    /* Space from bottom */
    z-index: 2;
}

.slide-text {
    max-width: 800px;
    margin-bottom: 40px;
}

.slide-text h2 {
    font-size: 4rem;
    /* Large font */
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-text p {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Slider Controls */
.slider-controls-container {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    /* Match container max-width */
    z-index: 3;
    pointer-events: none;
    /* Allow clicking through container */
}

.slider-nav {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    /* Align to right */
    padding-right: 15px;
    /* Match container padding */
    pointer-events: auto;
    /* Re-enable clicking */
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.nav-btn svg {
    width: 20px;
    height: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slide-text h2 {
        font-size: 2.5rem;
    }

    .slide-text p {
        font-size: 1.1rem;
    }

    .slide-content-container {
        padding-bottom: 120px;
        /* More space for controls on mobile if needed */
    }

    .slider-nav {
        justify-content: center;
        padding-right: 0;
    }
}

/* Complete Material Solution */
.material-solution {
    padding: 80px 0;
    background: #fff;
}

.section-header h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

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

.solution-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
}

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

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

.solution-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%); Optional gradient */
    padding: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    /* Let clicks pass to link */
}

/* Specific styling to match the reference text overlay style 
   The reference has white text centered on the image? 
   Or centered at the bottom?
   Let's center it.
*/
.solution-overlay {
    height: 100%;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    /* Slight darken for text readability */
    transition: background 0.3s;
}

.solution-item:hover .solution-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.solution-overlay h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
    text-transform: capitalize;
    /* Or uppercase based on preference */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
}

.solution-overlay h3 a {
    color: #fff;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 991px) {
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .solution-grid {
        grid-template-columns: 1fr;
    }
}

/* Premium Aluminum Systems Carousel */
.aluminum-systems {
    padding: 80px 0;
    background: #f9f9f9;
}

.container-fluid {
    padding: 0 40px;
    /* Wider container */
    max-width: 1400px;
    margin: 0 auto;
}

.aluminum-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0;
}

.aluminum-carousel-wrapper .prev-Al-btn {
    position: absolute;
    left: 20px;
    z-index: 20;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.aluminum-carousel-wrapper .next-Al-btn {
    position: absolute;
    right: 20px;
    z-index: 20;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.aluminum-track-container {
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.aluminum-track-container::-webkit-scrollbar {
    display: none;
}

.aluminum-track {
    display: flex;
    gap: 20px;
}

.aluminum-item {
    flex: 0 0 calc(20% - 16px);
    /* 5 items with 20px gap */
    height: 280px;
    position: relative;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
}

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

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

.aluminum-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    text-align: center;
}

.aluminum-overlay h3 {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 500;
}

.aluminum-overlay h3 a {
    color: #fff;
    text-decoration: none;
}

.carousel-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: #333;
    z-index: 20;
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.carousel-nav:hover {
    background: #FA8106;
    color: #fff;
    border-color: #FA8106;
}

/* Responsive */
@media (max-width: 768px) {
    .container-fluid {
        padding: 0 15px;
    }

    .carousel-nav {
        display: none;
        /* Hide nav arrows on mobile, rely on touch scroll */
    }

    .aluminum-item {
        flex: 0 0 250px;
        height: 350px;
    }

    .aluminum-overlay h3 {
        font-size: 1rem;
    }
}

/* Why Choose George One-Stop Service */
.why-choose-george {
    padding: 40px 0;
    background: #fff;
}

.why-choose-george .section-header {
    margin-bottom: 20px;
}

.why-choose-george .section-header h2 {
    margin-bottom: 10px;
}

.header-underline {
    width: 60px;
    height: 3px;
    background: #333;
    margin: 10px auto 20px auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
    /* 40px vertical, 20px horizontal */
}

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

.feature-image {
    width: 100%;
    margin-bottom: 10px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #333;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    line-height: 1.4;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.process-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    text-align: center;
}

.process-item img {
    margin-bottom: 20px;
    height: 50px;
}

.process-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.process-item p {
    font-size: 0.9rem;
    color: #666;
}

/* Catalog Download */
.catalog-download {
    padding: 80px 0;
}

.download-content {
    display: flex;
    align-items: center;
    background: #FA8106;
    /* Fallback */
    background: linear-gradient(135deg, #333 0%, #000 100%);
    color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.download-content .text-content {
    flex: 1;
    padding: 60px;
}

.download-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #fff;
}

.download-content .image-content {
    flex: 1;
    text-align: right;
}

.download-content .image-content img {
    max-width: 100%;
    vertical-align: bottom;
}

/* Re-use features-grid and feature-item styles but maybe tweak for 3 columns if needed */
/* The previous section "Why Choose George" already set up .features-grid as 3 columns. 
   We can reuse it or add specific classes if the layout differs slightly.
   The image shows 3 columns text + image.
*/

/* Project Cases */
.project-cases {
    padding: 80px 0;
}

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

.project-item {
    margin-bottom: 20px;
}

.project-thumb {
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 15px;
    position: relative;
    aspect-ratio: 4/3;
    /* Enforce aspect ratio */
}

.project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-item:hover .project-thumb img {
    transform: scale(1.05);
}

.project-item h3 {
    font-size: 1rem;
    /* Slightly smaller for 4-column layout */
    line-height: 1.4;
    text-align: center;
    margin-top: 10px;
}

.project-item h3 a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

/* Responsive for Project Cases */
@media (max-width: 991px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Process Step Overlay */
.process-step-overlay {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.process-step-overlay .overlay-container {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.process-step-overlay .section-header p {
    color: #ddd;
    max-width: 800px;
    margin: 0 auto 50px;
}

.process-steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-steps-box {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 4px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 30px;
    color: #333;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.process-step-item {
    flex: 1;
    text-align: center;
    padding: 10px;
}

.process-step-item .step-icon {
    margin: 0 auto 15px;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step-item .step-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.process-step-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.process-step-item p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

.step-arrow {
    font-size: 1.5rem;
    color: #ccc;
    font-weight: 300;
    padding: 0 15px;
    margin-top: 18px;
}

/* Responsive Process Steps */
@media (max-width: 991px) {
    .process-steps-box {
        flex-wrap: wrap;
    }

    .step-arrow {
        display: none;
    }

    .process-step-item {
        flex: 1 1 45%;
        margin-bottom: 30px;
    }
}

/* Catalog Download */
.catalog-download {
    height: auto;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.catalog-download .container-fluid {
    height: 100%;
}

.catalog-download .row {
    height: 100%;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
}

.catalog-text-col {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 5%;
    background: transparent;
    flex: 0 0 55%;
    max-width: 55%;
}

.catalog-text-content {
    max-width: 900px;
    padding: 40px 0;
    text-align: left;
}

.catalog-text-content h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.catalog-img-col {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex: 0 0 45%;
    max-width: 45%;
}

.catalog-house-img {
    max-width: 120%;
    height: auto;
    object-fit: contain;
    transform: scale(1.1);
}


/* Global Partners */
.global-partners {
    padding: 60px 0;
    background: #f4f4f4;
}

.partners-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    overflow: hidden;
    /* Prevent overflow on small screens if they don't wrap */
}

.partners-grid img {
    max-height: 80px;
    max-width: 10%;
    /* Ensures they don't blow up and force wrap/overflow */
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.partners-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive */
@media (max-width: 1200px) {
    .catalog-text-content h2 {
        font-size: clamp(1.2rem, 2.2vw, 1.8rem);
    }
}

@media (max-width: 991px) {
    .catalog-text-content h2 {
        font-size: 1.5rem;
        white-space: normal;
        /* Allow wrap */
    }

    .catalog-house-img {
        max-width: 100%;
        transform: scale(1);
    }

    .catalog-text-col,
    .catalog-img-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .catalog-text-col {
        padding: 40px;
        justify-content: center;
    }

    .catalog-text-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .catalog-text-col {
        padding: 30px 15px;
        justify-content: center;
    }

    .catalog-text-content {
        padding: 0;
        text-align: center;
    }

    .catalog-text-content h2 {
        font-size: 1.8rem;
    }

    .partners-grid {
        gap: 20px;
    }

    .partners-grid img {
        max-height: 60px;
    }
}

@media (max-width: 575px) {
    .process-step-item {
        flex: 1 1 100%;
    }

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

/* Get A Free Quote */
.get-a-quote-section {
    padding: 80px 0;
    background: #fff;
}

.get-a-quote-section .section-header h2 {
    font-size: 2.2rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 10px;
}

.get-a-quote-section .section-header p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 40px;
    font-weight: 500;
}

.get-a-quote-section .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.get-a-quote-section .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
    box-sizing: border-box;
}

.quote-image-container {
    height: 100%;
    min-height: 400px;
}

.quote-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-form-container {
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.custom-quote-form .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.custom-quote-form .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
    box-sizing: border-box;
}

.custom-quote-form .form-control {
    border: 1px solid #ccc;
    border-radius: 2px;
    padding: 12px 15px;
    font-size: 0.95rem;
    box-shadow: none;
    width: 100%;
    box-sizing: border-box;
    color: #555;
    background-color: #fff;
    margin-bottom: 0;
}

.custom-quote-form .form-control:focus {
    border-color: #FA8106;
    outline: none;
}

.submit-quote-btn {
    background-color: #ffca28;
    border: none;
    color: #222;
    font-weight: 600;
    padding: 12px 30px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
    display: inline-block;
    font-size: 1rem;
}

.submit-quote-btn:hover {
    background-color: #ffb300;
}

/* Get a Quote Responsive */
@media (max-width: 991px) {
    .get-a-quote-section .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .quote-image-container {
        min-height: 250px;
        margin-bottom: 30px;
    }

    .custom-quote-form .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Responsive */
@media (max-width: 991px) {

    .custom-card,
    .custom-card.reverse {
        flex-direction: column;
    }

    .card-text,
    .card-image {
        width: 100%;
    }

    .card-image {
        min-height: 300px;
    }

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

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

@media (max-width: 767px) {

    .projects-grid,
    .process-grid,
    .product-links-grid {
        grid-template-columns: 1fr;
    }

    .download-content {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-card {
        flex-direction: column-reverse;
        text-align: center;
    }
}

/* Why Choose Dark */
.why-choose-dark {
    padding: 80px 0;
    background: #000;
    color: #fff;
}

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

.dark-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.dark-feature-item {
    background: #111;
    padding: 30px;
    transition: transform 0.3s, background 0.3s;
    height: 100%;
}

.dark-feature-item:hover {
    background: #222;
    transform: translateY(-5px);
}

.dark-feature-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.5px;
}

.dark-feature-item p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .dark-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .dark-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Customer Success Cases */
.customer-success-cases {
    padding: 80px 0;
    background: #fff;
}

.customer-success-cases .section-header .section-divider {
    width: 60px;
    border-top: 2px solid #333;
    margin: 20px auto 40px;
}

.customer-success-cases .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.customer-success-cases .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
    box-sizing: border-box;
}

.customer-success-cases .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.customer-success-cases .mb-4 {
    margin-bottom: 30px;
}

.success-case-card {
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.case-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.success-case-card:hover .case-overlay {
    transform: translateY(0);
}

.case-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.case-overlay p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #ddd;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-overlay .btn-primary {
    align-self: flex-start;
    background: #FA8106;
    /* Orange color */
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
}

.case-overlay .btn-primary:hover {
    background: #e67300;
}

/* Responsive */
@media (max-width: 768px) {
    .success-case-card {
        height: 400px;
    }

    .case-overlay h3 {
        font-size: 1.3rem;
    }
}

/* Canadian Project (Full Width) */
.success-case-card.full-width-card {
    height: 500px;
}

.success-case-card.full-width-card .case-overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    align-items: flex-start;
    padding: 60px;
    width: 60%;
    /* Only cover left side */
    transform: none;
    /* Always visible or animate differently */
}

/* Override hover effect for full width card if desired, or keep it */
.success-case-card.full-width-card:hover .case-overlay {
    transform: none;
}

.success-case-card.full-width-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .success-case-card.full-width-card .case-overlay {
        width: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 80%, transparent 100%);
    }

    .customer-success-cases .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Pre-Footer CTA */
.pre-footer-cta {
    background-color: #E8ECEE;
    padding: 80px 0;
}

.cta-flex-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-flex-container .cta-text-side {
    flex: 1 1 50%;
    max-width: 60%;
}

.cta-flex-container .cta-btn-side {
    flex: 0 0 auto;
}

.pre-footer-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.pre-footer-cta p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0;
}

.btn-outline-dark {
    display: inline-block;
    padding: 15px 50px;
    border: 2px solid #222;
    color: #222;
    font-weight: 600;
    font-size: 1.1rem;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background-color: #222;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .cta-flex-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-flex-container .cta-text-side {
        max-width: 100%;
    }
}

.footer-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ddd;
}

.footer-cta-section .btn-primary {
    background: #FA8106;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.footer-cta-section .btn-primary:hover {
    background: #e67300;
}