@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #C5A059;
    --dark-color: #1A1814;
    --light-bg: #F5F1EA;
    --white: #FFFFFF;
    --off-white: #E5E1DA;
    --text-color: #333333;
    --text-muted: #777777;
    --border-color: var(--off-white);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1,
h2,
h3,
h4,
.font-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.text-muted {
    color: var(--text-muted);
}

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

/* Header */
header {
    background: transparent;
    padding: 30px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 85px;
    filter: brightness(0) invert(1);
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    text-transform: uppercase;
    font-size: 12px;
    /* font-weight: 500; */
    letter-spacing: 1px;
    color: var(--white);
}

nav ul li a:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    display: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

.btn-call {
    /* border: 1px solid rgba(255, 255, 255, 0.3); */
    color: var(--white);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-call i {
    color: #25D366;
    /* WhatsApp Green */
}

.btn-call:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideFade 25s infinite;
}

.slide:nth-child(1) {
    animation-delay: 0s;
}

.slide:nth-child(2) {
    animation-delay: 5s;
}

.slide:nth-child(3) {
    animation-delay: 10s;
}

.slide:nth-child(4) {
    animation-delay: 15s;
}

.slide:nth-child(5) {
    animation-delay: 20s;
}

@keyframes slideFade {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }

    5% {
        opacity: 1;
    }

    20% {
        opacity: 1;
    }

    25% {
        opacity: 0;
        transform: scale(1);
    }

    100% {
        opacity: 0;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

.hero .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 20px 60px;
    position: relative;
    z-index: 3;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    max-width: 900px;
}

