/* 
    JayDurgaEnterprisess Custom Styles
    Theme: Burgundy/Maroon, Cream & Gold — Trust-Inspiring Indian Business
    Layout: Centered Minimal Hero, Clean Sections
*/

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

:root {
    --primary-color: #7B1D1D;      /* Deep Burgundy/Maroon */
    --primary-dark: #5A1010;       /* Darker Maroon */
    --primary-light: #A83232;      /* Lighter Maroon */
    --secondary-color: #C9A84C;    /* Rich Gold */
    --secondary-dark: #A0822E;     /* Darker Gold */
    --secondary-light: #E8C96A;    /* Lighter Gold */
    --cream: #FDF6EC;              /* Warm Cream */
    --cream-dark: #F5E8D0;         /* Darker Cream */
    --text-color: #2A1A1A;         /* Deep Brown-Black */
    --text-muted: #7A5C5C;         /* Muted Brown */
    --bg-light: #FDF6EC;           /* Cream Background */
    --white: #FFFFFF;
    --border-color: #E8D5C4;
    --shadow-color: rgba(123, 29, 29, 0.12);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-color);
}

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

/* ===== UTILITIES ===== */
.text-primary { color: var(--primary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.bg-cream { background-color: var(--cream) !important; }
.text-muted { color: var(--text-muted) !important; }

/* ===== BUTTONS ===== */
.btn {
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: var(--transition);
    border-radius: 50px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(123, 29, 29, 0.3);
}
.btn-primary:hover, .btn-primary:focus {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: var(--white);
    box-shadow: 0 6px 20px rgba(123, 29, 29, 0.45);
    transform: translateY(-2px);
}
.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    border: none;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.35);
}
.btn-secondary:hover, .btn-secondary:focus {
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary-color));
    color: var(--white);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.5);
    transform: translateY(-2px);
}
.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}
.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-color);
}
.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.7);
    color: var(--white);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.25);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-light {
    background: var(--cream);
    color: var(--primary-color);
    border: none;
    font-weight: 700;
}
.btn-light:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ===== HOVER LIFT ===== */
.hover-lift {
    transition: var(--transition);
}
.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px var(--shadow-color) !important;
}

/* ===== GLASSMORPHISM CARD ===== */
.glass-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.glass-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.glass-card h5, .glass-card p {
    color: var(--white);
}

/* ===== TOP BAR ===== */
.top-bar {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    border-bottom: 2px solid var(--secondary-color);
    font-size: 0.82rem;
}
.top-bar a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s;
}
.top-bar a:hover {
    color: var(--secondary-light);
}

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(255,255,255,0.97) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(123, 29, 29, 0.1);
}
.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem !important;
    color: var(--primary-color) !important;
    letter-spacing: -0.3px;
}
.navbar-brand span {
    color: var(--secondary-color);
}
.navbar .nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 14px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(123, 29, 29, 0.07);
}
.navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 2px;
}
.dropdown-menu {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(123, 29, 29, 0.12);
    padding: 8px;
}
.dropdown-item {
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    padding: 8px 14px;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}
.dropdown-item:hover {
    background: rgba(123, 29, 29, 0.07);
    color: var(--primary-color);
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cream);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
#preloader .spinner-border {
    color: var(--primary-color);
    width: 3rem;
    height: 3rem;
    border-width: 3px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        170deg,
        rgba(90, 16, 16, 0.93) 0%,
        rgba(123, 29, 29, 0.82) 50%,
        rgba(60, 10, 10, 0.92) 100%
    );
    z-index: 0;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--white), transparent);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px 20px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.2);
    border: 1px solid rgba(201, 168, 76, 0.5);
    color: var(--secondary-light);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
}
.hero-title .highlight {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.82);
    max-width: 640px;
    margin: 0 auto 40px;
    font-weight: 400;
    line-height: 1.7;
}
.hero-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
    margin: 0 auto 32px;
    border-radius: 2px;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
    flex-wrap: wrap;
}
.hero-stat-item .stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-light);
    line-height: 1;
}
.hero-stat-item .stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ===== SECTION STYLES ===== */
.section-padding {
    padding: 96px 0;
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--secondary-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.section-label::before,
.section-label::after {
    content: '';
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--secondary-color);
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}
.section-header {
    margin-bottom: 60px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--white);
}
.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 0.6s ease;
}
.about-img-wrapper:hover img {
    transform: scale(1.03);
}
.about-img-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 8px 30px rgba(123, 29, 29, 0.4);
    min-width: 130px;
}
.about-img-badge .badge-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--secondary-light);
}
.about-img-badge .badge-label {
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.85;
    margin-top: 4px;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-color);
}
.feature-list li:last-child {
    border-bottom: none;
}
.feature-list li .check-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 11px;
    margin-top: 2px;
}

