/**
 * Smearing Design - Design-specific styles for justprintcard.net
 * Based on Smearing WordPress Theme color scheme: primary #87bd3f, footer #0d1726
 */

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

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #747373;
    background: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    color: #292929;
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: #87bd3f;
    transition: color 0.3s ease;
}

a:hover {
    color: #72a40d;
}

/* =============================================
   HEADER TOP BAR
   ============================================= */
.header-topbar {
    background: #87bd3f;
    padding: 8px 0;
    font-size: 13px;
    color: #fff;
}

.header-topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0;
    padding-bottom: 0;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-left a,
.topbar-left span {
    color: #fff;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.topbar-left a:hover {
    color: #fff;
    opacity: 0.8;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topbar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    transition: background 0.3s;
}

.topbar-social a:hover {
    background: rgba(255,255,255,0.4);
    color: #fff;
}

.topbar-social svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* =============================================
   HEADER
   ============================================= */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    z-index: var(--z-fixed);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    height: auto;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px var(--space-lg);
    max-width: var(--container-max);
    margin: 0 auto;
    gap: 20px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.header-logo img {
    height: 45px;
    width: auto;
}

.header-logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #292929;
    letter-spacing: -0.02em;
    line-height: 1;
}

.header-logo-text span {
    color: #87bd3f;
}

/* Nav */
.nav-main {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    color: #292929;
    font-weight: 500;
    font-size: 15px;
    border-radius: 4px;
    transition: color 0.3s ease, background 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.nav-link svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.nav-link:hover,
.nav-link.active {
    color: #87bd3f;
    background: rgba(135, 189, 63, 0.08);
}

/* Dropdown */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-top: 3px solid #87bd3f;
    border-radius: 0 0 8px 8px;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 999;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-link {
    display: block;
    padding: 9px 16px;
    color: #292929;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.2s, background 0.2s;
    text-decoration: none;
}

.nav-dropdown-link:last-child {
    border-bottom: none;
}

.nav-dropdown-link:hover,
.nav-dropdown-link.active {
    color: #87bd3f;
    background: #f9fdf4;
}

.nav-dropdown-link small {
    color: #888;
    font-size: 12px;
    margin-left: 4px;
}

/* Header CTA */
.header-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: #87bd3f;
    color: #fff !important;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.header-cta:hover {
    background: #0d1726;
    color: #fff !important;
    transform: translateY(-1px);
}

/* Mobile toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #292929;
    border-radius: 2px;
    transition: 0.3s;
    display: block;
}

/* =============================================
   HERO SLIDER
   ============================================= */
.smearing-hero {
    position: relative;
    overflow: hidden;
    background: #0d1726;
}

.hero-slide {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13,23,38,0.85) 0%, rgba(13,23,38,0.5) 60%, transparent 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 60px 0 60px 90px;
}

.hero-slide-content .container {
    padding-top: 0;
    padding-bottom: 0;
}

.hero-tag {
    display: inline-block;
    color: #87bd3f;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-slide h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-slide p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
}

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

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: #87bd3f;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    transition: background 0.3s, transform 0.2s;
    text-decoration: none;
    border: 2px solid #87bd3f;
}

