/**********************************/
/******** CSS VARIABLES *********/
/**********************************/
:root {
    --brand-green: #005837;
    --brand-dark: #003a2b;
    --brand-green-light: #eaf7ee;
    --brand-grey: #ececec;
    --brand-white: #ffffff;
    --brand-black: #000000;
    --brand-text: #666666;
    --brand-accent: #5a9f86;
    --brand-accent-light: #dee9dc;
    --brand-gold: var(--brand-green);
    --brand-charcoal: #2d2d2d;
    --container-max-width: 1400px;
    --container-padding: 30px;
    --bg-light: #f8f9fa;
}

/**********************************/
/******** RESET & BASE *********/
/**********************************/
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--brand-text);
    background: var(--bg-light);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

h1, h2, h4, h5, h6 {
    color: var(--brand-green);
}

a {
    color: var(--brand-accent-light);
    transition: 0.3s;
}

a:hover, a:active, a:focus {
    color: var(--brand-accent);
    outline: none;
    text-decoration: none;
}

.btn:focus {
    box-shadow: none;
}

/**********************************/
/******** LAYOUT *********/
/**********************************/
.wrapper {
    width: 100%;
    background: var(--bg-white);
}

/* Unified section container styling */
.section-container,
.about .container,
.service .container,
.feature .container-fluid,
.faqs .container,
.ai-leadership-section .container,
.top-bar .container-fluid,
.nav-bar .container-fluid,
.footer .container,
.footer .section-container,
.video .container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Sections targeting for scroll */
section[id], div[id] {
    scroll-margin-top: 120px;
}

/**********************************/
/******** TOP BAR *********/
/**********************************/
.top-bar {
    height: 90px;
    background: linear-gradient(180deg, var(--brand-green-light) 0%, #f3fbf4 100%);
    color: var(--brand-black);
    padding: 0.75rem 0;
    border-bottom: 1px solid #dee2e6;
}

.top-bar .row {
    height: 100%;
    align-items: center;
}

/* Logo */
.top-bar .logo,
.top-bar .smlogo {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.top-bar .logo img {
    max-width: 200px;
    max-height: 60px;
    object-fit: contain;
}

.top-bar .smlogo img {
    max-width: 160px;
    max-height: 45px;
    object-fit: contain;
}

/* Top bar items */
.top-bar .top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(222, 233, 220, 0.15);
    border-radius: 6px;
    border: 1px solid rgba(0, 88, 55, 0.1);
    min-height: 50px;
    transition: all 0.3s ease;
}

.top-bar .top-bar-item:hover {
    background: rgba(222, 233, 220, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 88, 55, 0.15);
}

.top-bar .top-bar-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-green);
    font-size: 1.25rem;
    background: rgba(90, 159, 134, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.top-bar .top-bar-text {
    padding-left: 8px;
    flex: 1;
    min-width: 0;
}

.top-bar .top-bar-text h3 {
    margin: 0 0 3px;
    color: var(--brand-green);
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-bar .top-bar-text p {
    margin: 0;
    color: var(--brand-green);
    font-size: 0.75rem;
    font-weight: 600;
}

.top-bar .top-bar-text p a {
    color: var(--brand-green);
    font-weight: 700;
    padding: 2px 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.top-bar .top-bar-text p a:hover {
    color: var(--brand-white);
    background: var(--brand-accent);
}

/**********************************/
/******** NAVIGATION BAR *********/
/**********************************/
.nav-bar .navbar {
    padding: 0;
}

.navbar.bg-dark {
    background: var(--brand-green) !important;
}

.navbar.bg-dark .nav-link {
    color: var(--brand-white);
}

.navbar.bg-dark .nav-link:hover {
    color: rgba(255, 255, 255, 0.95);
}

.nav-link.smooth-scroll.active {
    color: var(--brand-white);
    background-color: rgba(90, 159, 134, 0.2);
    border-radius: 4px;
}

/**********************************/
/******** RFQ HERO SECTION *********/
/**********************************/
.rfq-hero-section {
    background: linear-gradient(180deg, var(--brand-white) 0%, #f3f3f3 100%);
    min-height: 600px;
}

.rfq-hero-section .row {
    min-height: 600px;
}

.rfq-slide {
    height: 100%;
    display: flex;
    align-items: center;
}

.rfq-slide-primary {
    background: var(--brand-green-light);
    color: var(--brand-black);
}

.rfq-slide-primary .slide-content {
    background: var(--bg-light);
    margin-left: 10px;
}

/**********************************/
/******** OPPORTUNITIES CAROUSEL *********/
/**********************************/
.opportunities-carousel-container {
    background: var(--bg-light);
    color: #0b2e22;
    height: 100%;
}

.carousel-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.carousel-title {
    color: #0b2e22;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.carousel-indicators {
    display: flex;
    gap: 0.5rem;
    position: static;
    margin: 0;
}

.carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(11, 46, 34, 0.06);
    background: transparent;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background: #0b2e22;
    transform: scale(1.3);
}

#rfqCarousel {
    height: 100%;
    display: flex;
    flex-direction: column;
}

#rfqCarousel .carousel-inner {
    flex: 1;
}

/* Opportunity Slide */
.opportunity-slide {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 2rem;
}

.opportunity-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(11, 46, 34, 0.04);
    color: #0b2e22;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.opportunity-title {
    color: #0b2e22;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.opportunity-description {
    color: #0b2e22;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background: rgba(222, 233, 220, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.detail-row:hover {
    background: rgba(222, 233, 220, 0.15);
    transform: translateX(3px);
}

