/**
 * Main styles – full theme CSS.
 */

/* Import critical styles (already inlined) but we'll keep separate */
/* Additional styles for all pages */

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
}
h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
p {
    margin-bottom: 1.5em;
}

/* ===== Hero ===== */
.hero-section {
    padding: 100px 0;
    background: #0A0A0A;
    color: #fff;
    text-align: center;
    position: relative;
}
.hero-section .container {
    position: relative;
    z-index: 2;
}
.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.3em;
}
.hero-title span {
    color: #D4AF37;
}
.hero-sub {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2em;
    opacity: 0.8;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-primary {
    background: #D4AF37;
    color: #0A0A0A;
    padding: 14px 40px;
    border-radius: 40px;
    font-weight: 600;
    transition: background 0.3s;
}
.btn-primary:hover {
    background: #c4a032;
}
.btn-secondary {
    border: 2px solid #D4AF37;
    color: #D4AF37;
    padding: 14px 40px;
    border-radius: 40px;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
}
.btn-secondary:hover {
    background: #D4AF37;
    color: #0A0A0A;
}

/* ===== Footer ===== */
.site-footer {
    background: #0A0A0A;
    color: #aaa;
    padding: 60px 0 30px;
}
.site-footer .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.footer-widget h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1em;
}
.footer-widget ul {
    list-style: none;
}
.footer-widget ul li {
    margin-bottom: 0.5em;
}
.footer-widget a {
    color: #aaa;
}
.footer-widget a:hover {
    color: #D4AF37;
}
.footer-social a {
    margin-right: 15px;
    font-size: 1.2rem;
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #222;
    margin-top: 30px;
    font-size: 0.9rem;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 992px) {
    .site-footer .container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-primary {
        display: none;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background: #0A0A0A;
        padding: 20px;
    }
    .nav-primary.active {
        display: block;
    }
    .nav-primary ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .header-cta {
        display: none;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .site-footer .container {
        grid-template-columns: 1fr;
    }
}

/* ===== HOMEPAGE MODULES ===== */

/* Section headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 0.3em;
    color: #0A0A0A;
}
.section-header .section-sub {
    font-size: 1.15rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

/* ----- Hero module ----- */
.module-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.module-hero .hero-title {
    font-size: 4.5rem;
    font-weight: 700;
}
.module-hero .hero-title span {
    color: #D4AF37;
}
.module-hero .hero-sub {
    font-size: 1.3rem;
    max-width: 650px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* ----- Services grid ----- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.service-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}
.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #D4AF37;
}
.service-icon img {
    max-height: 60px;
    width: auto;
}
.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}
.service-card h3 a {
    color: #0A0A0A;
}
.service-card h3 a:hover {
    color: #D4AF37;
}
.service-card p {
    color: #6B7280;
    font-size: 0.95rem;
}
.service-link {
    font-weight: 600;
    color: #D4AF37;
}

/* ----- Portfolio grid ----- */
.portfolio-filters {
    text-align: center;
    margin-bottom: 35px;
}
.filter-btn {
    background: none;
    border: none;
    padding: 8px 20px;
    margin: 0 4px 8px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    color: #6B7280;
    transition: 0.3s;
}
.filter-btn.active,
.filter-btn:hover {
    background: #D4AF37;
    color: #0A0A0A;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
.portfolio-item .portfolio-thumb img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s;
}
.portfolio-item:hover .portfolio-thumb img {
    transform: scale(1.05);
}
.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.4s;
}
.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}
.portfolio-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}
.portfolio-overlay .portfolio-meta {
    font-size: 0.85rem;
    opacity: 0.8;
}
.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* ----- Testimonials carousel ----- */
.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.testimonial-slide {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    text-align: center;
}
.testimonial-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}
.testimonial-text {
    font-style: italic;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.7;
}
.testimonial-author {
    font-weight: 600;
    color: #0A0A0A;
}
.testimonial-author span {
    font-weight: 400;
    color: #6B7280;
}
.testimonial-stars {
    color: #D4AF37;
    letter-spacing: 3px;
    margin-top: 8px;
}
.testimonial-stars .star.empty {
    color: #ddd;
}

