/*--------------------------------------------------------------------- 
Modern Minimalist Design - Yiucon Unlimited Concepts
---------------------------------------------------------------------*/

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

/*--------------------------------------------------------------------- 
Reset & Base Styles
---------------------------------------------------------------------*/

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

:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --tertiary-dark: #2a2a2a;
    --accent-red: #dc2626;
    --accent-red-hover: #b91c1c;
    --text-primary: #ffffff;
    --text-secondary: #a3a3a3;
    --text-muted: #737373;
    --border-color: #333333;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    word-wrap: break-word;
}

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

a:hover {
    color: var(--accent-red);
    text-decoration: none !important;
}

a:active,
a:focus {
    text-decoration: none !important;
    outline: none;
}

a:visited {
    text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem 0;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin: 0 0 1.25rem 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Global Mobile Responsive Rules */
section,
div,
article,
aside,
main {
    max-width: 100%;
    box-sizing: border-box;
}

/* Remove underlines from all button links */
.btn_main a,
.about_us a,
.read_bt a,
.main_bt a,
.btn_main a:hover,
.about_us a:hover,
.read_bt a:hover,
.main_bt a:hover,
.btn_main a:active,
.about_us a:active,
.read_bt a:active,
.main_bt a:active,
.btn_main a:focus,
.about_us a:focus,
.read_bt a:focus,
.main_bt a:focus,
.btn_main a:visited,
.about_us a:visited,
.read_bt a:visited,
.main_bt a:visited {
    text-decoration: none !important;
    outline: none !important;
}

ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

/*--------------------------------------------------------------------- 
Layout & Spacing
---------------------------------------------------------------------*/

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.container-fluid {
    width: 100%;
    padding: 0 2rem;
    box-sizing: border-box;
}

.section-padding {
    padding: 6rem 0;
}

.section-padding-small {
    padding: 4rem 0;
}

/*--------------------------------------------------------------------- 
Header & Navigation
---------------------------------------------------------------------*/

.header_section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.header_section.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Simple Header with Back to Home */
.header_section.simple-header {
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid var(--border-color);
}

.back-to-home-wrapper {
    padding: 1.25rem 0;
}

.back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.back-to-home svg {
    transition: transform 0.2s ease;
}

.back-to-home:hover {
    color: var(--accent-red);
    background: rgba(220, 38, 38, 0.1);
    text-decoration: none;
}

.back-to-home:hover svg {
    transform: translateX(-4px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
    background: transparent;
}

/* Desktop & Mobile Navigation Display */
.destop_header {
    display: block;
}

.mobile_header {
    display: none;
}

.destop_header .navbar {
    max-width: 1400px;
    margin: 0 auto;
}

.logo_main img {
    height: 35px;
    width: auto;
    transition: var(--transition);
}

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

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-primary) !important;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    letter-spacing: 0.3px;
    text-transform: capitalize;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-red) !important;
}

/* Underline effect for non-onepage nav items only */
.header_section:not(.onepage-nav) .nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--accent-red);
    transition: transform 0.3s ease;
}

.header_section:not(.onepage-nav) .nav-item:hover::after,
.header_section:not(.onepage-nav) .nav-item .active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Mobile Navigation */
.mobile_header {
    display: none;
}

.mobile_header .navbar {
    padding: 0.75rem 1rem;
    background: var(--secondary-dark) !important;
    border-bottom: 1px solid var(--border-color);
}

.mobile_header .container-fluid {
    padding: 0 1rem;
}

.mobile_header .logo img {
    height: 35px;
    width: auto;
}

.navbar-toggler {
    border: 2px solid var(--accent-red) !important;
    padding: 0.5rem 0.6rem;
    border-radius: 6px;
    background: transparent !important;
    transition: var(--transition);
    position: relative;
    z-index: 10;
}

.navbar-toggler:hover {
    background: rgba(220, 38, 38, 0.1) !important;
    border-color: var(--accent-red) !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25) !important;
    outline: none !important;
}

/* Custom Hamburger Icon */
.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    cursor: pointer;
}

