:root {
    /* Color Palette */
    --clr-bg: #0F1218;
    /* Deep Charcoal */
    --clr-bg-alt: #161A23;
    --clr-primary: #32CD32;
    /* Electric Lime Green */
    --clr-primary-glow: rgba(50, 205, 50, 0.4);
    --clr-secondary: #1A2B49;
    /* Midnight Blue */
    --clr-text: #F3F4F6;
    --clr-text-muted: #9CA3AF;

    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.headline {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

.highlight {
    color: var(--clr-primary);
    text-shadow: 0 0 20px var(--clr-primary-glow);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    /* Professional sharp edges slightly rounded */
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--clr-primary);
    color: #000;
    box-shadow: 0 4px 15px var(--clr-primary-glow);
}

.btn-primary:hover {
    background-color: #2eb82e;
    box-shadow: 0 6px 20px rgba(50, 205, 50, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--clr-text);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
    background-color: rgba(50, 205, 50, 0.05);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: rgba(15, 18, 24, 0.0);
    /* Transparent initially */
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    padding: 1rem 0;
    background: rgba(15, 18, 24, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--clr-text-muted);
}

.lang-switch button {
    background: none;
    border: none;
    color: var(--clr-text-muted);
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s;
}

.lang-switch button:hover,
.lang-switch button.active {
    color: var(--clr-primary);
}

.logo img {
    height: 90px;
    object-fit: contain;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-nav a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    color: var(--clr-text-muted);
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--clr-text);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--clr-primary);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

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

/* --- Google Labs Style Cinematic Hero --- */
.glabs-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    background: var(--clr-bg);
    /* Dark background for the masonry state */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Gallery Background Images */
.glabs-gallery {
    position: absolute;
    inset: 0;
    z-index: 1;
    perspective: 1000px;
}

.glabs-card {
    position: absolute;
    /* Default Full Screen State */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: translateZ(0) scale(1.05);
    /* Slight zoom for transition */
    transition: all 1.2s cubic-bezier(0.76, 0, 0.24, 1);
    filter: brightness(0.6);
    border-radius: 0;
    will-change: transform, opacity, width, height, top, left;
}

/* When a card is the active full-screen background in Phase 1 */
.glabs-card.active {
    opacity: 1;
    transform: translateZ(0) scale(1);
    z-index: 2;
}

/* Expansion State (Floating Masonry Gallery - Phase 2) */
.glabs-hero.expanded .glabs-card {
    opacity: 0.6;
    filter: brightness(0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Precise scattering coordinates to frame the text */
.glabs-hero.expanded #gc-1 {
    top: 8%;
    left: 5%;
    width: 22vw;
    height: 35vh;
    border-radius: 16px;
    transform: rotate(-2deg);
}

.glabs-hero.expanded #gc-2 {
    top: 60%;
    left: 10%;
    width: 28vw;
    height: 28vh;
    border-radius: 16px;
    transform: rotate(1.5deg);
}

.glabs-hero.expanded #gc-3 {
    top: 15%;
    left: 70%;
    width: 24vw;
    height: 32vh;
    border-radius: 16px;
    transform: rotate(3deg);
}

.glabs-hero.expanded #gc-4 {
    top: 60%;
    left: 70%;
    width: 22vw;
    height: 30vh;
    border-radius: 16px;
    transform: rotate(-1.5deg);
}

.glabs-hero.expanded #gc-5 {
    top: 5%;
    left: 40%;
    width: 16vw;
    height: 22vh;
    border-radius: 16px;
    transform: rotate(-4deg);
}

.glabs-hero.expanded #gc-6 {
    top: 80%;
    left: 45%;
    width: 18vw;
    height: 15vh;
    border-radius: 16px;
    transform: rotate(2deg);
}