.detail-row i {
    color: var(--brand-accent);
    font-size: 1rem;
}

.detail-row span {
    color: #0b2e22;
    font-size: 0.85rem;
}

/**********************************/
/******** BUTTONS *********/
/**********************************/
.btn-opportunity,
.btn-submit-quote,
.btn-post-first {
    background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-light) 100%);
    color: var(--brand-green);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(90, 159, 134, 0.3);
}

.btn-opportunity:hover,
.btn-submit-quote:hover,
.btn-post-first:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(90, 159, 134, 0.4);
    background: linear-gradient(135deg, var(--brand-accent-light) 0%, var(--brand-accent) 100%);
}

/**********************************/
/******** CONTENT SECTIONS *********/
/**********************************/
.about,
.service,
.feature,
.faqs,
.ai-leadership-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

.contact-section .row {
    margin-left: 0;
    margin-right: 0;
}

.about {
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.about .container {
    padding-left: var(--container-padding);
}

.ai-leadership-section .row {
    margin-left: 0;
    margin-right: 0;
}

.about .row {
    margin-left: 0;
    margin-right: 0;
}

.footer .row {
    margin-left: 0;
    margin-right: 0;
}
.service .container {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.service .row {
    margin-left: 0;
    margin-right: 0;
}


/* Section Headers */
.section-header {
    margin-bottom: 3rem;
}

.section-header p:first-child {
    color: var(--brand-accent);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    color: var(--brand-green);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header > p:last-child {
    color: var(--brand-text);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* About Image */
.about-img img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 88, 55, 0.1);
    transition: transform 0.3s ease;
}

.about-img img:hover {
    transform: scale(1.02);
}

.about-text {
    color: var(--brand-text);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* About Text - Green Background on Hover */
.about-text {
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.about-text:hover {
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-dark) 100%);
    box-shadow: 0 15px 40px rgba(0, 88, 55, 0.25);
    color: rgba(255, 255, 255, 0.85);
    transform: translateY(-3px);
}

.about-text:hover h4,
.about-text:hover h3,
.about-text:hover h2 {
    color: var(--brand-white);
}

.about-text:hover p {
    color: rgba(255, 255, 255, 0.85);
}

.about-text:hover a {
    color: var(--brand-accent-light);
}

.about-text:hover i {
    color: var(--brand-white);
}

/* Service Items */
.service-item {
    background: var(--bg-light);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 88, 55, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 88, 55, 0.15);
}

.service-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-item:hover .service-img img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 88, 55, 0.9);
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
}

.service-item:hover .service-overlay {
    opacity: 1;
}

.service-text {
    padding: 2rem;
    text-align: center;
}

.service-text h3 {
    color: var(--brand-green);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-text .btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-light) 100%);
    color: var(--brand-green);
    border: none;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.service-text .btn:hover {
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-accent) 100%);
    color: white;
    transform: rotate(45deg) scale(1.1);
}

/* Feature Items */
.feature-item,
.ai-feature-item {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover,
.ai-feature-item:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 88, 55, 0.1);
}

.feature-icon,
.ai-feature-icon {
    margin-bottom: 1.5rem;
}

.feature-icon i,
.ai-feature-icon i {
    font-size: 3rem;
    color: var(--brand-accent);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon i,
.ai-feature-item:hover .ai-feature-icon i {
    color: var(--brand-green);
    transform: scale(1.1);
}

.feature-text h3,
.ai-feature-text h4 {
    color: var(--brand-green);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-text p,
.ai-feature-text p {
    color: var(--brand-text);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.ai-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-green);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--brand-accent);
    font-weight: 600;
}