.btn-hero-primary:hover {
    background: #72a40d;
    border-color: #72a40d;
    color: #fff;
    transform: translateY(-2px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    border: 2px solid rgba(255,255,255,0.6);
    transition: all 0.3s;
    text-decoration: none;
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
}

/* Slider Nav */
.hero-prev, .hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: #87bd3f;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.hero-prev { left: 30px; }
.hero-next { right: 30px; }

.hero-prev:hover, .hero-next:hover {
    background: #0d1726;
}

/* =============================================
   SECTION COMMON
   ============================================= */
.smearing-section {
    padding: 80px 0;
}

.smearing-section.bg-light {
    background: #f4f4f4;
}

.smearing-section.bg-dark {
    background: #0d1726;
}

.section-tag {
    display: block;
    color: #87bd3f;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.smearing-section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #292929;
    margin-bottom: 15px;
    line-height: 1.2;
}

.smearing-section-subtitle {
    font-size: 15px;
    color: #747373;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

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

/* =============================================
   SERVICES SECTION (with images)
   ============================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.service-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.service-card-body {
    padding: 24px;
}

.service-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: #292929;
    margin-bottom: 10px;
}

.service-card-body p {
    font-size: 14px;
    color: #747373;
    line-height: 1.65;
    margin-bottom: 16px;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: #87bd3f;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-read-more:hover {
    background: #0d1726;
    color: #fff;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #87bd3f;
    color: #fff;
    padding: 20px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(135,189,63,0.4);
}

.about-badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.about-badge-text {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    display: block;
    margin-top: 4px;
}

.about-content .section-tag {
    text-align: left;
}

.about-content .smearing-section-title {
    text-align: left;
}

.about-content p {
    font-size: 15px;
    color: #747373;
    line-height: 1.75;
    margin-bottom: 20px;
}

.about-features {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: #292929;
    font-weight: 500;
}

.about-features li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: #87bd3f;
    border-radius: 50%;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 13px;
    background-repeat: no-repeat;
    background-position: center;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: #87bd3f;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.btn-about:hover {
    background: #0d1726;
    color: #fff;
    transform: translateY(-2px);
}

/* =============================================
   PORTFOLIO / RECENT WORKS
   ============================================= */
.portfolio-section {
    padding: 80px 0;
    background: #f4f4f4;
}

.portfolio-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.portfolio-filter-btn {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #747373;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.portfolio-filter-btn:hover,
.portfolio-filter-btn.active {
    background: #87bd3f;
    border-color: #87bd3f;
    color: #fff;
}

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

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

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

.portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,23,38,0.75);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    padding: 0 20px;
    margin: 0;
}

.portfolio-overlay span {
    color: #87bd3f;
    font-size: 13px;
    font-weight: 500;
}

/* =============================================
   ICON SERVICES SECTION
   ============================================= */
.icon-services-section {
    padding: 80px 0;
    background: #fff;
}

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

.icon-service-item {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.icon-service-item:hover {
    border-color: #87bd3f;
    box-shadow: 0 8px 25px rgba(135,189,63,0.12);
    transform: translateY(-4px);
}

.icon-service-icon {
    width: 64px;
    height: 64px;
    background: rgba(135,189,63,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: background 0.3s;
}

.icon-service-item:hover .icon-service-icon {
    background: #87bd3f;
}

.icon-service-icon svg {
    width: 30px;
    height: 30px;
    fill: #87bd3f;
    transition: fill 0.3s;
}

.icon-service-item:hover .icon-service-icon svg {
    fill: #fff;
}

.icon-service-item h3 {
    font-size: 17px;
    font-weight: 700;
    color: #292929;
    margin-bottom: 10px;
}

.icon-service-item p {
    font-size: 14px;
    color: #747373;
    line-height: 1.65;
    margin-bottom: 16px;
}

/* =============================================
   STATS / COUNTER SECTION
   ============================================= */
.stats-banner {
    padding: 60px 0;
    background: #0d1726;
}

.stats-banner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stats-banner-item .stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #87bd3f;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stats-banner-item .stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section {
    padding: 80px 0;
    background: #f4f4f4;
}

/* Carousel layout */
.testimonials-carousel {
    position: relative;
    padding: 0 50px;
}
.testi-track-wrap {
    overflow: hidden;
}
.testi-track {
    display: flex;
    transition: transform 0.4s ease;
}
.testi-track .testimonial-card {
    flex: 0 0 calc(33.333% - 17px);
    margin-right: 25px;
}
.testi-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 22px;
    line-height: 1;
    color: #333;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: background 0.2s, border-color 0.2s;
}
.testi-nav:hover {
    background: #87bd3f;
    border-color: #87bd3f;
    color: #fff;
}
.testi-prev { left: 0; }
.testi-next { right: 0; }
.testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}
.testi-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    padding: 0;
}
.testi-dot.active {
    background: #87bd3f;
}

