:root {
    --bg-color: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-color: #e0e0e0;
    /* Clean white/silver for lighting feel */
    --accent-glow: rgba(255, 255, 255, 0.1);
    --border-color: #333333;
    --nav-bg: rgba(10, 10, 10, 0.85);

    --font-main: 'Inter', sans-serif;

    --container-width: 1200px;
    --section-padding: 100px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.03) 0%, transparent 60%),
        radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.02) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.section-tag {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--text-primary);
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background: var(--text-primary);
    color: var(--bg-color);
}

/* .btn-primary uses base .btn styles */

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- New Logo Styles --- */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    /* Reduced gap from 15px */
    text-decoration: none;
    position: relative;
    overflow: hidden;
    /* For shimmer effect */
    padding-right: 10px;
    /* Space for shimmer overflow */

    /* Power On Entrance Animation */
    animation: flicker-on 1.5s ease-out forwards;
    opacity: 0;
    /* Start hidden for animation */

    /* Enhancement for visibility */
    filter: brightness(1.3) contrast(1.1);
}

/* Shimmer Effect on Hover */
.logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            transparent 0%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 100%);
    transform: skewX(-25deg);
    transition: left 0.5s ease-in-out;
    pointer-events: none;
}

.logo:hover::after {
    left: 200%;
    transition: left 0.7s ease-in-out;
}

.logo-img {
    height: 65px;
    /* Increased from 50px to match text height */
    width: auto;
    object-fit: contain;

    /* Removed drop-shadow filter to fix blurriness */
    /* animation: glow-pulse removed */
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* Removed text-shadow to keep text crisp */
}

