/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bc62;
    --accent-color: #ff6b35;
    --text-color: #333;
    --light-bg: #f2f0ef;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

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

.container.about-page {
    padding: 0; /* Remove horizontal padding for full-width sections */
}

/* Navigation */
.navbar {
    background: #000000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: background 0.3s ease;
}

/* Transparent header when scrolling */
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.1rem 20px;
}

.logo h1 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
}

.logo-image {
    height: 80px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    width: 28px;
    height: 22px;
}

.hamburger span {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: top 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.is-active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%) rotate(-45deg);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #e55a2b;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--light-bg);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background: #597256;
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 0.5px solid #ffd700;
}

.cta-button:hover {
    background: var(--secondary-color);
    border-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
}

/* Page Header (for inner pages) */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
}

/* Page Hero Section (for availability page) */
.page-hero {
    height: 40vh;
    min-height: 300px;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    overflow: hidden;
    width: 100%;
}

/* Why Market Spotlight Section */
.why-spotlight-section {
    padding: 1.5rem 0 2rem 0; /* Tightened spacing */
    background: rgba(151, 188, 98, 0.08); /* Light green background like home page cards */
}

/* New styles for the updated Why Market Spotlight section */
.why-spotlight-title {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: left; /* Move text to the left */
    letter-spacing: -0.5px;
}

.why-spotlight-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    text-align: left; /* Move text to the left */
    max-width: none;
    margin: 0 0 1.5rem 0; /* Add bottom margin between paragraphs */
}

.last-updated-header {
    margin-bottom: 1.5rem;
    text-align: left;
}

.last-updated-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    margin-right: 0.5rem;
}

.last-updated-time {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}


.why-spotlight-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4));
    border-radius: 18px;
    z-index: -1;
}

.why-spotlight-card h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.why-spotlight-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}

@media (max-width: 768px) {
    .why-spotlight-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .why-spotlight-card h2 {
        font-size: 1.8rem;
    }
    
    .why-spotlight-card p {
        font-size: 1rem;
    }
}

.page-hero .page-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.page-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

/* Responsive adjustments for page hero */
@media (max-width: 768px) {
    .page-hero {
        height: 50vh;
        min-height: 250px;
    }
    
    .page-hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 0.75rem;
    }
    
    .page-hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        height: 45vh;
        min-height: 200px;
    }
    
    .page-hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .page-hero-content p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .page-hero-content {
        padding: 0 15px;
    }
}

/* Content Section */
.content-section {
    padding: 20px 0; /* Further tightened spacing */
}

.content-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Availability Page Specific Styles */
.availability-heading {
    color: #000000 !important;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem; /* Reduced margin */
    margin-top: 0; /* Remove top margin to bring closer */
}

.availability-blurb {
    margin: 3rem 0 1rem 0; /* Top margin to separate from text above, small bottom margin */
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Removed box-shadow to remove the shadow */
    position: relative;
}

.availability-blurb::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4));
    border-radius: 22px;
    z-index: -1;
}

.availability-blurb p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: left; /* Left align to match other text */
}


.blurb-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center; /* Center the buttons */
    flex-wrap: wrap;
}