.testimonial-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    position: relative;
    box-sizing: border-box;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 5rem;
    font-weight: 800;
    color: #87bd3f;
    opacity: 0.2;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.testimonial-stars span {
    color: #87bd3f;
    font-size: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: #747373;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info strong {
    display: block;
    font-size: 15px;
    color: #292929;
    font-weight: 600;
}

.testimonial-author-info span {
    font-size: 13px;
    color: #87bd3f;
}

/* =============================================
   BLOG / ARTICLES SECTION
   ============================================= */
.blog-section {
    padding: 80px 0;
    background: #fff;
}

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

.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: block;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    height: 210px;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.blog-card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.blog-card:hover .blog-card-image::before {
    opacity: 1;
}

.blog-card-body {
    padding: 22px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.blog-card-tag {
    font-size: 12px;
    font-weight: 600;
    color: #87bd3f;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card-date {
    font-size: 12px;
    color: #888;
}

.blog-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #292929;
    line-height: 1.45;
    margin: 0;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover h3 {
    color: #87bd3f;
}

/* =============================================
   CATEGORIES SECTION (homepage)
   ============================================= */
.smearing-categories {
    padding: 80px 0;
    background: #f4f4f4;
}

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

.category-card-sm {
    background: #fff;
    border-radius: 8px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    text-decoration: none;
    display: block;
    border-bottom: 3px solid transparent;
}

.category-card-sm:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    border-bottom-color: #87bd3f;
}

.category-card-sm-icon {
    width: 56px;
    height: 56px;
    background: rgba(135,189,63,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: background 0.3s;
}

.category-card-sm:hover .category-card-sm-icon {
    background: #87bd3f;
}

.category-card-sm-icon svg {
    width: 26px;
    height: 26px;
    fill: #87bd3f;
    transition: fill 0.3s;
}

.category-card-sm:hover .category-card-sm-icon svg {
    fill: #fff;
}

.category-card-sm h3 {
    font-size: 15px;
    font-weight: 700;
    color: #292929;
    margin-bottom: 6px;
    transition: color 0.3s;
}

.category-card-sm:hover h3 {
    color: #87bd3f;
}

.category-card-sm p {
    font-size: 13px;
    color: #888;
    margin: 0;
}

/* =============================================
   TAGS SECTION
   ============================================= */
.smearing-tags-section {
    padding: 60px 0;
    background: #fff;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: #f4f4f4;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #747373;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.tag-pill:hover {
    background: #87bd3f;
    border-color: #87bd3f;
    color: #fff;
}

.tag-pill-count {
    background: rgba(0,0,0,0.1);
    border-radius: 20px;
    padding: 1px 7px;
    font-size: 11px;
}

.tag-pill:hover .tag-pill-count {
    background: rgba(255,255,255,0.25);
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
    padding: 70px 0;
    background: linear-gradient(135deg, #87bd3f 0%, #5a8e1a 100%);
    text-align: center;
}

.cta-banner h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    padding: 14px 36px;
    background: #fff;
    color: #87bd3f;
    font-weight: 700;
    font-size: 15px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cta-white:hover {
    background: #0d1726;
    color: #fff;
    transform: translateY(-2px);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: #0d1726;
    padding: 0;
}

.footer-top-bar {
    background: #87bd3f;
    padding: 35px 0;
}

.footer-top-bar-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.footer-contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact-icon svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.footer-contact-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin-bottom: 3px;
}

.footer-contact-item p,
.footer-contact-item a {
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: rgba(255,255,255,0.8);
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    margin-top: 15px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: #87bd3f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.footer-social a:hover {
    background: rgba(255,255,255,0.2);
}

.footer-social svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 5px;
}

.footer-logo-wrap img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo-wrap span {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #87bd3f;
    display: inline-block;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.3s, padding-left 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '›';
    color: #87bd3f;
    font-size: 16px;
    line-height: 1;
}

.footer-links a:hover {
    color: #87bd3f;
    padding-left: 4px;
}

.footer-newsletter input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 10px;
    outline: none;
    transition: border-color 0.3s;
}