/**********************************/
/******** VIDEO SECTION *********/
/**********************************/
.video {
    background: linear-gradient(135deg, var(--brand-green) 0%, #015938 100%);
    padding: 4rem 0;
    margin: 2rem 0;
}

.video-container {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-content h3 {
    color: var(--brand-white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.video-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.video-content .btn-success {
    background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-light) 100%);
    border: none;
    color: var(--brand-green);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.video-content .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(90, 159, 134, 0.4);
}

/**********************************/
/******** FAQs SECTION *********/
/**********************************/
.faqs .card {
    background: var(--bg-light);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 88, 55, 0.05);
    transition: all 0.3s ease;
}

.faqs .card:hover {
    box-shadow: 0 8px 25px rgba(0, 88, 55, 0.1);
    transform: translateY(-2px);
}

.faqs .card-header {
    background: var(--bg-light);
    border-bottom: 1px solid #e9ecef;
    padding: 0;
}

.faqs .card-link {
    display: block;
    padding: 1.25rem 1.5rem;
    color: var(--brand-green);
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
}

.faqs .card-link:hover {
    color: var(--brand-accent);
    background: rgba(90, 159, 134, 0.05);
}

.faqs .card-link:not(.collapsed) {
    background: var(--brand-green);
    color: var(--brand-white);
}

.faqs .card-link:after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.faqs .card-link:not(.collapsed):after {
    content: '?';
}

.faqs .card-body {
    padding: 1.5rem;
    color: var(--brand-text);
    line-height: 1.6;
}
.contact .row {
    margin-left: 0;
    margin-right: 0;
}

/**********************************/
/******** FOOTER *********/
/**********************************/
.footer {
    background: var(--bg-white);
    padding: 3rem 0 1rem;
    margin-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.footer-contact h3,
.footer-link h3,
.newsletter h3 {
    color: var(--brand-green);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-contact address,
.footer-contact p,
.newsletter p {
    color: var(--brand-text);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-contact a,
.copyright a {
    color: var(--brand-green);
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-contact a:hover,
.copyright a:hover {
    color: var(--brand-accent);
}

.footer-contact i {
    color: var(--brand-accent);
    margin-right: 0.5rem;
}

.footer-social a {
    color: var(--brand-green);
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--brand-accent);
    transform: translateY(-2px);
}

.footer-link ul {
    list-style: none;
    padding: 0;
}

.footer-link ul li {
    margin-bottom: 0.75rem;
}

.footer-link ul li a {
    color: var(--brand-text);
    transition: all 0.3s ease;
}

.footer-link ul li a:hover {
    color: var(--brand-green);
    transform: translateX(5px);
}

.newsletter .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.newsletter .form-control:focus {
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 0.2rem rgba(90, 159, 134, 0.25);
}

.newsletter .btn-success {
    background: var(--brand-green);
    border: 2px solid var(--brand-green);
    border-radius: 0 8px 8px 0;
}

.newsletter .btn-success:hover {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
}

.footer-menu a {
    color: var(--brand-text);
    font-weight: 500;
    margin-right: 1rem;
}

.footer-menu a:hover {
    color: var(--brand-green);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--brand-green);
    color: var(--brand-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 88, 55, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: var(--brand-accent);
    transform: translateY(-3px);
}

/**********************************/
/******** PORTAL BUTTONS *********/
/**********************************/
.btn-portal-header {
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    min-width: 45px;
}

.btn-buyer-header {
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-dark) 100%);
    color: var(--brand-white);
    box-shadow: 0 4px 12px rgba(0, 88, 55, 0.25);
}

.btn-supplier-header {
    background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-green) 100%);
    color: var(--brand-white);
    box-shadow: 0 4px 12px rgba(90, 159, 134, 0.25);
}