/* ----- Stats module ----- */
.module-stats {
    background: #0A0A0A;
    color: #fff;
    padding: 70px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: #D4AF37;
    line-height: 1.2;
}
.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ----- CTA module ----- */
.module-cta {
    padding: 100px 0;
    color: #fff;
}
.module-cta h2 {
    font-size: 3rem;
    font-weight: 700;
}
.module-cta .cta-sub {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ----- Blog feed ----- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.blog-card:hover {
    transform: translateY(-6px);
}
.blog-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.blog-content {
    padding: 20px 25px;
}
.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}
.blog-content h3 a {
    color: #0A0A0A;
}
.blog-content h3 a:hover {
    color: #D4AF37;
}
.blog-meta {
    font-size: 0.85rem;
    color: #6B7280;
    margin-bottom: 10px;
}
.blog-link {
    font-weight: 600;
    color: #D4AF37;
}

/* ----- Logos grid ----- */
.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.logo-item {
    max-width: 150px;
    opacity: 0.6;
    transition: opacity 0.3s;
}
.logo-item:hover {
    opacity: 1;
}
.logo-item img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s;
}
.logo-item:hover img {
    filter: grayscale(0);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .module-hero .hero-title {
        font-size: 2.8rem;
    }
    .section-header h2 {
        font-size: 2.2rem;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stat-number {
        font-size: 2.5rem;
    }
}

/* ===== PAGE HERO ===== */
.page-hero {
    padding: 80px 0;
    background: #0A0A0A;
    color: #fff;
    text-align: center;
    position: relative;
}
.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}
.page-hero .container {
    position: relative;
    z-index: 2;
}
.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0.3em;
}
.page-hero .page-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT PAGE ===== */
.about-content {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    line-height: 1.8;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.team-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    text-align: center;
}
.team-card .team-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}
.team-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.team-card .team-role {
    display: block;
    font-size: 0.9rem;
    color: #D4AF37;
    margin-bottom: 10px;
}
.team-card .team-bio {
    font-size: 0.9rem;
    color: #6B7280;
}
.team-card .team-social {
    margin: 15px 0;
}
.team-card .team-social a {
    margin: 0 8px;
    color: #0A0A0A;
    font-size: 1.2rem;
}
.team-card .team-social a:hover {
    color: #D4AF37;
}
.team-card .team-link {
    font-weight: 600;
    color: #D4AF37;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    padding: 60px 0;
}
.contact-form-wrap form p {
    margin-bottom: 20px;
}
.contact-form-wrap label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}
.contact-form-wrap input,
.contact-form-wrap textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}
.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
    border-color: #D4AF37;
    outline: none;
}
.contact-form-wrap .required {
    color: #D4AF37;
}
.contact-info {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
}
.contact-details {
    list-style: none;
    padding: 0;
}
.contact-details li {
    margin-bottom: 15px;
}
.contact-social a {
    margin: 0 10px 0 0;
    font-size: 1.5rem;
    color: #0A0A0A;
}
.contact-social a:hover {
    color: #D4AF37;
}
.contact-map {
    margin-top: 20px;
}

/* ===== BLOG PAGE ===== */
.blog-archive {
    padding: 40px 0;
}
.pagination {
    text-align: center;
    margin-top: 40px;
}
.pagination a, .pagination span {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 4px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
}
.pagination .current {
    background: #D4AF37;
    color: #fff;
    border-color: #D4AF37;
}
.pagination a:hover {
    background: #f5f5f5;
}