.footer-newsletter input:focus {
    border-color: #87bd3f;
}

.footer-newsletter input::placeholder {
    color: rgba(255,255,255,0.5);
}

.footer-newsletter button {
    width: 100%;
    padding: 10px;
    background: #87bd3f;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.footer-newsletter button:hover {
    background: #72a40d;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin: 4px 0;
}

.footer-bottom a {
    color: #87bd3f;
}

/* =============================================
   PAGE HERO (internal pages)
   ============================================= */
.page-hero {
    background-image: url('/images/ref/slider-4.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0 60px;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13,23,38,0.75);
}

.page-hero-inner {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    flex-wrap: wrap;
}

.breadcrumb-nav a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-nav a:hover {
    color: #87bd3f;
}

.breadcrumb-nav span {
    color: rgba(255,255,255,0.5);
}

.breadcrumb-nav .current {
    color: #87bd3f;
}

/* =============================================
   ARTICLE PAGE
   ============================================= */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    padding: 50px 0;
}

.article-content-wrap {
    background: #fff;
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.article-content-wrap h1 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #292929;
    margin-bottom: 20px;
    line-height: 1.25;
}

.article-meta-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    flex-wrap: wrap;
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #888;
}

.article-meta-item svg {
    width: 14px;
    height: 14px;
    fill: #87bd3f;
}

.article-content-body {
    color: #000;
    line-height: 1.8;
    font-size: 16px;
}

.article-content-body h2,
.article-content-body h3,
.article-content-body h4 {
    color: #292929;
    margin-top: 28px;
    margin-bottom: 14px;
}

.article-content-body p {
    margin-bottom: 18px;
    color: #000;
}

.article-content-body ul,
.article-content-body ol {
    padding-left: 20px;
    margin-bottom: 18px;
    color: #000;
}

.article-content-body a {
    color: #87bd3f;
    text-decoration: underline;
}

/* Sidebar */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.sidebar-widget-title {
    font-size: 16px;
    font-weight: 700;
    color: #292929;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #87bd3f;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-links a {
    font-size: 14px;
    color: #747373;
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 4px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    border-left: 3px solid transparent;
}

.sidebar-links a:hover,
.sidebar-links a.active {
    background: #f9fdf4;
    color: #87bd3f;
    border-left-color: #87bd3f;
}

.sidebar-links a::before {
    content: '›';
    color: #87bd3f;
    font-size: 16px;
}

/* =============================================
   CATEGORY / SUBCATEGORY PAGES
   ============================================= */
.cat-layout {
    padding: 50px 0;
}

.cat-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.article-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.article-card-image {
    height: 190px;
    overflow: hidden;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.article-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card-category {
    font-size: 12px;
    color: #87bd3f;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.article-card-body h3 {
    font-size: 15px;
    font-weight: 700;
    color: #292929;
    line-height: 1.4;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.article-card:hover h3 {
    color: #87bd3f;
}

/* Pagination */
.smearing-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.smearing-pagination a,
.smearing-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    color: #747373;
    text-decoration: none;
    transition: all 0.3s;
    background: #fff;
}

.smearing-pagination a:hover,
.smearing-pagination span.current {
    background: #87bd3f;
    border-color: #87bd3f;
    color: #fff;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 60px 0;
    align-items: start;
}

.contact-info-card {
    background: #0d1726;
    color: #fff;
    border-radius: 8px;
    padding: 40px;
}

.contact-info-card h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.contact-info-card p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.7;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-info-item-icon {
    width: 44px;
    height: 44px;
    background: #87bd3f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item-icon svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.contact-info-item-text h4 {
    color: #87bd3f;
    font-size: 14px;
    margin-bottom: 4px;
}

.contact-info-item-text p,
.contact-info-item-text a {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    text-decoration: none;
    margin: 0;
}

.contact-form-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
}

.contact-form-card h2 {
    color: #292929;
    font-size: 1.6rem;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #292929;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 11px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    color: #292929;
    background: #fff;
    transition: border-color 0.3s;
    outline: none;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #87bd3f;
    box-shadow: 0 0 0 3px rgba(135,189,63,0.1);
}

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