/* Text Layers */
.glabs-text-layer {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Dynamic Text Mode (Phase 1) */
.glabs-dynamic-texts {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease;
}

.glabs-text {
    position: absolute;
    font-size: clamp(3rem, 6vw, 7rem);
    font-weight: 800;
    letter-spacing: -2px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    color: var(--clr-text);
    text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.glabs-text .x {
    color: var(--clr-primary);
    font-weight: 300;
    margin: 0 1rem;
    display: inline-block;
}

.glabs-text.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Main Expansion Text Mode (Phase 2) */
.glabs-main-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 100%;
    max-width: 900px;
    opacity: 0;
    text-align: center;
    transition: all 1s cubic-bezier(0.76, 0, 0.24, 1);
    transition-delay: 0.2s;
    /* Wait slightly for dynamic text to fade */
    pointer-events: auto;
    /* Buttons clickable */
    padding: 0 20px;
}

.glabs-main-text .headline {
    font-size: clamp(4rem, 8vw, 8rem);
    line-height: 0.95;
    letter-spacing: -3px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: var(--clr-text);
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.glabs-main-text .subheadline {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Triggered State (Expansion) */
.glabs-hero.expanded .glabs-dynamic-texts {
    opacity: 0;
    pointer-events: none;
}

.glabs-hero.expanded .glabs-main-text {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Secondary elements fade in naturally after the wipe */
@keyframes fadeUpIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.subheadline {
    font-size: 1.25rem;
    color: var(--clr-text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Professional Card Animation (Replaces Glassmorphism) */
.premium-badge {
    background: var(--clr-secondary);
    border-left: 4px solid var(--clr-primary);
    border-radius: 4px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 380px;
    margin-left: auto;
    position: relative;
}

.premium-badge h3 {
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}

.premium-badge p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(50, 205, 50, 0.1);
    border: 1px solid rgba(50, 205, 50, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* --- Services Pillars --- */
.services {
    background-color: var(--clr-bg-alt);
    position: relative;
}

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

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--clr-text-muted);
    font-size: 1.125rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* --- Subtle Wallpaper Texture Background --- */
.wallpaper-texture-bg {
    position: relative;
    background-color: var(--clr-bg-alt);
}

.wallpaper-texture-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.03;
    /* Extremely subtle */
    background-image:
        radial-gradient(circle at 100% 150%, transparent 20%, rgba(255, 255, 255, 1) 21%, rgba(255, 255, 255, 1) 34%, transparent 35%, transparent),
        radial-gradient(circle at 0% 150%, transparent 20%, rgba(255, 255, 255, 1) 21%, rgba(255, 255, 255, 1) 34%, transparent 35%, transparent);
    background-size: 100px 100px;
    background-position: 0 0, 50px 0;
}

.wallpaper-texture-bg>.container {
    position: relative;
    z-index: 1;
}

/* --- Subtle Logo Texture Background --- */
.logo-texture-bg {
    position: relative;
    background-color: var(--clr-bg-alt);
    overflow: hidden;
}

.logo-texture-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.04;
    /* Subtly visible */
    background-image: url('assets/logo_transparent.png');
    background-size: 200px;
    background-repeat: repeat;
    background-position: center;
    transform: rotate(-10deg) scale(1.5);
}

.logo-texture-bg>.container {
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--clr-bg-alt);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 3rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    background: var(--clr-secondary);
    border-color: rgba(50, 205, 50, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--clr-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    margin-bottom: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.service-card p {
    color: var(--clr-text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.card-link {
    color: var(--clr-primary);
    font-weight: 600;
    font-family: var(--font-heading);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.card-link span {
    transition: transform 0.3s ease;
}

.card-link:hover span {
    transform: translateX(5px);
}

/* --- Trust Factors --- */
.trust-factors {
    background: linear-gradient(to right, var(--clr-bg), var(--clr-secondary), var(--clr-bg));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.trust-text p {
    color: #cbd5e1;
    font-size: 1.1rem;
}

.trust-logos {
    flex: 1;
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 0 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.brand-logo:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

/* --- New Sections (Services Detail, Portfolio, About, Contact) --- */
/* Services Detail */
.services-detail {
    background: var(--clr-bg);
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-detail-item {
    background: var(--clr-bg-alt);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 2.5rem;
    transition: var(--transition);
}

.service-detail-item:hover {
    border-color: rgba(50, 205, 50, 0.4);
    transform: translateY(-3px);
}

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

.service-detail-item p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

/* Portfolio */
.portfolio {
    background: var(--clr-bg-alt);
}

.portfolio-filters {
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--clr-text-muted);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin: 0 0.5rem;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--clr-primary);
    color: #000;
    border-color: var(--clr-primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.portfolio-item {
    background: var(--clr-bg);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.placeholder-img {
    background: linear-gradient(45deg, var(--clr-secondary), var(--clr-bg-alt));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.portfolio-img {
    height: 300px;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-img-1 {
    background: url('assets/portfolio1.png') center/cover no-repeat;
}

.portfolio-img-2 {
    background: url('assets/portfolio2.png') center/cover no-repeat;
}

.portfolio-img-3 {
    background: linear-gradient(45deg, rgba(26, 43, 73, 0.8), rgba(22, 26, 35, 0.8)), url('assets/portfolio1.png') center/cover no-repeat;
}

.portfolio-img-4 {
    background: linear-gradient(45deg, rgba(26, 43, 73, 0.8), rgba(22, 26, 35, 0.8)), url('assets/portfolio2.png') center/cover no-repeat;
}

.portfolio-info {
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: none;
}

.portfolio-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.portfolio-info p {
    font-size: 0.9rem;
    color: var(--clr-primary);
}

/* --- Interactive Carousel --- */
.carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    list-style: none;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    margin: 0;
    padding: 0;
}

.carousel-slide {
    min-width: 100%;
    padding: 0 0.5rem;
    /* Gap between visually */
}

.slide-content {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.slide-img {
    position: absolute;
    inset: 0;
    opacity: 0.7;
    transition: transform 0.8s ease, opacity 0.5s ease;
}

.slide-content:hover .slide-img {
    transform: scale(1.05);
    opacity: 0.9;
}

.slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(10, 14, 23, 0.95) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.slide-badge {
    background: var(--clr-primary);
    color: #0F1218;
    /* Dark charcoal for contrast against lime green */
    padding: 0.35rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.slide-info h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.slide-link {
    color: var(--clr-primary);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.slide-link:hover {
    color: #fff;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #111;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.carousel-btn:hover {
    background: #fff;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .carousel-wrapper {
        flex-direction: column;
    }

    .carousel-btn {
        display: none;
        /* Hide arrows on mobile, rely on swipe if implemented or just single static column */
    }

    .slide-info h3 {
        font-size: 1.6rem;
    }
}

/* About */
.about {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.about-content p {
    color: var(--clr-text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.core-values {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.core-values li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--clr-text);
}

.core-values i {
    font-size: 1.2rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--clr-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-muted);
}

.about-image {
    height: 500px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url('assets/about_image.png') center/cover no-repeat;
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(50, 205, 50, 0.4);
}

.stars {
    color: #f59e0b;
    /* Gold/yellow for stars */
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--clr-text);
    margin-bottom: 2rem;
    flex-grow: 1;
    font-style: italic;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    background: var(--clr-primary);
    color: #0F1218;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.reviewer-info h4 {
    font-size: 1rem;
    margin-bottom: 0.1rem;
    color: #fff;
}

.reviewer-info span {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact & Forms */
.contact {
    background: var(--clr-bg-alt);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(50, 205, 50, 0.05) 0%, transparent 70%);
}

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

.contact-info-wrapper {
    z-index: 10;
}

.contact-info-wrapper h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.contact-info-wrapper p {
    color: var(--clr-text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-card-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: var(--clr-text);
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(50, 205, 50, 0.1);
    border: 1px solid rgba(50, 205, 50, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
}

.contact-item h4 {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item span {
    font-size: 1.1rem;
    font-weight: 600;
}

.lead-form {
    background: var(--clr-bg);
    padding: 3.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    position: relative;
}

.lead-form h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #cbd5e1;
}

input,
select,
textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--clr-bg-alt);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--clr-text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 2px rgba(50, 205, 50, 0.2);
}

/* Pre-Footer CTA */
.pre-footer-cta {
    background: linear-gradient(135deg, var(--clr-bg-alt), var(--clr-bg));
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.pre-footer-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 150%, rgba(156, 255, 0, 0.05), transparent 60%);
    pointer-events: none;
}

.pre-footer-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pre-footer-cta p {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.pre-footer-cta .btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Footer */
.site-footer {
    padding: 5rem 0 2rem;
    background: var(--clr-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo {
    height: 60px;
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul a {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.footer-col ul a:hover {
    color: var(--clr-primary);
    padding-left: 5px;
}

.footer-col p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    font-weight: 600;
}

.social-links a:hover {
    background: var(--clr-primary);
    color: #000;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--clr-text-muted);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .headline {
        font-size: 3rem;
    }

    .contact-container {
        gap: 2rem;
    }

    .lead-form {
        padding: 2.5rem;
    }
}

@media (max-width: 992px) {
    .headline {
        font-size: 2.8rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 15vh;
    }

    .guarantee-card {
        margin: 2rem auto 0;
    }

    .hero-actions {
        justify-content: center;
    }

    .trust-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .trust-logos {
        justify-content: center;
        flex-wrap: wrap;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-detail-grid {
        grid-template-columns: 1fr;
    }

    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .about-image {
        height: 350px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 0;
    }

    .headline {
        font-size: 2.25rem;
    }

    .subheadline {
        font-size: 1rem;
    }

    .hero-bg {
        padding: 1rem;
    }

    .services-grid,
    .services-detail-grid,
    .portfolio-grid,
    .form-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        gap: 2rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .main-nav,
    .site-header .btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .mobile-menu-toggle span {
        width: 100%;
        height: 3px;
        background-color: var(--clr-text);
        border-radius: 3px;
    }

    .main-nav.active {
        display: block;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(15, 18, 24, 0.98);
        padding: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        z-index: 1000;
        text-align: center;
    }

    .main-nav.active ul {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-icon-box {
        width: 40px;
        height: 40px;
    }

    .contact-item span {
        font-size: 0.95rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
    }

    .portfolio-img {
        height: 250px;
    }

    .lead-form {
        padding: 2rem 1.5rem;
    }

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* --- Lightbox System (Global) --- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 18, 24, 0.98);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    z-index: 10000;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img,
.lightbox-content video {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    display: none;
}