/* ===================================
   PRINTFORT - Premium White & Green Theme
   =================================== */

:root {
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Violent Green Brand Colors */
    --neon-green: #39FF14;
    --neon-green-dim: #2ecf0f;
    --neon-green-glow: rgba(57, 255, 20, 0.4);

    /* Theme Colors (White Mode) */
    --color-bg: #ffffff;
    --color-surface: #f4f4f5;
    --color-surface-light: #ffffff;
    --color-surface-hover: #e4e4e7;

    /* Accents */
    --color-primary: #000000;
    /* Contrast Action Color */
    --color-accent: #39FF14;
    /* Brand Highlight */

    --color-text: #09090b;
    --color-text-muted: #52525b;

    --color-border: #e4e4e7;
    --color-border-hover: #39FF14;

    --gradient-primary: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --gradient-accent: linear-gradient(135deg, #39FF14 0%, #32CD32 100%);

    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: 1px solid rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 25px var(--neon-green-glow);
    --shadow-card: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
}

/* Enforce Light Theme */
[data-theme="dark"] {
    /* Map dark theme to same white values to enforce consistency */
    --color-bg: #ffffff;
    --color-surface: #f4f4f5;
    --color-surface-light: #ffffff;
    --color-primary: #000000;
    --color-text: #09090b;
    --color-text-muted: #52525b;
    --color-border: #e4e4e7;
    --glass-bg: rgba(255, 255, 255, 0.85);
}


/* Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background-color var(--transition), color var(--transition);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all var(--transition);
}

a:hover {
    color: var(--color-primary-light);
}

img {
    max-width: 100%;
    height: auto;
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--color-primary);
    color: white;
    padding: 1rem 2rem;
    z-index: 9999;
}

.skip-link:focus {
    top: 0;
}

:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-muted {
    color: var(--color-text-muted) !important;
}

/* Theme Toggle */
.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: var(--color-surface-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    position: relative;
}

.theme-toggle:hover {
    border-color: var(--color-primary);
    transform: rotate(15deg);
}

.theme-toggle .fa-sun,
.theme-toggle .fa-moon {
    position: absolute;
    font-size: 1.1rem;
    transition: all var(--transition);
}

[data-theme="dark"] .theme-toggle .fa-sun {
    opacity: 1;
    color: var(--color-gold);
}

[data-theme="dark"] .theme-toggle .fa-moon {
    opacity: 0;
}

[data-theme="light"] .theme-toggle .fa-sun {
    opacity: 0;
}

[data-theme="light"] .theme-toggle .fa-moon {
    opacity: 1;
    color: var(--color-primary);
}

/* Navbar */
.navbar {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: var(--glass-border);
    padding: 0.75rem 0;
    transition: all var(--transition);
}

.logo-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.brand-text {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-link {
    padding: 0.75rem 1rem !important;
    transition: all var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--color-text) !important;
}

.nav-link:hover::after {
    width: 60%;
}

.btn-nav {
    background: var(--color-primary) !important;
    color: white !important;
    border-radius: 50px !important;
    margin-left: 1rem;
    padding: 0.75rem 1.5rem !important;
}

.btn-nav::after {
    display: none;
}

.btn-nav:hover {
    background: var(--color-primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.navbar-toggler {
    border: 1px solid var(--color-border);
    padding: 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    /* High-res offset printing press background */
    background: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?q=80&w=2670') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Clean white overlay to ensure text readability */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.7));
    z-index: 0;
}

.hero-bg-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: var(--neon-green);
    filter: blur(150px);
    opacity: 0.25;
    border-radius: 50%;
    top: -200px;
    right: -200px;
    z-index: 0;
    animation: pulseGlow 8s ease-in-out infinite alternate;
}

.hero-bg-glow.glow-2 {
    width: 600px;
    height: 600px;
    background: #8b5cf6;
    top: auto;
    bottom: -100px;
    right: auto;
    left: -100px;
    animation-delay: 4s;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.08;
    }

    100% {
        transform: scale(1.3);
        opacity: 0.15;
    }
}

/* Page Header for Inner Pages */
.page-header {
    background: var(--color-bg);
    padding-top: 120px;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.z-2 {
    z-index: 2;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-badge {
    background: var(--color-surface-light);
    border: 1px solid var(--color-border);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-badge i {
    color: var(--color-primary);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
}

.hero-card {
    position: absolute;
    background: var(--glass-bg);
    border: 1px solid var(--color-border);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-card i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.hero-card.card-1 {
    top: 20%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.hero-card.card-2 {
    top: 50%;
    right: 30%;
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
}

.hero-card.card-3 {
    top: 75%;
    right: 5%;
    animation: float 6s ease-in-out infinite;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-text-muted);
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-15px);
    }

    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary) !important;
    border: none !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--color-primary-glow);
}

.btn-success {
    background-color: #25d366 !important;
    border-color: #25d366 !important;
}

.btn-success:hover {
    background-color: #128c7e !important;
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: var(--glass-border);
    border-radius: 24px;
}

/* Industries Section */
.industries-section {
    background: var(--color-bg) url('../images/pattern-bg.png') repeat;
    background-size: 400px;
}

.industry-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.industry-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-border-hover);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.industry-card:hover::before {
    transform: scaleX(1);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), #8b5cf6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.25rem;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.industry-icon.icon-gold {
    background: var(--gradient-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.industry-icon.icon-purple {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.industry-icon.icon-gradient {
    background: var(--gradient-primary);
}

.industry-clients {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.client-tag {
    background: var(--color-surface-light);
    border: 1px solid var(--color-border);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    transition: all var(--transition);
}

.industry-card:hover .client-tag {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* How We Help */
.how-we-help {
    border-top: 1px solid var(--color-border);
}

.help-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.help-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.help-item i {
    font-size: 1.25rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.help-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--color-text);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-box {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 1.75rem;
    text-align: center;
    transition: all var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.stat-box h2 {
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Services Section */
.services-section {
    background: var(--color-surface);
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 0;
    /* Remove padding to let image flush */
    height: 100%;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    /* Stack image and content */
    position: relative;
    overflow: hidden;
}

.service-card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--color-border);
}

.service-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

/* Make sure the icon is still visible but maybe overlay or just inside body */
.service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    margin-bottom: 0;
    /* logic handled by flex gap */
}

.service-icon.icon-gold {
    background: var(--gradient-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.service-icon.icon-purple {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.service-icon.icon-gradient {
    background: var(--gradient-primary);
}

.service-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-specs span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--color-surface-light);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.service-specs i {
    color: var(--color-primary);
    font-size: 0.7rem;
}

/* Quote Section */
.quote-section {
    background: var(--color-bg) url('../images/printing-art-bg.png') no-repeat center center/cover;
    position: relative;
    z-index: 1;
}

.quote-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: -1;
}

.quote-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.quote-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-text-muted);
}

.quote-feature i {
    font-size: 1.25rem;
}

.quote-calculator {
    padding: 2.5rem;
}

.form-control,
.form-select {
    background: var(--color-surface-light) !important;
    border: 1px solid var(--color-border) !important;
    color: var(--color-text) !important;
    border-radius: 12px;
    padding: 0.75rem 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 0 3px var(--color-primary-glow) !important;
}

.form-label {
    color: var(--color-text-muted);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* About Section */
.about-image-wrapper {
    position: relative;
}

.about-image {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-primary);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.3);
}

.floating-badge {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: var(--glass-border);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 5s ease-in-out infinite;
}

.floating-badge.badge-1 {
    top: 20px;
    right: -10px;
}

.floating-badge.badge-2 {
    bottom: 30%;
    left: -20px;
    animation-delay: -2.5s;
}

.feature-item {
    display: flex;
    align-items: center;
    background: var(--color-surface-light);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-weight: 500;
    transition: all var(--transition);
}

.feature-item:hover {
    background: var(--color-surface-hover);
}

/* CTA Section */
.cta-section {
    background: var(--color-bg);
}

.cta-card {
    background: var(--gradient-primary);
    border-radius: 32px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
}

/* Footer */
.footer {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

.contact-list i {
    margin-top: 0.25rem;
}

.contact-list a {
    color: var(--color-text-muted);
}

.contact-list a:hover {
    color: var(--color-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--color-surface-light);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
}

/* Floating Elements */
.floating-cta {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 5px 30px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    background: #128c7e;
    color: white;
    transform: scale(1.1);
}

/* Sticky Mobile CTA */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-top: var(--glass-border);
    z-index: 999;
}

.mobile-cta .btn {
    border-radius: 12px;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up {
    transform: translateY(60px);
}

.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .navbar-collapse {
        background: var(--color-surface);
        padding: 1rem;
        border-radius: 16px;
        margin-top: 1rem;
        border: var(--glass-border);
    }

    .btn-nav {
        margin-left: 0;
        margin-top: 1rem;
        text-align: center;
    }

    .service-card {
        flex-direction: column;
    }

    .floating-cta {
        bottom: 90px;
    }

    body {
        padding-bottom: 80px;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .trust-badges {
        gap: 0.5rem;
    }

    .trust-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }

    .cta-card {
        padding: 2rem;
    }

    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .quote-calculator {
        padding: 1.5rem;
    }

    .about-image {
        height: 250px;
    }

    .industry-card {
        padding: 1.5rem;
    }

    .stats-grid {
        gap: 1rem;
    }

    .stat-box {
        padding: 1.25rem;
    }

    .stat-box h2 {
        font-size: 2rem;
    }
}

/* ===================================
   Visual Redesign - New Utilities
   =================================== */

/* Paper Texture Background */
.bg-print-pattern {
    background-image: url('https://images.unsplash.com/photo-1589829085413-56de8ae18c73?q=80&w=2600');
    background-attachment: fixed;
    background-size: cover;
    position: relative;
}

.bg-print-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Heavy white fade to keep "White Theme" dominant */
    background: rgba(255, 255, 255, 0.92);
    pointer-events: none;
}