.hero-content h1 span {
    color: var(--primary-color);
    font-style: italic;
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.hero-btns {
    margin-top: auto;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
}

.btn-hero {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.btn-hero i {
    font-size: 18px;
}

.btn-hero.active {
    background: var(--white);
    color: var(--dark-color);
}

.btn-hero:hover {
    background: var(--white);
    color: var(--dark-color);
}

.btn-blue {
    background: #3b82f6 !important;
    color: #fff !important;
}

.btn-green {
    background: #10b981 !important;
    color: #fff !important;
}

.btn-orange {
    background: #f59e0b !important;
    color: #fff !important;
}

.btn-purple {
    background: #6366f1 !important;
    color: #fff !important;
}

.btn-service-pillar {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    justify-content: center;
    text-align: center;
}

.btn-service-pillar:hover {
    background: var(--off-white) !important;
    color: var(--primary-color) !important;
}

/* Section Common */
.section {
    padding: 80px 0;
}

/*make every even section with light background*/
.section:nth-child(even) {
    background-color: var(--light-bg);
}

.section p.lead {
    max-width: 700px;
    margin: 0 auto 40px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title span {
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    /* margin-bottom: 10px; */
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
}

/* About Us */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.mission-item {
    margin-bottom: 30px;
}

.mission-item h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.mission-item h4 i {
    color: var(--primary-color);
}

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

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

.value-item i {
    display: block;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.value-item span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-stats {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--dark-color);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    gap: 30px;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.stat-item span {
    font-size: 12px;
    opacity: 0.7;
    text-transform: uppercase;
}

/* How We Work */
.how-we-work {
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

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

.step-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(187, 155, 91, 0.4);
}

.step-card h4 {
    margin-top: 10px;
    margin-bottom: 15px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Featured Opportunities */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.card-img {
    height: 250px;
    background: #D9D9D9;
    position: relative;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.card-content {
    padding: 20px;
}

.card-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.card-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--dark-color);
    padding: 6px 14px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
}

.card-title {
    font-size: 1rem;
    margin-bottom: 5px;
}

.card-location {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.card-features {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

/* Info Sections */
.info-row {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 100px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    transition: var(--transition);
    position: relative;
}

.info-row:nth-of-type(even) {
    flex-direction: row-reverse;
}

.info-img {
    flex: 0 0 65%;
    height: 550px;
    background: #D9D9D9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

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

.info-text {
    flex: 1;
    margin-left: -120px;
    margin-top: 100px;
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 10;
    position: relative;
}

.info-row:nth-of-type(even) .info-text {
    margin-left: 0;
    margin-right: -120px;
    text-align: left;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-icon i {
    color: var(--primary-color);
    font-size: 20px;
}

.info-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.info-text p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.benefits-list {
    margin-bottom: 35px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-color);
}

.benefits-list li i {
    color: var(--primary-color);
    font-size: 14px;
}

.btn-outline {
    border: 1px solid var(--border-color);
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 14px;
}

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

/* Solutions Section */
.bg-light {
    background: var(--light-bg);
}

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

.solution-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.solution-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.solution-icon {
    margin-bottom: 25px;
    color: var(--primary-color);
}

.solution-card h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.solution-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Ready to Connect */
.cta-section {
    background: radial-gradient(circle at center, #25221b 0%, var(--dark-color) 100%);
    color: var(--white);
    text-align: center;
    padding: 120px 0;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
    font-size: 1.2rem;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer */
footer {
    padding: 80px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-about p {
    color: var(--text-muted);
    margin-top: 20px;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-color);
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h4 {
    margin-bottom: 25px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-muted);
    font-size: 14px;
}

.newsletter p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    outline: none;
}

.btn-submit {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

/* Core Pillars V2 */
.pillars-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.pillar-card-v2 {
    background: var(--white);
    padding: 0;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pillar-card-v2:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.pillar-image-v2 {
    height: 180px;
    overflow: hidden;
}

.pillar-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.pillar-content-v2 {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pillar-icon-v2 {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.pillar-card-v2:hover .pillar-icon-v2 {
    background: var(--primary-color);
    color: var(--white);
}

.pillar-card-v2 h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.pillar-card-v2 p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.pillar-benefits-v2 {
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.pillar-benefits-v2 li {
    font-size: 13px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.pillar-benefits-v2 li i {
    color: var(--primary-color);
    font-size: 12px;
}

.pillar-link-v2 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.pillar-link-v2 i {
    font-size: 12px;
}

.pillar-link-v2:hover {
    color: var(--primary-color);
}

.pillar-link-v2:hover i {
    transform: translateX(5px);
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.blog-img {
    height: 230px;
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-muted);
}

.blog-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content h3 a:hover {
    color: var(--primary-color);
}

.blog-content p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
}

.read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.read-more i {
    font-size: 12px;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary-color);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
        position: relative;
        z-index: 1001;
        /* Above the fixed nav */
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--dark-color);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        z-index: 1000;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    nav ul li a {
        font-size: 24px;
    }

    .cards-grid,
    .blog-grid,
    .pillars-grid-v2,
    .solutions-grid,
    .footer-grid,
    .about-grid,
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 50px;
    }

    .about-stats {
        position: static;
        margin-top: 30px;
        justify-content: center;
    }

    .info-row {
        flex-direction: column !important;
        margin-bottom: 60px;
    }

    .info-img {
        height: 350px;
    }

    .info-text {
        margin: -40px 20px 0;
        padding: 30px;
        background: var(--white);
        backdrop-filter: none;
    }

    .info-row:nth-of-type(even) .info-text {
        margin-right: 20px;
    }
}

@media (max-width: 600px) {

    .cards-grid,
    .blog-grid,
    .pillars-grid-v2,
    .solutions-grid,
    .footer-grid,
    .about-grid,
    .steps-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .footer-social {
        justify-content: center;
    }
}
/* ── CMS Page Styles ─────────────────────────────────────── */
.page-hero {
    position: relative;
    min-height: 480px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    background-color: var(--dark-color);
}

.page-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero .hero-content h1 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero .hero-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Blocks Grid */
.blocks-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}
.blocks-grid.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.blocks-grid.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.blocks-grid.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.blocks-grid.grid-cols-6 { grid-template-columns: repeat(6, 1fr); }

.block-card {
    background: var(--white);
    border-radius: 15px;
    padding: 35px 30px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}
.block-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: var(--primary-color);
}
.block-icon {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
    transition: var(--transition);
}
.block-card:hover .block-icon {
    background: var(--primary-color);
    color: #fff;
}
.block-card img { width: 100%; border-radius: 10px; margin-bottom: 15px; }
.block-card h4 { font-size: 1.15rem; margin-bottom: 10px; }
.block-card p  { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* Section content */
.section-content { max-width: 800px; margin: 0 auto 30px; }
.section-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 15px; }
.section-content a { color: var(--primary-color); }

/* CTA section overrides for page CTA */
.cta-section .cta-content {
    display: flex;
    align-items: center;
    gap: 60px;
    background: var(--dark-color);
    border-radius: 20px;
    padding: 60px;
    color: #fff;
}
.cta-section .cta-text h2 { color: #fff; font-size: 2rem; margin-bottom: 15px; }
.cta-section .cta-text p  { color: rgba(255,255,255,0.8); margin-bottom: 30px; }
.cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 992px) {
    .blocks-grid.grid-cols-3,
    .blocks-grid.grid-cols-4,
    .blocks-grid.grid-cols-6 { grid-template-columns: repeat(2, 1fr); }
    .cta-section .cta-content { flex-direction: column; padding: 40px 30px; }
}
@media (max-width: 600px) {
    .blocks-grid { grid-template-columns: 1fr !important; }
}