.hamburger-icon .bar {
    width: 100%;
    height: 3px;
    background-color: var(--accent-red);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.navbar-toggler:hover .hamburger-icon .bar {
    background-color: var(--accent-red-hover);
}

/* Animate to X when expanded */
.navbar-toggler[aria-expanded="true"] .hamburger-icon .bar:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon .bar:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

.mobile_header .navbar-collapse {
    background: var(--secondary-dark);
    margin: 0.75rem -1rem -0.75rem;
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    animation: slideDown 0.3s ease-out;
}

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

.mobile_header .navbar-collapse.collapsing {
    transition: height 0.3s ease;
}

.mobile_header .navbar-nav {
    gap: 0;
}

.mobile_header .nav-link {
    padding: 0.75rem 1rem !important;
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
    transition: var(--transition);
    display: block;
}

.mobile_header .nav-link:hover,
.mobile_header .nav-link:active {
    background: rgba(220, 38, 38, 0.1);
    padding-left: 1.5rem !important;
    color: var(--accent-red) !important;
}

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

/*--------------------------------------------------------------------- 
Hero/Banner Section
---------------------------------------------------------------------*/

.banner_section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    padding-top: 70px;
    overflow-x: hidden;
    overflow-y: visible;
    width: 100%;
    max-width: 100vw;
}

.banner_section * {
    box-sizing: border-box;
}

.banner_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.banner-content {
    padding: 2rem 0;
}

/* Carousel fixes for consistent height */
#main_slider .carousel-inner {
    min-height: 500px;
    position: relative;
}

#main_slider .carousel-item {
    min-height: 500px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

#main_slider .carousel-item.active {
    position: relative;
    opacity: 1;
}

.banner-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--secondary-dark);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--accent-red);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.banner_taital {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #a3a3a3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner_taital span {
    color: var(--accent-red);
    display: block;
}

.long_text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.btn_main {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    transition: var(--transition);
    border: 2px solid transparent;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--accent-red);
    color: var(--text-primary);
    border-color: var(--accent-red);
}

.btn-primary:hover {
    background: var(--accent-red-hover);
    border-color: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.about_us a,
.about_bt a {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    transition: var(--transition);
}

.about_us a {
    background: var(--accent-red);
    color: var(--text-primary);
    border: 2px solid var(--accent-red);
}

.about_us a:hover {
    background: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.about_us a:active,
.about_us a:focus {
    text-decoration: none !important;
    outline: none;
}

/* Force remove underlines from banner buttons */
.banner_section a,
.banner_section a:hover,
.banner_section a:active,
.banner_section a:focus,
.banner_section a:visited {
    text-decoration: none !important;
    -webkit-text-decoration: none !important;
}

.banner-image {
    position: relative;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Modern Services Showcase */
.services-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
    width: 100%;
    height: auto;
    min-height: auto;
}

/* Service Cards */
.service-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #16161a 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1.75rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

/* Animated Glow Effect */
.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
}

.service-card:hover .card-glow {
    opacity: 1;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
    50% { transform: scale(1.1) rotate(180deg); opacity: 1; }
}

/* Animated Primary Card - Cycles through all cards */
@keyframes cardGlowCycle {
    0%, 100% {
        background: linear-gradient(135deg, #1a1a1a 0%, #16161a 100%);
        border-color: rgba(255, 255, 255, 0.08);
    }
    /* 8%, 25% {
        background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(220, 38, 38, 0.1) 50%, #1a1a1a 100%);
        border-color: rgba(220, 38, 38, 0.4);
        box-shadow: 0 0 30px rgba(220, 38, 38, 0.3);
    } */
    33%, 100% {
        background: linear-gradient(135deg, #1a1a1a 0%, #16161a 100%);
        border-color: rgba(255, 255, 255, 0.08);
    }
}

@keyframes topLineCycle {
    0%, 100% {
        opacity: 0;
    }
    8%, 25% {
        opacity: 1;
    }
    33%, 100% {
        opacity: 0;
    }
}

/* Apply animation to the three service cards */
.services-showcase .service-card:nth-child(1) {
    animation: cardGlowCycle 9s ease-in-out infinite;
}

.services-showcase .service-card:nth-child(2) {
    animation: cardGlowCycle 9s ease-in-out infinite;
    animation-delay: 3s;
}

.services-showcase .service-card:nth-child(3) {
    animation: cardGlowCycle 9s ease-in-out infinite;
    animation-delay: 6s;
}

/* Animated top line */
.services-showcase .service-card:nth-child(1)::after,
.services-showcase .service-card:nth-child(2)::after,
.services-showcase .service-card:nth-child(3)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-red) 50%, transparent 100%);
    opacity: 0;
}

