:root {
    /* Brand Colors */
    --color-primary: #B91C1C;
    /* Deep Red */
    --color-primary-light: #EF4444;
    --color-primary-dark: #991B1B;

    --color-secondary: #0F172A;
    /* Slate 900 */
    --color-accent: #F59E0B;
    /* Amber 500 */

    /* Text Colors */
    --color-text: #1E293B;
    /* Slate 800 */
    --color-text-light: #64748B;
    /* Slate 500 */
    --color-text-lighter: #94A3B8;

    /* Background Colors */
    --color-bg: #FFFFFF;
    --color-bg-light: #F8FAFC;
    /* Slate 50 */
    --color-bg-dark: #0F172A;

    /* UI Elements */
    --color-border: #E2E8F0;
    /* Slate 200 */

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-full: 9999px;

    /* Typography */
    --font-main: 'Poppins', sans-serif;

    /* Layout */
    --container-max-width: 1280px;
    --spacing-unit: 1rem;
    --header-height: 80px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-main);
    color: var(--color-secondary);
    line-height: 1.2;
    font-weight: 700;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul,
ol {
    list-style: none;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-text);
    color: var(--color-bg);
    padding: 8px 16px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Container */
.container,
.e-con-boxed,
.footer-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

/* Buttons */
.btn,
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-family: var(--font-main);
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-primary,
.cta-primary {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(185, 28, 28, 0.4);
}

.btn-primary:hover,
.cta-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(185, 28, 28, 0.5);
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    transform: scale(0);
    transition: transform 0.6s;
}

.glow-effect:hover::after {
    transform: scale(1);
    animation: ripple 1s linear;
}

.btn-outline,
.cta-secondary {
    background: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-border);
}

.btn-outline:hover,
.cta-secondary:hover {
    border-color: var(--color-secondary);
    background: var(--color-secondary);
    color: white;
    transform: translateY(-3px);
}

/* Cards */
.card,
.service-card,
.blog-card,
.advantage-card {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid transparent;
    /* Cleaner look */
    height: 100%;
    /* Ensure equal height */
    display: flex;
    flex-direction: column;
}

.card:hover,
.service-card:hover,
.blog-card:hover,
.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.02);
}

.blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

/* Badges */
.badge,
.feature-badge,
.blog-category-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feature-badge {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    color: var(--color-text);
}

.blog-category-badge {
    background: var(--color-primary);
    color: white;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

.whatsapp-icon-float {
    width: 35px;
    height: 35px;
    fill: white;
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.site-header.sticky {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 0.75rem 0;
}

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

.logo-image {
    height: 45px;
    width: auto;
    display: block;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
    background: var(--color-bg-light);
    padding: 0.5rem 2rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border);
}

.nav-link {
    font-weight: 500;
    color: var(--color-text);
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.nav-link:hover,
.current-menu-item .nav-link {
    color: var(--color-primary);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--color-secondary);
}

/* Mobile Dropdown */
.mobile-menu-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--color-border);
    z-index: 999;
}

.mobile-menu-dropdown.active {
    display: block;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
    font-weight: 500;
}

.mobile-nav-link:hover {
    color: var(--color-primary);
}

/* Hero Section - Redesigned */
.hero-section {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFFFFF 100%);
    overflow: hidden;
    padding: 6rem 0 4rem;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    width: 100%;
}

.hero-content-left {
    max-width: 650px;
    z-index: 10;
}