.bg-print-pattern>* {
    position: relative;
    z-index: 1;
}

/* Violent Green Text Accent */
.text-accent {
    color: var(--neon-green) !important;
    font-weight: 800;
    text-shadow: 0 0 25px var(--neon-green-glow);
}

/* Enhanced Glassmorphism for White Theme */
.service-card,
.industry-card,
.glass-card,
.stat-box {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}

/* Contrast Hover for Cards */
.service-card:hover,
.industry-card:hover,
.stat-box:hover {
    border-color: var(--neon-green);
    box-shadow: 0 15px 40px -10px rgba(57, 255, 20, 0.2);
    transform: translateY(-5px);
}

/* ===================================
   Visual Density & Background Utilities
   =================================== */

.bg-pattern-dots {
    background-image: radial-gradient(var(--color-border) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Section Backgrounds with Parallax & Overlays */
.bg-infrastructure {
    background: url('../images/cat-textbooks.png') fixed center center/cover;
    position: relative;
    color: white;
}

.bg-sustainability {
    background: url('../images/cat-brochures.png') fixed center center/cover;
    position: relative;
    color: white;
}

.overlay-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.95));
    z-index: 1;
}

.overlay-green {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(10, 40, 10, 0.85), rgba(0, 20, 0, 0.95));
    z-index: 1;
}

.relative-z2 {
    position: relative;
    z-index: 2;
}

/* Enhanced Service Cards with Backgrounds */
.service-bg-card {
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--color-border);
}

.service-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    z-index: 0;
}

.service-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.service-bg-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}

.service-bg-card:hover .service-bg-img {
    transform: scale(1.1);
}

/* Feature Grid for Infrastructure */
.infra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.infra-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    transition: 0.3s;
}

.infra-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--neon-green);
}

.infra-icon {
    font-size: 2rem;
    color: var(--neon-green);
    margin-bottom: 1rem;
}

/* Sustainability Badges */
.eco-badge-grid {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.eco-badge {
    background: rgba(255, 255, 255, 0.9);
    color: #0d3b0d;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bg-about-feature {
    background: url('../images/cat-notebooks.png') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
}

.bg-about-feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4));
    backdrop-filter: blur(2px);
    z-index: 0;
}

.bg-about-feature>* {
    position: relative;
    z-index: 1;
}