/* ===== PRODUCT CARDS ===== */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.product-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 36px var(--shadow-color);
    transform: translateY(-6px);
}
.product-card .card-img-wrapper {
    overflow: hidden;
    height: 220px;
    position: relative;
}
.product-card .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .card-img-wrapper img {
    transform: scale(1.08);
}
.product-card .card-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 50px;
}
.product-card .card-body {
    padding: 24px;
}
.product-card .card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
}
.product-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: var(--transition);
    margin-top: 10px;
}
.product-card .card-link:hover {
    gap: 10px;
    color: var(--secondary-dark);
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-section {
    background: linear-gradient(155deg, var(--primary-dark) 0%, var(--primary-color) 40%, #9B2626 100%);
    position: relative;
    overflow: hidden;
}
.why-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.06);
    pointer-events: none;
}
.why-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}
.why-section .section-title,
.why-section h2,
.why-section .text-white {
    color: var(--white) !important;
}
.why-section p,
.why-section .text-light {
    color: rgba(255,255,255,0.8) !important;
}
.why-checklist li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    color: rgba(255,255,255,0.9);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.95rem;
}
.why-checklist li:last-child { border-bottom: none; }
.why-checklist li .check-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    background: rgba(201, 168, 76, 0.2);
    border: 1px solid rgba(201, 168, 76, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-light);
    font-size: 12px;
}

/* ===== STAT BOX ===== */
.stat-box {
    padding: 36px 24px;
    border-radius: var(--radius-md);
    background: var(--white);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.stat-box::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}
.stat-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px var(--shadow-color);
    transform: translateY(-4px);
}
.stat-box .stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}
.stat-box .stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
/* compat for old counter elements */
.stat-box h2.counter { 
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
    line-height: 1;
}
.stat-box h2.d-inline-block {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-box p.text-muted { font-size: 0.85rem; font-weight: 600; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    height: 100%;
}
.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.1;
    position: absolute;
    top: 10px;
    left: 24px;
    line-height: 1;
}
.testimonial-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 12px 36px var(--shadow-color);
    transform: translateY(-4px);
}
.testimonial-card .stars {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.testimonial-card .review-text {
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 24px;
    font-size: 0.95rem;
}
.testimonial-card .reviewer {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}
.testimonial-card .reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.testimonial-card .reviewer-avatar.gold {
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-color));
}
.testimonial-card .reviewer-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 2px;
}
.testimonial-card .reviewer-role {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 60px solid rgba(201, 168, 76, 0.1);
    pointer-events: none;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 50px solid rgba(255,255,255,0.05);
    pointer-events: none;
}
.cta-section .gold-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
    margin: 16px auto;
    border-radius: 2px;
}

/* ===== FOOTER ===== */
footer {
    background: #1A0A0A !important;
    border-top: 3px solid var(--primary-color);
}
footer .footer-brand {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--white);
}
footer .footer-brand span {
    color: var(--secondary-color);
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-links a:hover {
    color: var(--secondary-light) !important;
    padding-left: 4px;
}
.footer-divider {
    border-color: rgba(255,255,255,0.1) !important;
}
.social-links a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
}
.social-links a:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}
footer h4, footer h5 {
    color: var(--white);
}
footer .text-muted {
    color: rgba(255,255,255,0.45) !important;
}

/* ===== FLOATING BUTTONS ===== */
.floating-btn {
    position: fixed;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.floating-btn:hover {
    color: var(--white);
    transform: scale(1.12);
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
}
.whatsapp-btn {
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, #25d366, #128c7e);
}
.call-btn {
    bottom: 86px;
    right: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 88px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-dark));
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(123, 29, 29, 0.3);
}
.back-to-top.active {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    color: var(--white);
    box-shadow: 0 6px 20px rgba(123, 29, 29, 0.45);
    transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .section-padding { padding: 64px 0; }
    .hero-section { min-height: auto; padding: 100px 0 80px; }
    .hero-section::after { display: none; }
    .hero-stats { gap: 28px; }
    .navbar-nav { padding: 16px 0; }
    .navbar .nav-link { border-radius: 0; }
}
@media (max-width: 575.98px) {
    .section-padding { padding: 48px 0; }
    .hero-title { font-size: 2.2rem; }
    .hero-stats { gap: 20px; }
    .hero-stat-item .stat-num { font-size: 1.5rem; }
    .stat-box { padding: 24px 16px; }
    .stat-box h2.counter { font-size: 2.2rem; }
}