.hero-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(185, 28, 28, 0.1);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(185, 28, 28, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(185, 28, 28, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(185, 28, 28, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(185, 28, 28, 0);
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
    letter-spacing: -0.03em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, #991B1B 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 90%;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.hero-trust-avatars {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -10px;
    object-fit: cover;
    background: #ddd;
    /* Fallback */
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-count {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -10px;
    background: var(--color-secondary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.trust-text {
    display: flex;
    flex-direction: column;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
}

.stars {
    color: var(--color-accent);
    letter-spacing: 2px;
    font-size: 1rem;
}

/* Hero Image Right */
.hero-image-right {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 550px;
    aspect-ratio: 4/5;
    border-radius: 2rem;
    /* overflow: hidden; Removed to allow floating cards to overlap */
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2rem;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 4s ease-in-out infinite;
    z-index: 20;
}

.card-experience {
    top: 10%;
    left: -40px;
}

.card-savings {
    bottom: 10%;
    right: -40px;
    animation-delay: 2s;
}

.icon-box {
    width: 48px;
    height: 48px;
    background: rgba(185, 28, 28, 0.1);
    color: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-content {
    display: flex;
    flex-direction: column;
}

.card-value {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--color-secondary);
    line-height: 1;
}

.card-label {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* Stats Section */
.stats-section {
    background: var(--color-secondary);
    padding: 4rem 0;
    color: white;
    margin-top: -2rem;
    /* Overlap slightly or just sit tight */
    position: relative;
    z-index: 5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-box {
    padding: 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #94A3B8 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: #94A3B8;
    font-size: 1.125rem;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-container {
        gap: 3rem;
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding: 4rem 0;
        text-align: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content-left {
        margin: 0 auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-trust-avatars {
        justify-content: center;
    }

    .hero-image-frame {
        max-width: 400px;
        margin: 3rem auto 0;
    }

    .floating-card {
        padding: 0.75rem 1rem;
    }

    .card-experience {
        left: -10px;
    }

    .card-savings {
        right: -10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}

.services-section,
.advantages-section,
.blog-section {
    padding: 5rem 0;
    /* Standardized padding */
}

.intro-section,
.advantages-section,
.blog-section {
    background: var(--color-bg-light);
}

.services-section {
    background: var(--color-bg);
}

.section-header {
    text-align: left;
    /* Modern left alignment */
    margin-bottom: 4rem;
    max-width: 700px;
    /* Removed auto margins to align left */
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--color-secondary);
    letter-spacing: -0.02em;
}

.section-intro {
    color: var(--color-text-light);
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Grids */
.services-grid,
.advantages-grid,
.blog-grid {
    display: grid;
    gap: 2.5rem;
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.advantages-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

/* Center alignment for smaller screens */
@media (max-width: 768px) {
    .section-header {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }
}

/* Footer */
.site-footer {
    background-color: var(--color-secondary);
    color: #94A3B8;
    padding: 5rem 0 2rem;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: block;
    margin-bottom: 1.5rem;
    max-width: 180px;
}

.footer-desc {
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-heading {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.footer-links-list,
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links-list a {
    color: #94A3B8;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links-list a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #94A3B8;
}

.footer-contact-list a {
    color: #94A3B8;
    transition: color 0.2s ease;
}

.footer-contact-list a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #64748B;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: white;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
        gap: 1rem;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .main-navigation {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .header-container {
        padding: 0 1rem;
    }
}

/* Bento Grid Services */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
}

.bento-item {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    background: var(--color-secondary);
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bento-item:hover {
    transform: translateY(-5px);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-medium {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-wide {
    grid-column: span 3;
    grid-row: span 1;
    height: 200px;
    /* Override row height */
    justify-content: center;
}

.bento-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: transform 0.5s ease;
    z-index: 1;
}

.bento-item:hover .bento-bg {
    transform: scale(1.05);
    opacity: 0.3;
}

.bento-content {
    position: relative;
    z-index: 2;
}

.bento-content-row {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.bento-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bento-item h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: white;
}

.bento-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: white;
}

.bento-link .arrow {
    transition: transform 0.3s ease;
}

.bento-link:hover .arrow {
    transform: translateX(5px);
}

/* Why Choose Us - Visual */
.why-us-section {
    padding: 8rem 0;
    background: #fff;
    overflow: hidden;
}

.why-us-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-us-visual {
    position: relative;
}

.why-us-img {
    width: 100%;
    border-radius: 2rem;
    box-shadow: -20px 20px 0px rgba(15, 23, 42, 0.1);
}

.experience-badge {
    position: absolute;
    top: -30px;
    right: -30px;
    background: var(--color-primary);
    color: white;
    padding: 2rem;
    border-radius: 50%;
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(185, 28, 28, 0.4);
    animation: float 5s ease-in-out infinite reverse;
}

.exp-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.2;
}

.feature-list {
    margin: 2.5rem 0;
}

.feature-list-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.check-icon {
    width: 32px;
    height: 32px;
    background: rgba(185, 28, 28, 0.1);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.feature-detail strong {
    display: block;
    font-size: 1.125rem;
    color: var(--color-secondary);
    margin-bottom: 0.25rem;
}

.feature-detail p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Responsive Bento & Why Us */
@media (max-width: 991px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-large,
    .bento-medium,
    .bento-wide {
        grid-column: span 1;
        grid-row: span 1;
        height: auto;
        min-height: 300px;
    }

    .bento-content-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .why-us-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .why-us-visual {
        order: 2;
        /* Image below text on mobile */
        max-width: 500px;
        margin: 0 auto;
    }

    .experience-badge {
        right: 0;
        top: -20px;
        width: 120px;
        height: 120px;
        padding: 1rem;
    }

    .exp-number {
        font-size: 1.75rem;
    }
}

/* Blog Post Page */
.blog-hero {
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.9));
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 var(--spacing-unit);
}

.entry-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.entry-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* Blog post styles moved to end of file for premium styling */

.blog-post-footer {
    max-width: 800px;
    margin: 4rem auto;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.cta-box {
    background: var(--color-bg-dark);
    color: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 3rem;
}

.cta-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.cta-box p {
    color: #94A3B8;
    margin-bottom: 2rem;
}

/* Service Page Specifics */
.service-image {
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-description {
    margin-bottom: 1.5rem;
    flex-grow: 1;
    color: var(--color-text-light);
}

.service-link {
    color: var(--color-primary);
    font-weight: 600;
    margin-top: auto;
}

/* Advantage Card Specifics */
.advantage-card {
    padding: 2.5rem;
}

.advantage-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(185, 28, 28, 0.1);
    color: var(--color-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.advantage-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    color: var(--color-primary);
    font-weight: 700;
}

/* Pages - Contact */
.page-header-section {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFFFFF 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero {
    background: var(--color-bg-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-decoration-circle {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(185, 28, 28, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-decoration-dots {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(var(--color-border) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: 0;
}

/* Pages - About */
.about-image-wrapper {
    position: relative;
    padding: 2rem;
}

.experience-badge-floating {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--color-primary);
    color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(185, 28, 28, 0.3);
    text-align: center;
    animation: float 4s ease-in-out infinite;
}

.exp-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.875rem;
    font-weight: 600;
}

/* Pages - Services */
.border-bottom-light {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--color-secondary);
}

.check-icon-sm {
    color: var(--color-primary);
    font-weight: 800;
}

/* Premium Service Page Styles */
.service-row {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.service-row:last-child {
    border-bottom: none;
}

.service-image-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.service-image-container:hover {
    transform: translateY(-5px);
}

.service-image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

.service-floating-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.service-floating-badge.badge-red {
    color: #DC2626;
}

.service-floating-badge.badge-purple {
    color: #7C3AED;
}

.service-floating-badge.badge-cyan {
    color: #0891B2;
}

.features-grid-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-small {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-secondary);
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Premium CTA */
.cta-card-premium {
    background: linear-gradient(135deg, var(--color-primary) 0%, #7F1D1D 100%);
    box-shadow: 0 30px 60px -12px rgba(185, 28, 28, 0.3);
}

.cta-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    z-index: 1;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 0;
}

.transform-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transform-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
}

@media (max-width: 991px) {
    .service-image-container img {
        height: 300px;
    }

    .features-grid-small {
        grid-template-columns: 1fr;
    }

    .service-text-content {
        text-align: center;
        padding: 0 !important;
    }

    .features-grid-small {
        text-align: left;
    }
}

.badge-blue {
    background: rgba(59, 130, 246, 0.1);
    color: #2563EB;
}

.badge-red {
    background: rgba(220, 38, 38, 0.1);
    color: #DC2626;
}

.badge-purple {
    background: rgba(124, 58, 237, 0.1);
    color: #7C3AED;
}

.badge-cyan {
    background: rgba(8, 145, 178, 0.1);
    color: #0891B2;
}

.badge-pill {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(185, 28, 28, 0.1);
    color: var(--color-primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-section {
    padding: 4rem 0 8rem;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

/* Contact Info Card */
.contact-info-card {
    padding: 3rem;
    background: var(--color-bg-light);
    border-radius: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.icon-box-lg {
    width: 56px;
    height: 56px;
    background: rgba(185, 28, 28, 0.1);
    color: var(--color-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-content {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.detail-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-decoration: none;
}

.detail-value:hover {
    color: var(--color-primary);
}

/* Social Buttons */
.social-links-row {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 48px;
    height: 48px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: all 0.3s ease;
}

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

/* Contact Form Card */
.contact-form-card {
    padding: 3.5rem;
    background: white;
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-secondary);
    font-size: 0.95rem;
}

.form-control-lg {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border-radius: 1rem;
    background: var(--color-bg-light);
    border: 1px solid transparent;
}

.form-control-lg:focus {
    background: white;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(185, 28, 28, 0.1);
}

/* Responsive */
@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 2rem;
    }
}

/* Utilities */
.transition-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transition-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.object-fit-cover {
    object-fit: cover;
}

.image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.bg-red-light {
    background: rgba(185, 28, 28, 0.1);
}

/* Premium Glassmorphism & Utilities */
/* Utilities */
.bg-gradient-to-t {
    background: linear-gradient(to top, var(--bs-gradient-from, rgba(0, 0, 0, 0.75)), var(--bs-gradient-to, rgba(0, 0, 0, 0)));
}

.from-black-75 {
    --bs-gradient-from: rgba(0, 0, 0, 0.8);
    --bs-gradient-to: rgba(0, 0, 0, 0);
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(185, 28, 28, 0.15);
    border-color: rgba(185, 28, 28, 0.2);
}

.opacity-10 {
    opacity: 0.1;
}

.opacity-25 {
    opacity: 0.25;
}

/* Blog Listing Styles */
.blog-hero {
    position: relative;
    padding: 200px 0 120px;
    margin-bottom: -80px;
    z-index: 1;
    color: white;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.95) 100%);
    z-index: 1;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.blog-category-badge {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-hero .entry-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
}

.blog-hero .entry-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 1rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.blog-hero .entry-meta i {
    margin-right: 0.5rem;
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 150px 0 80px;
    }

    .blog-hero .entry-title {
        font-size: 2rem;
    }

    .blog-hero .entry-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Utilities for Blog Cards */
.transition-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-transform {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-transform-x {
    transition: transform 0.3s ease;
}

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

.glass-card:hover .transition-transform-x {
    transform: translateX(5px);
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hover-bg-light:hover {
    background-color: #f8f9fa;
    color: var(--color-primary) !important;
}

/* Single Post Styles */
.post-hero-section {
    position: relative;
    padding: 200px 0 120px;
    /* Increased padding for better hero sizing */
    margin-bottom: -80px;
    /* Overlap effect */
    z-index: 1;
    color: white;
    /* Force white text */
    text-align: center;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.95) 100%);
    /* Darker overlay for contrast */
    z-index: -1;
}

.post-body {
    position: relative;
    z-index: 2;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--color-text);
    background: white;
    padding: 4rem !important;
    /* Force padding */
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.post-body h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

.post-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.post-body img {
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    width: 100%;
    height: auto;
}

.custom-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.custom-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
    font-weight: 500;
}

.custom-list li::before {
    content: "\f00c";
    /* FontAwesome Check */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--color-primary);
    position: absolute;
    left: 0;
    top: 2px;
}

@media (max-width: 768px) {
    .post-hero-section {
        padding: 150px 0 80px;
    }

    .post-body {
        padding: 2rem !important;
    }

    .display-4 {
        font-size: 2.5rem;
    }
}

/* Sidebar Styles */
.sidebar-widget {
    position: relative;
    overflow: hidden;
}

.group-hover:hover .group-hover-text-primary {
    color: var(--color-primary) !important;
}

.transition-colors {
    transition: color 0.3s ease;
}

@media (min-width: 992px) {
    .blog-sidebar {
        position: sticky;
        top: 100px;
        /* Adjust based on header height */
    }
}

/* Animations */
[data-aos] {
    opacity: 1 !important;
    /* FORCE VISIBILITY - JS Animation is failing */
    transform: translateY(0) !important;
    transition: none !important;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos-delay="300"] {
    transition-delay: 0.3s;
}

/* Blog Post Content - Premium Styling */
.blog-layout-wrapper {
    margin-top: -100px;
    position: relative;
    z-index: 10;
    padding-bottom: 4rem;
}

.blog-post-content {
    background: #ffffff;
    padding: 4rem;
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    /* margin: -100px auto 4rem; Removed to fix sidebar alignment */
    position: relative;
    z-index: 10;
    color: #334155;
    /* High contrast slate-700 */
    font-size: 1.125rem;
    line-height: 1.8;
}

.cta-card-premium h2,
.cta-card-premium .lead {
    color: #ffffff !important;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-content h2 {
    color: #1e293b;
    /* Slate-800 */
    font-weight: 800;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    letter-spacing: -0.02em;
}

.blog-post-content h3 {
    color: #334155;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.blog-post-content li {
    margin-bottom: 0.75rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blog-post-content {
        padding: 2rem;
        margin-top: -50px;
        border-radius: 1.5rem;
    }
}

/* About Page Hero */
.about-hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.about-hero .badge-pill {
    background: rgba(185, 28, 28, 0.1);
    color: var(--color-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.about-hero .text-gradient-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #991B1B 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-decoration-circle {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(185, 28, 28, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero-decoration-dots {
    position: absolute;
    bottom: 50px;
    left: 50px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(var(--color-border) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

/* Stats Strip */
.stats-strip {
    background: var(--color-secondary);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-strip .stat-item {
    padding: 1rem;
    position: relative;
    z-index: 2;
}

.stats-strip .display-4 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stats-strip .small {
    font-size: 0.75rem;
    opacity: 0.8;
}

.stats-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 1;
}

/* Mission Section */
.mission-section {
    padding: 8rem 0;
    background: #fff;
}

.mission-section .image-frame {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    height: 500px;
}

.mission-section .glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-section .icon-box {
    width: 50px;
    height: 50px;
    background: rgba(185, 28, 28, 0.1);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* Process Section */
.process-section {
    padding: 8rem 0;
    background: var(--color-bg-light);
    position: relative;
    overflow: hidden;
}

.process-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.process-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.process-card .process-icon-wrapper.bg-primary {
    background: var(--color-primary);
    color: white;
}

.process-card .process-icon-wrapper.bg-white {
    background: white;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

/* Values Section */
.values-section {
    padding: 8rem 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.values-section .glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.values-section .glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.values-section .icon-box-lg {
    width: 70px;
    height: 70px;
    background: rgba(185, 28, 28, 0.1);
    color: var(--color-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
}

.cta-card-premium {
    background: linear-gradient(135deg, var(--color-primary) 0%, #7F1D1D 100%);
    border-radius: 2rem;
    box-shadow: 0 30px 60px -12px rgba(185, 28, 28, 0.3);
    position: relative;
    overflow: hidden;
    color: white;
    padding: 4rem;
    text-align: center;
}

.cta-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.cta-card-premium .btn-light {
    background: white;
    color: var(--color-primary);
    border: none;
}

.cta-card-premium .btn-light:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-card-premium .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
}

.cta-card-premium .btn-outline-light:hover {
    background: white;
    color: var(--color-primary);
    border-color: white;
    transform: translateY(-3px);
}