/* ===== SINGLE PORTFOLIO ===== */
.portfolio-single .portfolio-client,
.portfolio-single .portfolio-industry {
    font-size: 1.1rem;
    opacity: 0.9;
}
.portfolio-content {
    max-width: 800px;
    margin: 40px auto;
}
.portfolio-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}
.detail-block {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}
.detail-block h3 {
    font-size: 1.2rem;
    color: #D4AF37;
    margin-bottom: 10px;
}
.portfolio-video .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.portfolio-video .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}
.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s;
}
.gallery-item img:hover {
    transform: scale(1.03);
}
.portfolio-client-logo {
    text-align: center;
    margin: 40px 0;
}
.portfolio-client-logo img {
    max-width: 200px;
}
.portfolio-cta {
    text-align: center;
    margin: 40px 0;
}
.related-projects {
    margin-top: 60px;
}
.related-projects .portfolio-grid.small-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* ===== SINGLE SERVICE ===== */
.service-process {
    margin: 40px 0;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.process-step {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #D4AF37;
}
.process-step h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.process-step p {
    color: #6B7280;
}
.service-cta {
    text-align: center;
    padding: 40px 0;
}

/* ===== SINGLE TEAM ===== */
.team-profile {
    display: flex;
    gap: 40px;
    padding: 60px 0;
}
.team-profile-photo {
    flex: 0 0 300px;
}
.team-profile-photo img {
    border-radius: 12px;
    width: 100%;
    height: auto;
}
.team-profile-info h1 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}
.team-profile-info .team-role {
    font-size: 1.1rem;
    color: #D4AF37;
    display: block;
    margin-bottom: 20px;
}
.team-profile-info .team-bio-full {
    font-size: 1.05rem;
    line-height: 1.8;
}
.team-profile-info .team-social a {
    margin-right: 15px;
    font-size: 1.5rem;
    color: #0A0A0A;
}
.team-profile-info .team-social a:hover {
    color: #D4AF37;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .team-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .team-profile-photo {
        flex: 0 0 auto;
        max-width: 250px;
    }
}
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    .portfolio-details {
        grid-template-columns: 1fr;
    }
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* ===== CONTACT FORM ===== */
.contact-form-wrap .form-group {
    margin-bottom: 20px;
}
.contact-form-wrap label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}
.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}
.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
    border-color: #D4AF37;
    outline: none;
}
.contact-form-wrap .required {
    color: #D4AF37;
}
.kmb-form-success {
    background: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    border-left: 4px solid #28a745;
}
.kmb-form-loader {
    display: inline-block;
    margin-left: 10px;
    color: #6B7280;
}
#kmb-form-response {
    margin-top: 15px;
    font-weight: 600;
}
#kmb-form-response.success {
    color: #28a745;
}
#kmb-form-response.error {
    color: #dc3545;
}
/* ===== Base ===== */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'Inter', sans-serif; background:#FAFAFA; color:#1A1A1A; line-height:1.6; }
a { color:#D4AF37; text-decoration:none; }
a:hover { color:#b8962f; }
img { max-width:100%; height:auto; }
.container { max-width:1200px; margin:0 auto; padding:0 20px; }

/* ===== Typography ===== */
h1,h2,h3,h4,h5,h6 { font-family:'Playfair Display', serif; font-weight:700; line-height:1.2; margin-bottom:0.5em; }
h1 { font-size:3.5rem; }
h2 { font-size:2.8rem; }
h3 { font-size:2rem; }
p { margin-bottom:1.5em; }

/* ===== Buttons ===== */
.btn-primary { background:#D4AF37; color:#0A0A0A; padding:14px 40px; border-radius:40px; font-weight:600; transition:background 0.3s; display:inline-block; }
.btn-primary:hover { background:#c4a032; }
.btn-secondary { border:2px solid #D4AF37; color:#D4AF37; padding:14px 40px; border-radius:40px; font-weight:600; transition:all 0.3s; display:inline-block; }
.btn-secondary:hover { background:#D4AF37; color:#0A0A0A; }

/* ===== Modules ===== */
.home-module { padding:80px 0; }
.section-header { text-align:center; margin-bottom:50px; }
.section-header h2 { font-size:2.8rem; }
.section-header .section-sub { font-size:1.2rem; color:#6B7280; max-width:600px; margin:0 auto; }
.section-cta { text-align:center; margin-top:40px; }

/* ===== Hero ===== */
.module-hero { min-height:100vh; display:flex; align-items:center; justify-content:center; color:#fff; background-size:cover; background-position:center; position:relative; }
.module-hero .hero-title { font-size:4.5rem; font-weight:700; }
.module-hero .hero-title span { color:#D4AF37; }
.module-hero .hero-sub { font-size:1.3rem; max-width:650px; margin:0 auto 2rem; opacity:0.9; }
.module-hero .hero-buttons { display:flex; gap:20px; justify-content:center; flex-wrap:wrap; }

/* ===== Services ===== */
.services-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(280px,1fr)); gap:30px; }
.service-card { background:#fff; padding:30px 25px; border-radius:12px; box-shadow:0 4px 20px rgba(0,0,0,0.05); text-align:center; transition:transform 0.3s, box-shadow 0.3s; }
.service-card:hover { transform:translateY(-8px); box-shadow:0 12px 40px rgba(0,0,0,0.10); }
.service-icon { font-size:3rem; margin-bottom:15px; color:#D4AF37; }
.service-icon img { max-height:60px; width:auto; }
.service-card h3 { font-size:1.4rem; }
.service-card p { color:#6B7280; }
.service-link { font-weight:600; color:#D4AF37; }

/* ===== Portfolio ===== */
.portfolio-filters { text-align:center; margin-bottom:35px; }
.filter-btn { background:none; border:none; padding:8px 20px; margin:0 4px 8px; border-radius:30px; cursor:pointer; font-weight:500; color:#6B7280; transition:0.3s; }
.filter-btn.active, .filter-btn:hover { background:#D4AF37; color:#0A0A0A; }
.portfolio-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(300px,1fr)); gap:25px; }
.portfolio-item { position:relative; overflow:hidden; border-radius:12px; }
.portfolio-item .portfolio-thumb img { width:100%; height:auto; display:block; transition:transform 0.4s; }
.portfolio-item:hover .portfolio-thumb img { transform:scale(1.05); }
.portfolio-overlay { position:absolute; bottom:0; left:0; width:100%; padding:25px; background:linear-gradient(transparent, rgba(0,0,0,0.7)); color:#fff; transform:translateY(20px); opacity:0; transition:0.4s; }
.portfolio-item:hover .portfolio-overlay { transform:translateY(0); opacity:1; }
.portfolio-overlay h3 { font-size:1.2rem; margin-bottom:4px; }

/* ===== Testimonials ===== */
.testimonials-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(320px,1fr)); gap:30px; }
.testimonial-card { background:#fff; padding:30px; border-radius:12px; box-shadow:0 4px 20px rgba(0,0,0,0.05); text-align:center; }
.testimonial-photo { width:70px; height:70px; border-radius:50%; object-fit:cover; margin-bottom:15px; }
.testimonial-text { font-style:italic; color:#333; margin-bottom:15px; }
.testimonial-author { font-weight:600; }
.testimonial-stars { color:#D4AF37; margin-top:8px; }
.testimonial-stars .star.empty { color:#ddd; }

/* ===== Stats ===== */
.module-stats { background:#0A0A0A; color:#fff; }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:30px; text-align:center; }
.stat-number { display:block; font-size:3.5rem; font-weight:700; color:#D4AF37; line-height:1.2; }
.stat-label { font-size:1rem; opacity:0.8; text-transform:uppercase; letter-spacing:1px; }

/* ===== CTA ===== */
.module-cta { padding:100px 0; color:#fff; position:relative; background-size:cover; background-position:center; }
.module-cta h2 { font-size:3rem; }
.module-cta .cta-sub { font-size:1.2rem; margin-bottom:2rem; opacity:0.9; }

/* ===== Blog ===== */
.blog-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(300px,1fr)); gap:30px; }
.blog-card { background:#fff; border-radius:12px; overflow:hidden; box-shadow:0 4px 20px rgba(0,0,0,0.05); transition:transform 0.3s; }
.blog-card:hover { transform:translateY(-6px); }
.blog-thumb img { width:100%; height:220px; object-fit:cover; }
.blog-content { padding:20px 25px; }
.blog-content h3 { font-size:1.3rem; }
.blog-meta { font-size:0.85rem; color:#6B7280; margin-bottom:10px; }
.blog-link { font-weight:600; color:#D4AF37; }

/* ===== Logos ===== */
.logos-grid { display:flex; flex-wrap:wrap; justify-content:center; align-items:center; gap:40px; }
.logo-item { max-width:150px; opacity:0.6; transition:opacity 0.3s; }
.logo-item:hover { opacity:1; }
.logo-item img { max-width:100%; height:auto; filter:grayscale(100%); transition:filter 0.3s; }
.logo-item:hover img { filter:grayscale(0); }

/* ===== Responsive ===== */
@media (max-width:992px) {
    h1 { font-size:2.8rem; }
    h2 { font-size:2.2rem; }
    .stats-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:768px) {
    .module-hero .hero-title { font-size:2.8rem; }
    .module-hero .hero-sub { font-size:1rem; }
    .services-grid { grid-template-columns:1fr; }
    .portfolio-grid { grid-template-columns:1fr; }
    .stats-grid { grid-template-columns:1fr 1fr; }
    .stat-number { font-size:2.5rem; }
    .module-cta h2 { font-size:2.2rem; }
}