.services-showcase .service-card:nth-child(1)::after {
    animation: topLineCycle 9s ease-in-out infinite;
}

.services-showcase .service-card:nth-child(2)::after {
    animation: topLineCycle 9s ease-in-out infinite;
    animation-delay: 3s;
}

.services-showcase .service-card:nth-child(3)::after {
    animation: topLineCycle 9s ease-in-out infinite;
    animation-delay: 6s;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.3), transparent 50%, rgba(220, 38, 38, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: rgba(220, 38, 38, 0.5);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(220, 38, 38, 0.2),
        0 0 40px rgba(220, 38, 38, 0.15);
}

/* Service Icon */
.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(220, 38, 38, 0.1) 100%);
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent-red), #b91c1c);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent-red);
    transition: all 0.5s ease;
    filter: drop-shadow(0 0 8px rgba(220, 38, 38, 0.3));
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(-8deg);
    background: transparent;
    border-color: transparent;
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.5);
}

.service-card:hover .service-icon::after {
    opacity: 1;
}

.service-card:hover .service-icon svg {
    stroke: white;
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.5));
}

/* Service Title */
.service-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-card:hover h4 {
    color: var(--accent-red);
    transform: translateY(-3px);
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}

/* Stats Card - Spans last row, all columns */
.stats-card {
    grid-column: 1 / -1;
    grid-row: 2 / 3;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
    border-radius: 18px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 
        0 10px 40px rgba(220, 38, 38, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.stats-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: statsRotate 15s linear infinite;
}

.stats-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

@keyframes statsRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.stats-card:hover {
    transform: scale(1.02) translateY(-2px);
    box-shadow: 
        0 15px 50px rgba(220, 38, 38, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.stat-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.stat-icon svg {
    stroke: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.stats-card:hover .stat-icon {
    transform: scale(1.15) rotate(5deg);
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3), inset 0 1px 3px rgba(255, 255, 255, 0.4);
}

.stat-value {
    font-size: 1.85rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.stat-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.4), transparent);
    position: relative;
    z-index: 1;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.scroll-line {
    width: 40px;
    height: 1px;
    background: var(--text-muted);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1); }
}

/* Old styles - keep for now */
.image-card {
    background: var(--secondary-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: var(--transition);
}

.image-card:hover {
    background: var(--tertiary-dark);
    border-color: var(--accent-red);
    transform: translateY(-5px);
}

.image-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.image-card-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent-red);
    transition: var(--transition);
}

.image-card:hover .image-card-icon {
    background: var(--accent-red);
    transform: scale(1.05);
}

.image-card:hover .image-card-icon svg {
    stroke: white;
    transform: scale(1.1);
}

.image-card h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.image-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--secondary-dark);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    opacity: 1;
    transition: var(--transition);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

/*--------------------------------------------------------------------- 
About Section
---------------------------------------------------------------------*/

.about_section {
    background: var(--primary-dark);
    padding: 6rem 0;
    position: relative;
}

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