.tagline {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

/* --- Animations --- */

/* 1. Flicker "Power On" (Like a fluorescent tube) */
@keyframes flicker-on {
    0% {
        opacity: 0;
        filter: brightness(0);
    }

    10% {
        opacity: 0.4;
        filter: brightness(0.5);
    }

    15% {
        opacity: 0.1;
        filter: brightness(0.1);
    }

    20% {
        opacity: 0.4;
        filter: brightness(0.5);
    }

    30% {
        opacity: 1;
        filter: brightness(1.5);
    }

    /* Flash bright */
    35% {
        opacity: 0.8;
        filter: brightness(1);
    }

    40% {
        opacity: 1;
        filter: brightness(1.2);
    }

    50% {
        opacity: 0.9;
        filter: brightness(1);
    }

    70% {
        opacity: 1;
        filter: brightness(1.1);
    }

    100% {
        opacity: 1;
        filter: none;
    }
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.nav-link:hover {
    color: var(--text-primary);
}

.menu-toggle {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Below content */
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 20px;
    margin-top: 40px;
    /* Offset for nav */
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
    background: linear-gradient(to right, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.scroll-indicator .line {
    width: 1px;
    height: 50px;
    background: var(--text-secondary);
}

/* Sections General */
.section {
    padding: var(--section-padding);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .lead {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.vm-item h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.vm-item p {
    font-size: 0.9rem;
    margin: 0;
}

/* About Image */
.feature-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Solutions Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Solution Cards with Images (Cinematic Upgrade) */
.card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.4s ease, box-shadow 0.5s ease;
    border-radius: 6px;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    height: 100%;
    /* Ensure equal height */
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.card-img-wrapper {
    width: 100%;
    height: 240px;
    /* Taller image */
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card:hover .card-img-wrapper img {
    transform: scale(1.15);
    /* Deep zoom */
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.card:hover .card-overlay {
    opacity: 0.3;
    /* Lighten on hover to show more image details */
}

.card-content {
    padding: 35px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card h3 {
    margin-bottom: 5px;
    font-size: 1.35rem;
    color: var(--text-primary);
    position: relative;
}

.accent-line {
    width: 40px;
    height: 2px;
    background: #FFD700;
    /* Gold "Spark" color */
    margin-bottom: 15px;
    transition: width 0.4s ease;
}

.card:hover .accent-line {
    width: 80px;
    /* Expands on hover */
}

.card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.discover-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.discover-link:hover {
    opacity: 1;
}

.arrow {
    transition: transform 0.3s ease;
    display: inline-block;
}

.card:hover .arrow {
    transform: translateX(5px);
}

/* --- Product Categories (Tech Card Grid) --- */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.tech-card {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    padding: 30px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 2px;
}

.tech-card:hover {
    background: rgba(20, 20, 20, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Tech Background Gradient & Images */
.tech-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Default fallback gradient */
    background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.05), transparent 60%);
    opacity: 0.3;
    /* visible by default now */
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    /* Smooth zoom/fade */
    z-index: 0;
    background-size: cover;
    background-position: center;
}

.tech-card:hover .tech-bg {
    opacity: 0.6;
    /* Brighter on hover */
    transform: scale(1.1);
    /* Subtle zoom */
}

/* Specific Category Images */
.card-lighting .tech-bg {
    background-image: url('../images/products/light_fittings.png');
}

.card-electrical .tech-bg {
    background-image: url('../images/products/electrical_items.png');
}

.card-chandeliers .tech-bg {
    background-image: url('../images/products/chandeliers.png');
}

.card-wires .tech-bg {
    background-image: url('../images/products/wires_cables.png');
}

.card-cablemgmt .tech-bg {
    background-image: url('../images/products/cable_mgmt.png');
}

.card-smart .tech-bg {
    background-image: url('../images/products/smart_systems.png');
}

/* Project Gallery */
.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease;
    filter: grayscale(100%) brightness(0.8);
    /* Cinematic moody look */
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(1.1);
    /* Burst to color on hover */
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0.6;
    transition: opacity 0.4s;
}

.gallery-item:hover::after {
    opacity: 0;
}

/* Corner Brackets */
/* Corner Brackets */
.tech-border-tl,
.tech-border-br {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    z-index: 2;
}

.tech-border-tl {
    top: 0;
    left: 0;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    border-left: 2px solid rgba(255, 255, 255, 0.3);
}

.tech-card:hover .tech-border-tl {
    width: 30px;
    height: 30px;
    border-color: #FFD700;
}

.tech-border-br {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    border-right: 2px solid rgba(255, 255, 255, 0.3);
}

.tech-card:hover .tech-border-br {
    width: 30px;
    height: 30px;
    border-color: #FFD700;
}

/* Tech Content */
.tech-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.tech-num {
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
    font-family: monospace;
    opacity: 0.5;
    margin-bottom: auto;
    /* Pushes num to top */
}

.tech-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.tech-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.tech-card:hover .tech-desc {
    color: #FFD700;
    /* Gold highlight */
}

.tech-list {
    list-style: none;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    margin-top: auto;
    /* Push to bottom */
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
    display: block;
    /* Always laid out but hidden */
    height: 0;
    /* Colapse height when hidden */
    overflow: hidden;
}

.tech-card:hover .tech-list {
    transform: translateY(0);
    opacity: 1;
    height: auto;
    overflow: visible;
}

.tech-list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
    position: relative;
    padding-left: 12px;
}

.tech-list li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}


/* --- Professional Services (Pillars Grid) --- */
.services-pillar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (min-width: 1200px) {
    .services-pillar-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-pillar-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border-radius: 4px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.service-pillar-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.svc-watermark {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 6rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
    transition: all 0.5s ease;
    line-height: 1;
}

.service-pillar-card:hover .svc-watermark {
    transform: translateY(10px) translateX(-10px);
    color: rgba(255, 255, 255, 0.08);
}

.svc-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    color: #FFD700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.service-pillar-card:hover .svc-icon-box {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
    color: #FFF;
    font-size: 1.2rem;
    /* Shrink slightly */
}

.svc-content {
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.service-pillar-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-pillar-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .services-pillar-grid {
        grid-template-columns: 1fr;
    }
}

/* Certifications */
.cert-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.cert-card {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 40px;
    border: 1px solid var(--border-color);
}

.cert-card h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-family: monospace;
}

/* Projects Background (Updated Path) */
.projects-section {
    position: relative;
    overflow: hidden;
}

.projects-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Updated Path relative to assets/css/ */
    background: url('../../assets/images/projects-bg.png') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: screen;
}

.relative-container {
    position: relative;
    z-index: 1;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Us Asymmetric Layout */
.about-asymmetric {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    margin-top: 40px;
}

.about-glass-content {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 2px;
    position: relative;
}

.lead-in {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #FFD700;
    margin-bottom: 20px;
}

.highlight-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 25px;
    font-weight: 300;
}

.about-glass-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    leading-height: 1.7;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.vm-box h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.vm-icon {
    color: #FFD700;
    font-size: 1.2rem;
}

.vm-box p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.about-signature {
    position: relative;
    /* Changed from absolute to flow naturally */
    margin-top: 40px;
    /* Add spacing from the content above */
    text-align: right;
    opacity: 0.6;
    pointer-events: none;
    display: flex;
    flex-direction: column;

    .about-signature {
        position: relative;
        /* Changed to relative to follow flow */
        margin-top: 50px;
        /* Add reliable spacing */
        text-align: right;
        opacity: 0.8;
        /* Make it clearly visible */
        pointer-events: none;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        /* Align right in flex column */
        gap: 5px;
        right: auto;
        /* Reset absolute properties */
        bottom: auto;
        /* Reset absolute properties */
    }

    .sig-year {
        display: block;
        font-size: 0.75rem;
        letter-spacing: 3px;
        color: var(--text-secondary);
    }

    .sig-name {
        font-family: 'Cinzel', serif;
        /* Or standard serif if not loaded */
        font-size: 1.8rem;
        font-style: italic;
        font-weight: 700;
        line-height: 1;
        color: var(--text-primary);
    }

    /* Slightly smaller to fit better */
    font-style: italic;
    font-weight: 700;
    line-height: 1;
    /* Tighter line height */
    color: var(--text-primary);
}

.about-visual-side {
    height: 100%;
    min-height: 450px;
    /* Taller min-height */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    overflow: hidden;
}

.about-img-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* subtle opacity to blend with background */
    mix-blend-mode: screen;
    /* Blend nicely with dark theme */
    z-index: 1;
}

.glowing-orb {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    animation: pulse-slow 6s infinite ease-in-out;
    z-index: 2;
    /* On top of image */
}

@keyframes pulse-slow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.9;
    }
}