.blurb-buttons .btn-primary,
.blurb-buttons .btn-secondary {
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 200px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Product Tags */
.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: #f0f0f0;
    color: var(--text-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Product Buttons */
.product-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.75rem 1rem;
    border: 2px solid var(--text-color);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.btn-primary {
    background: var(--text-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    text-decoration: none;
}

.btn-secondary {
    background: var(--white);
    color: var(--text-color);
}

.btn-secondary:hover {
    background: var(--light-bg);
    text-decoration: none;
}

/* Product Filters */
.product-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    height: 42px;
    padding: 0 1.25rem;
    border: 2px solid #ddd;
    background: var(--white);
    border-radius: 25px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.section-subtitle.large-text {
    font-size: 1.5rem;
    font-weight: 500;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: var(--white);
    margin: 10% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 700px;
    position: relative;
    animation: slideIn 0.3s;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.modal-content .modal-body {
    overflow: auto;
    max-height: calc(80vh - 130px);
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #333;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Availability Table */
.availability-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.availability-table th,
.availability-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.availability-table th {
    background: #1a3d1a;
    color: var(--white);
}

.availability-table tr:hover {
    background: var(--light-bg);
}

.in-stock {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Inquire button styles - black with hover flair */
.btn-inquire {
    background: #000000;
    color: var(--white);
    border: 1px solid #333333;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-inquire::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-inquire:hover {
    background: #1a1a1a;
    border-color: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    scale: 1.05;
}

.btn-inquire:hover::before {
    left: 100%;
}

.btn-inquire:active {
    transform: translateY(-1px);
    scale: 1.02;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Mobile responsive table */
@media (max-width: 768px) {
    .availability-table {
        display: block;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    .availability-table thead,
    .availability-table tbody,
    .availability-table th,
    .availability-table td,
    .availability-table tr {
        display: block;
    }
    
    .availability-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    .availability-table tr {
        border: 1px solid #ccc;
        margin-bottom: 1rem;
        border-radius: 8px;
        padding: 1rem;
        background: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .availability-table td {
        border: none;
        position: relative;
        padding: 0.5rem 0;
        padding-left: 50%;
        text-align: left;
        white-space: normal;
    }
    
    .availability-table td:before {
        content: attr(data-label);
        position: absolute;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: 600;
        color: var(--primary-color);
    }
    
    .availability-table td:last-child {
        text-align: center;
        padding-left: 0;
    }
    
    .availability-table td:last-child:before {
        display: none;
    }
    
    .btn-inquire {
        width: 100%;
        padding: 0.75rem;
        font-size: 1rem;
    }
}

.out-of-stock {
    color: #ff4444;
    font-weight: 600;
}

/* Contact Form */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

/* Contact page specific form styling */
body:not(.home) .contact-form {
    max-width: 900px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.contact-form .form-feedback {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: #1b5e20;
}

.contact-form .form-feedback.error {
    color: #b00020;
}

.submit-button {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: var(--secondary-color);
}

/* Footer */
.footer {
    background: #000000;
    color: var(--white);
    padding: 2rem 0;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 0.8;
}

/* Social Links Styling */
.social-links {
    margin-top: 1rem;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 5px;
}

.linkedin-link:hover {
    color: #0077b5;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.linkedin-link svg {
    transition: transform 0.3s ease;
}

.linkedin-link:hover svg {
    transform: scale(1.1);
}

/* Footer Logo Styling */
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* Contact Page Header Styling */
.contact-header {
    margin-bottom: 3rem;
}

.company-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #888;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.contact-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive adjustments for contact header */
@media (max-width: 768px) {
    .contact-main-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .company-subtitle {
        font-size: 1rem;
    }

    .contact-description {
        font-size: 1rem;
        line-height: 1.7;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 2001;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        width: 100vw;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #000;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem;
        z-index: 2000;
    }
    
    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        color: #fff;
        font-size: 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .features h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .product-buttons {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .modal-content {
        margin: 20% auto;
        width: 95%;
        padding: 1.5rem;
    }
    
    .product-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* ===== Landing Page Updates (Home only) ===== */
/* No special navbar behavior on home; keep global black navbar */
body.home .logo h1 { color: var(--white); }
body.home .nav-menu a { color: var(--white); }
body.home .hamburger span { background: var(--white); }

/* Hero Section with Background Image */
body.home .hero {
    height: 100vh;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    overflow: hidden;
    width: 100%;
}

body.home .hero .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

body.home .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

body.home .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

body.home .hero-content h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

body.home .hero-content h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}

/* Responsive hero text */
@media (max-width: 768px) {
    body.home .hero-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    body.home .hero-content h3 {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    body.home .hero-content h2 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    body.home .hero-content h3 {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
}

body.home .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary,
.btn-secondary,
.cta-button {
    border-radius: 50px;
}

/* Hero buttons: yellow outline, green inside, white text */
body.home .hero .btn-primary,
body.home .hero .btn-secondary {
    border: 0.5px solid #ffd700;
    text-decoration: none;
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

body.home .hero .btn-primary:hover,
body.home .hero .btn-secondary:hover {
    background: var(--secondary-color);
    border-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
    text-decoration: none;
}

/* Intro Section */
.intro-section {
    padding: 60px 0;
    background: rgba(151, 188, 98, 0.08);
    color: var(--text-color);
}

.intro-section .container {
    max-width: 1100px;
    padding: 0 20px;
}

.insight-layout {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.insight-title {
    flex: 0 0 200px;
    display: flex;
    align-items: flex-start;
}

.insight-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0;
    color: var(--primary-color);
}

.insight-content {
    flex: 1;
    border-left: 2px solid rgba(151, 188, 98, 0.3);
    padding-left: 40px;
}

.insight-content p {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .insight-layout {
        flex-direction: column;
        gap: 24px;
    }

    .insight-title {
        flex: none;
    }

    .insight-content {
        border-left: none;
        border-top: 2px solid rgba(151, 188, 98, 0.3);
        padding-left: 0;
        padding-top: 24px;
    }
}

/* Ensure generic button links never underline */
.btn-primary,
.btn-secondary {
    text-decoration: none;
}

.btn-primary:hover,
.btn-secondary:hover {
    text-decoration: none;
}

/* Key Sectors Section */
body.home .key-sectors {
    padding: 80px 0;
    background: var(--light-bg);
}

body.home .key-sectors h2,
body.home .process h2 {
    color: var(--text-color);
    text-shadow: none;
}

/* Ensure Our Focus Areas heading matches Our Process heading */
body.home .key-sectors h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 4rem;
}

body.home .sector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
    margin-top: 1.5rem;
}

body.home .sector-card {
    background: linear-gradient(145deg, #ffffff, #f9f9f9);
    border: 1px solid #dcdcdc;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    color: var(--text-color);
    text-decoration: none;
    overflow: hidden;
}

body.home .sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #c0c0c0;
}

body.home .sector-card .sector-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    body.home .sector-card .sector-image {
        height: 150px;
    }
}

body.home .sector-card h3 {
    margin-bottom: 0.5rem;
    color: #000000;
    font-size: 1.5rem;
}

body.home .sector-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

/* Product Toolbar alignment */
.product-toolbar {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.product-toolbar .toolbar-row {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.product-toolbar .product-filters {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-toolbar .search-input {
    padding: 0.6rem 1rem;
    border: 1px solid #ddd;
    border-radius: 25px;
    min-width: 260px;
    height: 42px;
    line-height: 42px;
}

/* Prevent body scroll when menu open */
body.menu-open {
    overflow: hidden;
}

/* Modal accordion styles */
.modal-formats { margin-bottom: 1rem; }
.modal-subheading { font-size: 1.25rem; margin: 1rem 0 0.5rem; color: var(--primary-color); }
.accordion { border-top: 1px solid #eee; }
.accordion-item { border-bottom: 1px solid #eee; }
.accordion-header { 
    width: 100%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 0.75rem 0; 
    background: transparent; 
    border: none; 
    font-size: 1rem; 
    font-weight: 600; 
    cursor: pointer; 
    color: var(--text-color);
}
.accordion-header .chevron { transition: transform 0.2s ease; }
.accordion-item.active .accordion-header .chevron { transform: rotate(180deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.accordion-item.active .accordion-panel { max-height: 500px; }
.accordion-panel ul { padding-left: 1rem; margin: 0 0 0.75rem 0; }

/* Ensure form fields in modal stretch full width */
#quoteModal .contact-form .form-group input,
#quoteModal .contact-form .form-group textarea {
    width: 100%;
}

/* Form Grid Layout for Quote Modal */
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* 2x2 grid on wider screens */
@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

/* Ensure grid form groups don't have extra margin */
.form-grid .form-group {
    margin-bottom: 0;
}

/* Get In Touch Section with Light Green Background */
.get-in-touch-header {
    background: #ffffff;
    padding: 2.5rem 0 1.5rem 0;
}

.get-in-touch-section {
    background: #f0f8f0;
    padding: 3rem 0;
    margin: 0;
}

/* Make green sections full-bleed */
.get-in-touch-section {
    width: 100%;
}
.get-in-touch-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.get-in-touch-section .contact-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Office Directory */
.office-directory {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin: 2rem 0 0;
}

.office-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 16px 32px rgba(17, 43, 17, 0.08);
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.office-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.office-icon svg {
    width: 30px;
    height: 30px;
}

.office-details h4 {
    margin: 0 0 0.35rem 0;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
}

.office-details p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--text-color);
    font-weight: 500;
}

.office-details p + p {
    margin-top: 0.35rem;
}

.contact-form .form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .contact-form .form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .office-card {
        flex-direction: row;
    }
}

@media (max-width: 540px) {
    .office-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 1rem;
    }

    .office-details h4 {
        font-size: 1.25rem;
    }
}

/* Our Process Section */
.process {
    padding: 60px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #ececec 100%);
}

.process .container {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
}

.process .container::before {
    display: none;
}

.process h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.process-steps {
    width: 100%;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 2rem;
    align-items: start;
    height: fit-content;
}

@media (min-width: 992px) {
    .process-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
}

.process-card {
    background: rgba(151, 188, 98, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(151, 188, 98, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    min-height: 220px; /* Ensure cards have a consistent height */
}

.process-card:hover {
    transform: translateY(-5px);
    background: rgba(151, 188, 98, 0.12);
    border-color: rgba(151, 188, 98, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.process-content {
    margin-top: 1.5rem;
    flex-grow: 1; /* Allow content to fill stretched card height */
}

.process-content h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
    text-align: center; /* Center align heading */
}

.process-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left; /* Left align paragraph text */
}

.process-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* About Page Specific Styles */
.about-page .about-section {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.about-page .about-section:last-child {
    border-bottom: none;
}

.about-page h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
}

.about-page h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-page p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-page .column-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: left;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.about-page .lead-text {
    font-size: 1.1rem;
    font-weight: 400;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
    text-justify: inter-word;
}


.about-card {
    background: linear-gradient(145deg, #ffffff, #f9f9f9);
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #c0c0c0;
}

.about-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4));
    border-radius: 17px;
    z-index: -1;
}

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

.about-page .features-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.about-page .feature-item {
    background: linear-gradient(145deg, #ffffff, #f9f9f9);
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 2rem;
    margin: 0.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.about-page .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #c0c0c0;
}

.about-page .feature-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4));
    border-radius: 17px;
    z-index: -1;
}


.about-page .global-map {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.about-page .locations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
    margin-top: 1.5rem;
}

.about-page .locations-grid span {
    background: var(--light-bg);
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    font-weight: 500;
    border: 1px solid #e0e0e0;
}

@media (max-width: 768px) {
    .about-page .features-grid.two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-page h2 {
        font-size: 2rem;
    }
}

.contact-intro {
    margin-bottom: 3rem;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    padding: 2.5rem;
    position: relative;
}

.contact-intro::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4));
    border-radius: 22px;
    z-index: -1;
}

/* Utility */
.text-center { text-align: center; }

@media (max-width: 768px) {
    .contact-intro { padding: 1.25rem 1.5rem; }
}

/* About Page Glass Effects */
.about-content {
    background: var(--white);
    padding: 40px 0;
}

.about-page .glass-card {
    background: var(--light-bg);
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.about-page .glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.about-page .glass-feature {
    background: var(--light-bg);
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.about-page .glass-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.about-content .about-section {
    border-bottom: none;
    padding: 15px 0;
}

.about-content .about-section:last-child {
    margin-bottom: 0;
}

.about-content .glass-card:last-child {
    margin-bottom: 0;
}

/* Button Styles */
.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border: 0.5px solid #ffd700;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-primary:hover,
.btn-primary:active {
    background: var(--secondary-color);
    border-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
}

.btn-secondary {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border: 0.5px solid #ffd700;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-secondary:hover,
.btn-secondary:active {
    background: var(--secondary-color);
    border-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
}

/* Form submit button */
.form-group button[type="submit"] {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group button[type="submit"]:hover,
.form-group button[type="submit"]:active {
    background: #597256;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(89, 114, 86, 0.3);
}

/* Market Spotlight page buttons - matching home page style */
.btn-primary-black,
.btn-secondary-black {
    padding: 12px 24px;
    border: 1px solid #ffd700;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary-black:hover,
.btn-secondary-black:hover {
    background: var(--secondary-color);
    border-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
    text-decoration: none;
}

body.home .key-sectors {
    padding: 60px 0;
    background: #ffffff;
}

body.home .process {
    padding: 60px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #ececec 100%);
}

body.home .key-sectors .container {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
}

body.home .key-sectors .container::before {
    display: none;
}

body.home .key-sectors h2,
body.home .process h2 {
    color: var(--primary-color);
    text-shadow: none;
}

body.home .sector-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

body.home .sector-card {
    background: rgba(151, 188, 98, 0.08);
    border: 1px solid rgba(151, 188, 98, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    color: var(--text-color);
    text-decoration: none;
}

body.home .sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(151, 188, 98, 0.3);
    background: rgba(151, 188, 98, 0.12);
}

body.home .sector-card .sector-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

body.home .sector-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

body.home .sector-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.process-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.process-card {
    background: linear-gradient(145deg, #ffffff, #f9f9f9);
    border: 1px solid #dcdcdc;
    border-radius: 15px;
    padding: 2rem;
    padding-top: 3.5rem;
    position: relative;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 800px;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #c0c0c0;
}

.process-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.process-content h3 {
    font-size: 1.4rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.process-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 992px) {
    .process-container {
        flex-direction: row;
        align-items: stretch; /* Stretch items to equal height */
        gap: 1.5rem; /* Tighter gap */
    }

    .process-steps {
        flex: 1; /* 50% width */
    }

    .process-image {
        flex: 1; /* 50% width */
        display: flex;
        align-items: center;
    }
}

.process-steps {
    width: 100%;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1.5rem; /* Tighter gap */
    align-items: stretch; /* Make cards in the same row equal height */
    height: 100%; /* Ensure grid fills the container height */
}

@media (min-width: 992px) {
    .process-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
}

.process-card {
    background: rgba(151, 188, 98, 0.08);
    border: 1px solid rgba(151, 188, 98, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 1.5rem; /* Tighter padding */
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.process-card:hover {
    transform: translateY(-5px);
    background: rgba(151, 188, 98, 0.12);
    border-color: rgba(151, 188, 98, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.process-content {
    margin-top: 1.5rem;
    text-align: left; /* Justify text to the left */
    flex-grow: 1; /* Allow content to fill stretched card height */
}

.process-content h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.process-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cta-hero {
    height: 60vh;
    min-height: 400px;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    overflow: hidden;
    width: 100%;
}

.cta-hero .cta-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.cta-hero .cta-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.cta-hero .cta-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.about-page .about-section {
    max-width: none;
    margin: 0 0 2rem 0;
    background: #ffffff; /* White background */
    padding: 1.5rem;
    border-radius: 0;
}

/* Align Our Story section with What We Do by removing extra horizontal padding */
.about-page .about-section.story-cards-section {
    padding-left: 0;
    padding-right: 0;
}


.company-name-small {
    font-size: 1.2rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Old centered two-card grid (not used now) */
.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem auto;
    max-width: 900px;
}

.feature-cards-grid .feature-item, .cards-stack .feature-item {
    background: #f5f5f5; /* Light gray background */
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-height: 220px; /* More square */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-cards-grid .feature-item:hover, .cards-stack .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #d5d5d5;
    background: #f7f7f7;
}

.feature-cards-grid .feature-item h3, .cards-stack .feature-item h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.feature-cards-grid .feature-item p, .cards-stack .feature-item p {
    color: #555;
    font-size: 1.15rem;
    line-height: 1.6;
    text-align: center;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .feature-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 600px;
    }

    .what-we-do-section .container {
        max-width: 100%;
        padding: 0 1rem;
    }
}

/* Our Story Section styling (light gray full-bleed) */
.our-story-section {
    background: #f5f5f5;
    padding: 2rem 0 3rem 0;
}

/* Ensure Our Story heading matches Why Market Spotlight/What We Do */
.our-story-section .why-spotlight-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: left;
    letter-spacing: -0.5px;
}

/* Our Story + Cards side-by-side layout */
.story-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.story-left {
    text-align: left;
}

.cards-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Bulleted points to replace cards */
.story-bullets {
    list-style: disc outside;
    list-style-position: outside;
    margin: 0;
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.story-bullets li {
    font-weight: 700;
    font-size: 1.5rem; /* Larger for impact */
    line-height: 1.6;
    color: var(--primary-color); /* Heading green */
}

/* Vertical divider between story and bullets */
.story-layout {
    position: relative;
}

@media (max-width: 992px) {
    .story-layout::before { display: none; }
}

/* Use a pseudo-element for a taller vertical divider and adjust spacing */
.cards-stack {
    position: relative;
    padding-left: 2rem;
    margin-top: calc(2rem + 50px); /* Drop bullets by ~50px */
}

.cards-stack::before {
    content: '';
    position: absolute;
    left: 0;
    top: -30px;   /* extend above content */
    bottom: -30px;/* extend below content */
    width: 1px;
    background: #e0e0e0;
}

/* Horizontal divider between sections */
.section-divider {
    width: 85%;
    max-width: 1100px;
    height: 1px;
    border: none;
    background: linear-gradient(to right, transparent, #dcdcdc, transparent);
    margin: 2rem auto 3rem;
}

/* Ensure on the about page our special H2s match size of What We Do */
.about-page .why-spotlight-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Ensure exact match for Our Story heading as well */
.story-cards-section .why-spotlight-title { font-size: 2.2rem; }

@media (max-width: 992px) {
    .story-layout {
        grid-template-columns: 1fr;
    }
    .cards-stack {
        order: 2;
    }
}

.about-logo {
    margin-bottom: 2rem;
}

.about-logo img {
    max-width: 200px;
    height: auto;
}

.about-page h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.about-text {
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.about-text p {
    margin-bottom: 1.5rem;
}

/* Two Column Layout for Who We Are Section */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.column-left {
    padding-right: 2rem;
}

.column-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: left;
}

.column-left p:last-child {
    margin-bottom: 0;
}

.column-right {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    border-radius: 15px;
    padding: 2rem;
    min-height: 300px;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 1rem;
}

.about-logo {
    max-width: 200px;
    height: auto;
    width: 100%;
    object-fit: contain;
    margin-bottom: 1rem;
}

.logo-tagline {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for Two Column Layout */
@media (max-width: 768px) {
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .column-left {
        padding-right: 0;
        text-align: center;
    }

    .column-left p {
        text-align: center;
    }

    .column-right {
        min-height: 250px;
        padding: 1.5rem;
    }

    .about-logo {
        max-width: 150px;
    }

    .logo-tagline {
        font-size: 0.9rem;
    }

    .about-card {
        padding: 1.5rem;
        margin: 1rem 0;
    }
}

/* CTA Section for About Page */
.cta-section-about {
    background: linear-gradient(145deg, #ffffff, #f9f9f9);
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.cta-section-about:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #c0c0c0;
}

.cta-section-about::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4));
    border-radius: 17px;
    z-index: -1;
}

.cta-section-about h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-section-about p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-section-about .cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.3);
}

.cta-section-about .cta-button:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(151, 188, 98, 0.4);
    color: var(--white);
    text-decoration: none;
}

/* Responsive adjustments for CTA section */
@media (max-width: 768px) {
    .cta-section-about {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }

    .cta-section-about h2 {
        font-size: 1.8rem;
    }

    .cta-section-about p {
        font-size: 1rem;
    }

    .cta-section-about .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
}