.btn-submit {
    width: 100%;
    padding: 13px;
    background: #87bd3f;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    font-family: inherit;
}

.btn-submit:hover {
    background: #0d1726;
    transform: translateY(-1px);
}

/* =============================================
   404 PAGE
   ============================================= */
.not-found-section {
    padding: 100px 0;
    text-align: center;
    background: #f4f4f4;
}

.not-found-number {
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: 900;
    color: #87bd3f;
    line-height: 1;
    margin-bottom: 20px;
}

.not-found-section h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: #292929;
    margin-bottom: 15px;
}

.not-found-section p {
    font-size: 16px;
    color: #747373;
    max-width: 500px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

.not-found-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    background: #87bd3f;
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
}

.not-found-btn:hover {
    background: #0d1726;
    color: #fff;
}

/* =============================================
   MOBILE MENU
   ============================================= */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 998;
}

.mobile-overlay.active {
    display: block;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 290px;
    height: 100vh;
    background: #0d1726;
    z-index: 999;
    overflow-y: auto;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-logo {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-close svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.mobile-nav-links {
    padding: 15px 0;
    flex: 1;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 20px;
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #87bd3f;
    background: rgba(255,255,255,0.05);
}

.mobile-nav-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: transform 0.3s;
}

.mobile-nav-item.open .mobile-nav-link svg {
    transform: rotate(180deg);
}

.mobile-nav-dropdown {
    display: none;
    background: rgba(0,0,0,0.3);
    padding: 5px 0;
}

.mobile-nav-item.open .mobile-nav-dropdown {
    display: block;
}

.mobile-nav-dropdown a,
.mobile-nav-all {
    display: block;
    padding: 9px 20px 9px 30px;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-nav-dropdown a:hover,
.mobile-nav-all:hover,
.mobile-nav-dropdown a.active,
.mobile-nav-all.active {
    color: #87bd3f;
}

.mobile-cta {
    padding: 20px;
    margin-top: auto;
}

.mobile-cta a {
    display: block;
    text-align: center;
    padding: 12px;
    background: #87bd3f;
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
}

.mobile-cta a:hover {
    background: #72a40d;
}

/* =============================================
   HEADER SPACER (below sticky header)
   ============================================= */
.header-spacer {
    height: 70px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .services-grid,
    .icon-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-banner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .portfolio-grid,
    .blog-grid,
    .cat-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testi-track .testimonial-card {
        flex: 0 0 calc(50% - 13px);
    }
    .testimonials-carousel {
        padding: 0 46px;
    }
    .about-grid {
        gap: 40px;
    }
    .nav-main {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .header-cta {
        display: none;
    }
    .topbar-left {
        display: none;
    }
    .footer-top-bar-inner {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .article-layout {
        grid-template-columns: 1fr;
    }
    .contact-info-card,
    .contact-form-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .smearing-section, .blog-section, .about-section, .portfolio-section, .icon-services-section, .testimonials-section, .smearing-categories {
        padding: 50px 0;
    }
    .section-header-center {
        margin-bottom: 30px;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-badge {
        position: relative;
        bottom: 0;
        right: 0;
        display: inline-block;
        margin-top: 15px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-links {
        align-items: center;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-brand {
        text-align: center;
    }
    .footer-logo-wrap {
        justify-content: center;
    }
    .footer-title {
        text-align: center;
    }
    .services-grid,
    .blog-grid,
    .cat-articles-grid {
        grid-template-columns: 1fr;
    }
    .testi-track .testimonial-card {
        flex: 0 0 100%;
        margin-right: 0;
    }
    .testimonials-carousel {
        padding: 0 40px;
    }
    .testi-nav {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    .icon-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-banner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-banner {
        padding: 40px 0;
    }
    .stats-banner-item .stat-number {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }
    .stats-banner-item .stat-label {
        font-size: 12px;
    }
    .hero-slide {
        min-height: 380px;
    }
    .hero-slide-content {
        padding: 40px 0 40px 24px;
        max-width: 85%;
    }
    .hero-slide h1 {
        font-size: 1.6rem;
    }
    .hero-slide p {
        font-size: 13px;
        margin-bottom: 18px;
    }
    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 10px 22px;
        font-size: 14px;
    }
    .smearing-section-title {
        font-size: 1.5rem;
    }
    .smearing-section-subtitle {
        font-size: 14px;
    }
    .section-tag {
        font-size: 12px;
    }
    .hero-prev, .hero-next {
        width: 36px;
        height: 36px;
        font-size: 16px;
        top: auto;
        bottom: 20px;
        transform: none;
    }
    .hero-prev { left: calc(50% - 44px); }
    .hero-next { right: calc(50% - 44px); }
    .header-topbar {
        display: none;
    }
    .footer-top-bar-inner {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    .footer-contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .contact-info-card {
        padding: 25px 20px;
    }
    .contact-form-card {
        padding: 25px 20px;
    }
    .contact-layout {
        gap: 30px;
        padding: 40px 0;
    }
    .cta-banner {
        padding: 50px 0;
    }
    .page-hero {
        padding: 70px 0 35px;
    }
    .article-content-wrap {
        padding: 20px;
    }
    .article-layout {
        padding: 30px 0;
        gap: 25px;
    }
    /* Testimonial card text size on mobile */
    .testimonial-text {
        font-size: 14px;
    }
    .testimonial-card {
        padding: 22px;
    }
    /* Service cards without images on about page */
    .service-card-body {
        padding: 20px;
    }
    .icon-service-item {
        padding: 22px 16px;
    }
    /* Portfolio grid on phone - 2 columns instead of 1 */
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .smearing-section, .blog-section, .about-section, .portfolio-section, .icon-services-section, .testimonials-section, .smearing-categories {
        padding: 35px 0;
    }
    .section-header-center {
        margin-bottom: 20px;
    }
    .categories-grid {
        grid-template-columns: 1fr;
    }
    .icon-services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .icon-service-item {
        padding: 18px 14px;
    }
    .icon-service-item h3 {
        font-size: 1rem;
    }
    .icon-service-item p {
        font-size: 13px;
    }
    .stats-banner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .hero-slide {
        min-height: 320px;
    }
    .hero-slide-content {
        padding: 30px 0 30px 16px;
        max-width: 100%;
    }
    .hero-slide h1 {
        font-size: 1.3rem;
    }
    .hero-slide p {
        font-size: 12px;
        margin-bottom: 16px;
    }
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 9px 18px;
        font-size: 13px;
    }
    .smearing-section-title {
        font-size: 1.25rem;
    }
    .smearing-section-subtitle {
        font-size: 13px;
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .service-card-body {
        padding: 16px;
    }
    .service-card-body h3 {
        font-size: 1rem;
    }
    .service-card-body p {
        font-size: 13px;
    }
    .contact-info-card h2 {
        font-size: 1.3rem;
    }
    .contact-form-card h2 {
        font-size: 1.2rem;
    }
    .page-hero {
        padding: 60px 0 30px;
    }
    .page-hero h1 {
        font-size: 1.4rem;
    }
    .testimonials-carousel {
        padding: 0 32px;
    }
    .testi-nav {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    .testimonial-card {
        padding: 20px;
    }
    .testimonial-text {
        font-size: 13px;
    }
    .testimonial-author-info strong {
        font-size: 14px;
    }
    .testimonial-author-info span {
        font-size: 12px;
    }
    .testi-dots {
        margin-top: 20px;
    }
    .testi-dot {
        width: 8px;
        height: 8px;
    }
    .about-badge {
        display: none;
    }
    .cta-banner {
        padding: 35px 0;
    }
    .cta-banner h2 {
        font-size: 1.3rem;
    }
    .cta-banner p {
        font-size: 13px;
    }
    /* Footer on small screens */
    .footer-main {
        padding: 35px 0 25px;
    }
    .footer-grid {
        gap: 25px;
    }
    .footer-bottom p {
        font-size: 12px;
    }
}