.btn-portal-login {
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-dark) 100%);
    color: var(--brand-white);
    padding: 0.65rem 1.4rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    text-transform: none;
    gap: 0.35rem;
    min-width: 48px;
    box-shadow: 0 4px 16px rgba(0, 88, 55, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.btn-portal-login i {
    font-size: 1.15rem;
    line-height: 1;
}

.btn-portal-login-label {
    display: none;
}

@media (min-width: 768px) {
    .btn-portal-login {
        min-width: 8.5rem;
    }

    .btn-portal-login-label {
        display: inline;
        margin-left: 0.35rem;
    }
}

.btn-buyer-header:hover,
.btn-supplier-header:hover,
.btn-portal-login:hover {
    transform: translateY(-2px);
    color: var(--brand-white);
}

.btn-portal-login:hover {
    background: linear-gradient(135deg, var(--brand-dark) 0%, #001f16 100%);
    box-shadow: 0 6px 22px rgba(0, 88, 55, 0.45);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-portal-login:focus-visible {
    outline: 3px solid var(--brand-green-light);
    outline-offset: 2px;
}

/**********************************/
/******** BOOK MEETING SECTION *********/
/**********************************/
.book-meeting-section {
    background: var(--bg-light);
    padding: 80px 30px;
}

.meeting-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 88, 55, 0.15);
    border: 1px solid rgba(0, 88, 55, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 88, 55, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(0, 88, 55, 0); }
}

.meeting-badge i,
.meeting-badge span {
    color: var(--brand-green);
}

.meeting-cta-content h2 {
    color: var(--brand-green);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.meeting-cta-content p {
    color: #1f2937;
    font-size: 1.1rem;
    line-height: 1.8;
}

.meeting-benefits {
    list-style: none;
    padding: 0;
}

.meeting-benefits li {
    color: #1f2937;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.meeting-benefits li i {
    color: var(--brand-green);
    font-size: 1.3rem;
}

.btn-book-meeting {
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-green) 100%);
    color: var(--brand-white);
    border: none;
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 88, 55, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-book-meeting:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(0, 88, 55, 0.4);
    color: var(--brand-white);
}

/**********************************/
/******** RESPONSIVE STYLES *********/
/**********************************/
@media (min-width: 1400px) {
    .section-container,
    .about .container,
    .service .container,
    .feature .container-fluid,
    .faqs .container,
    .top-bar .container-fluid,
    .nav-bar .container-fluid,
    .footer .container,
    .video .container,
    .ai-leadership-section .container {
        max-width: 1600px;
        padding: 0 60px;
    }
}

@media (max-width: 991.98px) {
    .rfq-hero-section {
        min-height: auto;
    }
    
    .rfq-hero-section .row {
        min-height: auto;
        flex-direction: column;
    }
    
    .opportunities-carousel-container {
        height: auto !important;
    }
    
    .book-meeting-section {
        padding: 40px 20px;
    }
    
    .meeting-cta-content h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .slide-title {
        font-size: 1.75rem;
    }
    
    .opportunity-title {
        font-size: 1.25rem;
    }
    
    .carousel-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .book-meeting-section {
        padding: 30px 15px;
    }
    
    .meeting-cta-content h2 {
        font-size: 1.5rem;
    }
}

/* AI Feature Items - Green Background on Hover */
.ai-feature-item:hover {
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-dark) 100%);
    box-shadow: 0 15px 40px rgba(0, 88, 55, 0.25);
}

.ai-feature-item:hover .ai-feature-icon i {
    color: var(--brand-white);
}

.ai-feature-item:hover .ai-feature-text h4 {
    color: var(--brand-white);
}

.ai-feature-item:hover .ai-feature-text p {
    color: rgba(255, 255, 255, 0.85);
}

.ai-feature-item:hover .stat-number {
    color: var(--brand-white);
}

.ai-feature-item:hover .stat-label {
    color: var(--brand-accent-light);
}

/* Feature Items - Green Background on Hover */
.feature-item:hover {
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-dark) 100%);
    box-shadow: 0 15px 40px rgba(0, 88, 55, 0.25);
}

.feature-item:hover .feature-icon i {
    color: var(--brand-white);
    transform: scale(1.1);
}

.feature-item:hover .feature-text h3 {
    color: var(--brand-white);
}

.feature-item:hover .feature-text p {
    color: rgba(255, 255, 255, 0.85);
}

/* Meeting CTA Content - Green Background on Hover */
.meeting-cta-content {
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.meeting-cta-content:hover {
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-dark) 100%);
    box-shadow: 0 15px 40px rgba(0, 88, 55, 0.25);
    transform: translateY(-3px);
}

.meeting-cta-content:hover .meeting-badge {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.meeting-cta-content:hover .meeting-badge i,
.meeting-cta-content:hover .meeting-badge span {
    color: var(--brand-white);
}

.meeting-cta-content:hover h2 {
    color: var(--brand-white);
}

.meeting-cta-content:hover p {
    color: rgba(255, 255, 255, 0.85);
}

.meeting-cta-content:hover .meeting-benefits li {
    color: rgba(255, 255, 255, 0.85);
}

.meeting-cta-content:hover .meeting-benefits li i {
    color: var(--brand-accent-light);
}