@media (max-width: 992px) {
    .about-asymmetric {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visual-side {
        min-height: 250px;
        /* Visible on mobile now but smaller */
        order: -1;
        /* Show image above text on mobile */
        margin-bottom: 20px;
    }
}

/* Footprint Grid */
.footprint-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.footprint-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 4px;
    transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.footprint-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.location-icon {
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.location-icon svg {
    stroke: var(--text-secondary);
    transition: stroke 0.4s ease, filter 0.4s ease;
}

.footprint-card:hover .location-icon svg {
    stroke: var(--text-primary);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.footprint-card:hover .location-icon {
    transform: scale(1.1);
}

.location-name {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.project-examples {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.info-item {
    margin-top: 30px;
}

.info-item h4 {
    color: var(--text-secondary);
    margin-bottom: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-primary);
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    background: #050505;
}

/* Glassmorphism & Premium UI Enhancements */

/* Enhanced Card Styles */
.card,
.cert-card,
.service-info,
.about-text {
    position: relative;
    z-index: 1;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 0;
}

.card:hover::before {
    opacity: 1;
}

/* Typography Enhancements */
.hero-title {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--text-primary);
    transition: width 0.3s ease;
}

.container:hover .section-title::after {
    width: 100px;
}

/* Service Rows */
.service-row {
    transition: background 0.3s ease;
    padding: 50px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.service-num {
    color: var(--text-secondary);
    opacity: 0.5;
    transition: color 0.3s, opacity 0.3s, transform 0.3s;
}

.service-row:hover .service-num {
    color: var(--text-primary);
    opacity: 1;
    transform: translateX(10px);
}

/* Cert Cards */
.cert-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cert-card:hover {
    border-color: var(--text-primary);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

/* Form Elements Premium Feel */
.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: rgba(0, 0, 0, 0.5);
    border-color: var(--text-primary);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

/* Buttons */
.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--text-primary);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn:hover {
    color: var(--bg-color);
}

/* --- Lenis Smooth Scroll --- */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--nav-bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
    }

    .menu-toggle .bar {
        width: 25px;
        height: 2px;
        background: var(--text-primary);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .cards-grid,
    .about-grid,
    .contact-wrapper,
    .vision-mission {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 0;
    }
}