.about-content {
    padding: 2rem 0;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--secondary-dark);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--accent-red);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.about_text {
    font-size: 0.875rem;
    color: var(--accent-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.highest_text {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.lorem_text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.read_bt a {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-red);
    color: var(--text-primary);
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid var(--accent-red);
    transition: var(--transition);
}

.read_bt a:hover {
    background: transparent;
    color: var(--accent-red);
    transform: translateY(-2px);
}

.read_bt a:active,
.read_bt a:focus {
    text-decoration: none !important;
    outline: none;
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

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

/*--------------------------------------------------------------------- 
Services/Care Section
---------------------------------------------------------------------*/

.care_section {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    padding: 6rem 0;
    position: relative;
}

.care_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(220, 38, 38, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.care-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.finest_text {
    font-size: 0.875rem;
    color: var(--accent-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.care_text {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.ipsum_text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/*--------------------------------------------------------------------- 
Contact Section
---------------------------------------------------------------------*/

.contact_section {
    background: var(--primary-dark);
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact_text {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 2.5rem;
}

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

.email-bt,
.massage-bt {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--secondary-dark);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    border-radius: 4px;
    transition: var(--transition);
}

.email-bt:focus,
.massage-bt:focus {
    outline: none;
    border-color: var(--accent-red);
    background: var(--tertiary-dark);
}

.email-bt::placeholder,
.massage-bt::placeholder {
    color: var(--text-muted);
}

.massage-bt {
    min-height: 150px;
    resize: vertical;
}

.main_bt a {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--accent-red);
    color: var(--text-primary);
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid var(--accent-red);
    transition: var(--transition);
    font-size: 1rem;
}

.main_bt a:hover {
    background: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.main_bt a:active,
.main_bt a:focus {
    text-decoration: none !important;
    outline: none;
}

/* Testimonials */
.client-profile {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.client-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-red);
    flex-shrink: 0;
}

.selfideno_text {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
}

.client_main {
    background: var(--secondary-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 1rem;
}

.lorem_ipsum_text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    margin: 0 4px;
}

.carousel-indicators .active {
    background: var(--accent-red);
}

/*--------------------------------------------------------------------- 
Statistics Section
---------------------------------------------------------------------*/

.stats-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(220, 38, 38, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 1.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(220, 38, 38, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 12px;
    color: var(--accent-red);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.stat-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.5), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(220, 38, 38, 0.15);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.2);
}

.stat-card:hover .stat-icon::after {
    opacity: 1;
}

.stat-icon svg {
    width: 26px;
    height: 26px;
    filter: drop-shadow(0 2px 8px rgba(220, 38, 38, 0.3));
    transition: transform 0.4s ease;
}

.stat-card:hover .stat-icon svg {
    transform: scale(1.05);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 0.4rem;
    transition: all 0.4s ease;
    letter-spacing: -0.02em;
}

.stat-card:hover .stat-number {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--accent-red) 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
    transition: color 0.4s ease;
}

.stat-card:hover .stat-label {
    color: var(--text-primary);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.stat-card:nth-child(1) { animation: float 6s ease-in-out infinite; }
.stat-card:nth-child(2) { animation: float 6s ease-in-out 0.5s infinite; }
.stat-card:nth-child(3) { animation: float 6s ease-in-out 1s infinite; }
.stat-card:nth-child(4) { animation: float 6s ease-in-out 1.5s infinite; }

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    transition: color 0.4s ease;
}

/*--------------------------------------------------------------------- 
Trusted Partners / Clients Section
---------------------------------------------------------------------*/

.partners-section {
    background: var(--primary-dark);
    padding: 6rem 0;
    position: relative;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.partners-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.partners-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--secondary-dark);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.partners-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--text-primary);
    font-weight: 700;
    margin: 0;
}

.partners-title span {
    display: block;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partners-description {
    text-align: center;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 1.5rem auto 0;
}

.partners-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    z-index: 1;
}

.partners-slider {
    display: flex;
    gap: 2rem;
    animation: slidePartners 30s linear infinite;
    width: max-content;
}

.partners-slider:hover {
    animation-play-state: paused;
}

@keyframes slidePartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 9 - 2rem * 9));
    }
}

.partner-card {
    background: var(--secondary-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
    min-height: 180px;
    flex-shrink: 0;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.partner-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.partner-card:hover::before {
    opacity: 1;
}

.partner-logo {
    max-width: 180px;
    max-height: 80px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

/*--------------------------------------------------------------------- 
Footer & Copyright
---------------------------------------------------------------------*/

.copyright_section {
    background: var(--primary-dark);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.copyright a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.copyright a:hover {
    color: var(--accent-red);
}

/*--------------------------------------------------------------------- 
Popup/Modal
---------------------------------------------------------------------*/

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 1rem;
}

.popup-box {
    background: var(--secondary-dark);
    border: 1px solid var(--border-color);
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.popup-box h2 {
    color: var(--text-primary);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.popup-box p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    text-align: center;
}

.popup-box button {
    width: 100%;
    padding: 1rem;
    background: var(--accent-red);
    color: var(--text-primary);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.popup-box button:hover {
    background: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

/*--------------------------------------------------------------------- 
Responsive Design
---------------------------------------------------------------------*/

@media (max-width: 991px) {
    .banner-grid,
    .about-grid,
    .care-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .banner-image {
        height: 450px;
    }

    .services-showcase {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr) 0.6fr;
        min-height: 480px;
        gap: 0.875rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-card h4 {
        font-size: 0.95rem;
    }

    .service-card p {
        font-size: 0.75rem;
    }

    .service-card:nth-child(5),
    .service-card:nth-child(6) {
        grid-column: span 1;
    }

    .stats-card {
        grid-column: 1 / -1;
        grid-row: 4 / 5;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .destop_header {
        display: none !important;
    }

    .mobile_header {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .container,
    .container-fluid {
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Ensure banner section doesn't overflow */
    .banner_section {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 4rem;
        overflow-x: hidden;
    }
    
    .banner_section .container {
        max-width: 100%;
        overflow-x: hidden;
        padding: 0 1rem;
    }

    .navbar {
        padding: 1rem;
    }

    .services-showcase {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, auto) auto;
        min-height: auto;
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem 1.25rem;
    }

    .service-icon {
        width: 56px;
        height: 56px;
    }

    .service-icon svg {
        width: 28px;
        height: 28px;
    }

    .service-card h4 {
        font-size: 1rem;
    }

    .service-card p {
        font-size: 0.8rem;
    }

    .stats-card {
        grid-row: auto;
        padding: 1.5rem 1rem;
        gap: 1rem;
    }

    .stat-value {
        font-size: 1.6rem;
    }

    .stat-text {
        font-size: 0.65rem;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .btn_main {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn_main .about_us {
        margin-left: 0 !important;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary,
    .about_us a {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .popup-box {
        padding: 2rem;
        margin: 1rem;
    }
}

@media (min-width: 768px) {
    .destop_header {
        display: block !important;
    }

    .mobile_header {
        display: none !important;
    }
}

/*--------------------------------------------------------------------- 
Utility Classes
---------------------------------------------------------------------*/

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

.text-right {
    text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.layout_padding {
    padding: 6rem 0;
}

.padding_0 {
    padding: 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Legacy Support - Remove if not needed */
.bg-light {
    background-color: transparent !important;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--text-primary);
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: var(--accent-red);
}

.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--accent-red);
}

/*--------------------------------------------------------------------- 
Inner Pages Styles
---------------------------------------------------------------------*/

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(220, 38, 38, 0.1), transparent 50%);
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.page-header .lead {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Content Section */
.content-section {
    background: var(--primary-dark);
    position: relative;
}

.section-intro {
    margin-bottom: 4rem;
}

.section-intro.center {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.section-intro h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--accent-red);
    margin-bottom: 1.5rem;
}

.divider.center {
    margin-left: auto;
    margin-right: auto;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.content-text {
    padding-right: 2rem;
}

.content-text p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

.content-image {
    position: sticky;
    top: 100px;
}

.image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    background: var(--secondary-dark);
    border: 1px solid var(--border-color);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Feature List */
.feature-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-item p {
    margin: 0;
    color: var(--text-secondary);
}

/* Services Grid */
.services-grid {
    display: grid;
    gap: 2rem;
}

.service-card {
    background: var(--secondary-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-4px);
}

.service-number {
    position: absolute;
    top: -1rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 800;
    color: var(--tertiary-dark);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.service-card p:last-child {
    margin-bottom: 0;
}

/* Services Features Grid */
.services-grid-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-feature-card {
    background: var(--secondary-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.service-feature-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-4px);
}

.service-icon {
    font-size: 2.5rem;
    margin: 0 auto 1rem auto;
    color: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--accent-red);
}

.service-feature-card:hover .service-icon svg {
    stroke: var(--text-primary);
    transform: scale(1.1);
}

.service-feature-card h4 {
    font-size: 1rem;
    margin: 0;
    color: var(--text-primary);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--secondary-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--accent-red);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-red);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-card p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-image-wrapper {
    position: sticky;
    top: 100px;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.team-member-card {
    background: var(--secondary-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    transition: var(--transition);
}

.team-member-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-4px);
}

.team-member-role {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.team-member-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.team-member-title {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 1rem !important;
}

.team-member-card p {
    color: var(--text-muted);
    margin: 0;
}

/* Team CTA */
.team-cta {
    margin-top: 4rem;
    padding: 4rem 2rem;
    background: var(--secondary-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
}

.team-cta .section-intro {
    margin-bottom: 0;
}

.team-cta .btn {
    margin-top: 2rem;
}

/*--------------------------------------------------------------------- 
Modern Hero Section - Enhanced Design
---------------------------------------------------------------------*/

.hero-modern-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: center;
    min-height: calc(100vh - 70px);
    padding: 4rem 0;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    box-sizing: border-box;
}

/* Left Content Area */
.hero-content-modern {
    max-width: 650px;
    width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    box-sizing: border-box;
}

.hero-content-modern * {
    box-sizing: border-box;
    max-width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 50px;
    color: var(--accent-red);
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    transition: var(--transition);
    max-width: calc(100vw - 4rem);
    box-sizing: border-box;
}

.hero-badge:hover {
    background: rgba(220, 38, 38, 0.15);
    border-color: var(--accent-red);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-title-modern {
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    line-height: 1.15;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

.hero-gradient-text {
    display: block;
    background: linear-gradient(135deg, var(--accent-red) 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.25rem;
    word-wrap: break-word;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Hero Features Grid */
.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
    width: 100%;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.938rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-feature-item span {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-feature-item svg {
    flex-shrink: 0;
    color: var(--accent-red);
}

/* CTA Buttons */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    text-decoration: none !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 48px;
    box-sizing: border-box;
}

.btn-hero-primary {
    background: var(--accent-red);
    color: var(--text-primary);
    border: 2px solid var(--accent-red);
}

.btn-hero-primary:hover {
    background: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(220, 38, 38, 0.4);
    color: var(--text-primary);
}

.btn-hero-primary svg {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover svg {
    transform: translateX(4px);
}

.btn-hero-secondary {
    background: var(--secondary-dark);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-hero-secondary:hover {
    background: var(--tertiary-dark);
    border-color: var(--text-primary);
    transform: translateY(-2px);
    color: var(--text-primary);
}

/* Trust Badges */
.hero-trust-badges {
    opacity: 0.8;
}

.trust-text {
    font-size: 0.813rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Trust Logos Auto-Scroll Carousel */
.trust-logos-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 600px;
}

.trust-logos-track {
    display: flex;
    gap: 3rem;
    animation: scroll-logos 30s linear infinite;
}

.trust-logos-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.trust-logo-item {
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: grayscale(100%) brightness(0.8);
}

.trust-logo-item:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
}

.trust-logo-item img {
    height: 28px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
    display: block;
}

/* Right Visual Area */
.hero-visual-modern {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.hero-visual-modern * {
    box-sizing: border-box;
}

/* Info Card - Clean & Simple */
.hero-info-card {
    background: var(--secondary-dark);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.hero-info-card * {
    box-sizing: border-box;
    max-width: 100%;
    word-wrap: break-word;
}

.info-card-header {
    margin-bottom: 2rem;
}

.info-card-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.info-card-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Benefits List */
.info-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.benefit-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 10px;
    color: var(--accent-red);
    font-size: 1.125rem;
    font-weight: 700;
}

.benefit-content {
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.benefit-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    word-wrap: break-word;
}

.benefit-content p {
    font-size: 0.938rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Info Card Footer */
.info-card-footer {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-stat {
    flex: 1;
    text-align: center;
}

.footer-stat-num {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-red);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.footer-stat-label {
    display: block;
    font-size: 0.813rem;
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-modern-grid {
        gap: 4rem;
    }
}

@media (max-width: 992px) {
    .hero-modern-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem 0;
        min-height: auto;
        overflow: visible;
    }
    
    .hero-content-modern {
        max-width: 100%;
        width: 100%;
        padding: 0;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.45rem 1rem;
        margin-bottom: 1.5rem;
        max-width: calc(100vw - 4rem);
    }
    
    .hero-badge svg {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }
    
    .hero-title-modern {
        font-size: clamp(1.875rem, 6vw, 3rem);
        margin-bottom: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.65;
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .hero-features-grid {
        gap: 0.875rem;
        margin-bottom: 2rem;
        grid-template-columns: 1fr;
    }
    
    .hero-feature-item {
        font-size: 0.875rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-visual-modern {
        padding: 0;
    }
    
    .hero-info-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-cta-group {
        margin-bottom: 2.5rem;
        width: 100%;
        gap: 0.875rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.875rem 1.875rem;
        font-size: 0.938rem;
        min-height: 46px;
    }
    
    .trust-text {
        font-size: 0.75rem;
    }
    
    .hero-info-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-modern-grid {
        gap: 2rem;
        padding: 2rem 0;
        overflow: visible;
        width: 100%;
    }
    
    .hero-content-modern {
        width: 100%;
        max-width: 100%;
        padding: 0;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    .hero-content-modern * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.875rem;
        margin-bottom: 1.25rem;
        max-width: 100%;
        width: fit-content;
    }
    
    .hero-badge span {
        white-space: normal;
        word-wrap: break-word;
    }
    
    .hero-badge svg {
        width: 12px;
        height: 12px;
        flex-shrink: 0;
    }
    
    .hero-title-modern {
        font-size: clamp(1.5rem, 6vw, 2.25rem);
        line-height: 1.3;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        padding-right: 0;
    }
    
    .hero-gradient-text {
        display: block;
        margin-top: 0.25rem;
    }
    
    .hero-description {
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: 1.75rem;
        max-width: 100%;
        padding-right: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-features-grid {
        grid-template-columns: 1fr;
        gap: 0.625rem;
        margin-bottom: 1.75rem;
    }
    
    .hero-feature-item {
        font-size: 0.813rem;
        gap: 0.5rem;
    }
    
    .hero-feature-item svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 0.875rem;
        margin-bottom: 2rem;
        width: 100%;
        max-width: 100%;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.938rem;
        min-height: 50px;
        border-radius: 8px;
        box-sizing: border-box;
    }
    
    .btn-hero-primary svg,
    .btn-hero-secondary svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }
    
    .trust-text {
        font-size: 0.688rem;
        margin-bottom: 0.625rem;
    }
    
    .trust-logos-slider {
        max-width: 100%;
        overflow: hidden;
    }
    
    .trust-logos-track {
        gap: 2rem;
    }
    
    .trust-logo-item img {
        height: 24px;
        max-width: 70px;
    }
    
    .hero-trust-badges {
        margin-top: 1.5rem;
        width: 100%;
    }
    
    .hero-visual-modern {
        width: 100%;
        padding: 0;
        overflow: visible;
    }
    
    .hero-info-card {
        padding: 1.5rem;
        max-width: 100%;
        margin: 0;
    }
    
    .benefit-item {
        gap: 0.875rem;
        flex-wrap: nowrap;
    }
    
    .benefit-number {
        width: 42px;
        height: 42px;
        font-size: 0.938rem;
        flex-shrink: 0;
    }
    
    .benefit-content h4 {
        font-size: 0.938rem;
        margin-bottom: 0.25rem;
    }
    
    .benefit-content p {
        font-size: 0.813rem;
        line-height: 1.45;
    }
}

@media (max-width: 576px) {
    .container,
    .container-fluid {
        padding: 0 1.25rem;
    }
    
    .hero-modern-grid {
        padding: 1.25rem 0;
        gap: 2rem;
        overflow: visible;
    }
    
    .hero-content-modern {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 0.35rem 0.75rem;
        margin-bottom: 1rem;
        max-width: calc(100vw - 1.75rem);
    }
    
    .hero-badge svg {
        width: 11px;
        height: 11px;
        flex-shrink: 0;
    }
    
    .hero-title-modern {
        font-size: clamp(1.5rem, 6vw, 2rem);
        line-height: 1.3;
        margin-bottom: 0.875rem;
    }
    
    .hero-description {
        font-size: 0.875rem;
        line-height: 1.55;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }
    
    .hero-features-grid {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        grid-template-columns: 1fr;
    }
    
    .hero-feature-item {
        font-size: 0.75rem;
        gap: 0.45rem;
    }
    
    .hero-feature-item svg {
        width: 15px;
        height: 15px;
        flex-shrink: 0;
    }
    
    .hero-cta-group {
        gap: 0.75rem;
        margin-bottom: 1.75rem;
        width: 100%;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
        width: 100%;
        max-width: 100%;
        min-height: 48px;
        border-radius: 8px;
    }
    
    .btn-hero-primary svg,
    .btn-hero-secondary svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }
    
    .trust-text {
        font-size: 0.625rem;
        margin-bottom: 0.5rem;
    }
    
    .trust-logos-slider {
        max-width: 100%;
    }
    
    .trust-logos-track {
        gap: 1.75rem;
    }
    
    .trust-logo-item img {
        height: 22px;
        max-width: 65px;
    }
    
    .hero-visual-modern {
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }
    
    .hero-info-card {
        padding: 1.25rem;
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
    
    .info-card-header {
        margin-bottom: 1.25rem;
    }
    
    .info-card-header h3 {
        font-size: 1.25rem;
        line-height: 1.3;
    }
    
    .info-card-header p {
        font-size: 0.813rem;
        line-height: 1.4;
    }
    
    .info-benefits-list {
        gap: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .benefit-item {
        gap: 0.75rem;
        flex-wrap: nowrap;
    }
    
    .benefit-number {
        width: 38px;
        height: 38px;
        font-size: 0.875rem;
        flex-shrink: 0;
    }
    
    .benefit-content h4 {
        font-size: 0.875rem;
        line-height: 1.3;
    }
    
    .benefit-content p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .info-card-footer {
        gap: 1.25rem;
        padding-top: 1.25rem;
    }
    
    .footer-stat-num {
        font-size: 1.5rem;
    }
    
    .footer-stat-label {
        font-size: 0.75rem;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .container,
    .container-fluid {
        padding: 0 1rem;
    }
    
    .hero-modern-grid {
        padding: 1rem 0;
        gap: 1.75rem;
        overflow: visible;
    }
    
    .hero-content-modern {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .hero-badge {
        font-size: 0.625rem;
        padding: 0.3rem 0.625rem;
        margin-bottom: 0.875rem;
        max-width: calc(100vw - 1.5rem);
    }
    
    .hero-badge svg {
        width: 10px;
        height: 10px;
        flex-shrink: 0;
    }
    
    .hero-title-modern {
        font-size: clamp(1.35rem, 5.5vw, 1.875rem);
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
    .hero-description {
        font-size: 0.813rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
        max-width: 100%;
    }
    
    .hero-features-grid {
        gap: 0.4rem;
        margin-bottom: 1.25rem;
        grid-template-columns: 1fr;
    }
    
    .hero-feature-item {
        font-size: 0.688rem;
        gap: 0.4rem;
    }
    
    .hero-feature-item svg {
        width: 13px;
        height: 13px;
        flex-shrink: 0;
    }
    
    .hero-cta-group {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        width: 100%;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.813rem 1.125rem;
        font-size: 0.813rem;
        width: 100%;
        max-width: 100%;
        min-height: 46px;
        border-radius: 7px;
    }
    
    .btn-hero-primary svg,
    .btn-hero-secondary svg {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }
    
    .trust-text {
        font-size: 0.563rem;
        margin-bottom: 0.4rem;
    }
    
    .trust-logos-track {
        gap: 1.5rem;
    }
    
    .trust-logo-item img {
        height: 20px;
        max-width: 60px;
    }
    
    .hero-visual-modern {
        width: 100%;
        overflow: visible;
    }
    
    .hero-info-card {
        padding: 1rem;
        max-width: 100%;
        margin: 0;
    }
    
    .info-card-header {
        margin-bottom: 1rem;
    }
    
    .info-card-header h3 {
        font-size: 1.125rem;
        line-height: 1.3;
    }
    
    .info-card-header p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .info-benefits-list {
        gap: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .benefit-item {
        gap: 0.625rem;
        flex-wrap: nowrap;
    }
    
    .benefit-number {
        width: 34px;
        height: 34px;
        font-size: 0.813rem;
        border-radius: 8px;
        flex-shrink: 0;
    }
    
    .benefit-content h4 {
        font-size: 0.813rem;
        line-height: 1.3;
    }
    
    .benefit-content p {
        font-size: 0.688rem;
        line-height: 1.4;
    }
    
    .info-card-footer {
        flex-direction: column;
        gap: 1rem;
        padding-top: 1rem;
    }
    
    .footer-stat {
        text-align: left;
    }
    
    .footer-stat-num {
        font-size: 1.375rem;
    }
    
    .footer-stat-label {
        font-size: 0.688rem;
    }
}