/* CSS Reset & Variables */
:root {
    /* Xploit Theme Colors */
    --color-blue: #1434F5;
    --color-neon: #CCFF00;
    --color-dark: #151515;
    --color-darker: #0F0F0F;
    --color-dark-grey: #222222;
    --color-light: #F4F4F4;
    --color-white: #FFFFFF;
    --color-grey: #888888;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --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 {
    background-color: var(--color-darker);
    color: var(--color-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Backgrounds & Text Colors */
.bg-blue { background-color: var(--color-blue); }
.bg-dark { background-color: var(--color-dark); }
.bg-darker { background-color: var(--color-darker); }
.bg-light { background-color: var(--color-light); }
.bg-neon { background-color: var(--color-neon); }

.neon-bg { background-color: var(--color-neon); }
.blue-bg { background-color: var(--color-blue); }

.text-white { color: var(--color-white) !important; }
.text-dark { color: var(--color-darker) !important; }
.neon-text { color: var(--color-neon) !important; }
.text-blue { color: var(--color-blue) !important; }
.text-grey { color: var(--color-grey) !important; }

/* Base Container */
.container {
    width: 100%;
    max-width: 1600px; 
    margin: 0 auto;
    padding: 0 4vw;
}

/* Typography Base */
h1, h2, h3, h4, h5, .logo-text, .giant-text, .stat-number {
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 0; /* Boxy buttons for this theme */
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    letter-spacing: 1px;
}

.btn-outline-neon {
    border: 2px solid var(--color-neon);
    color: var(--color-white);
    background: transparent;
}
.btn-outline-neon:hover {
    background: var(--color-neon);
    color: var(--color-dark);
}
.btn-outline-neon span {
    background: var(--color-neon);
    color: var(--color-dark);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
}
.btn-outline-neon:hover span {
    background: var(--color-white);
}

.btn-dark-outline {
    border: 2px solid rgba(255,255,255,0.2);
    color: var(--color-white);
}
.btn-dark-outline:hover {
    border-color: var(--color-neon);
    color: var(--color-neon);
}

.btn-outline-dark {
    border: 2px solid var(--color-darker);
    color: var(--color-darker);
}
.btn-outline-dark:hover {
    background: var(--color-darker);
    color: var(--color-neon);
}

.btn-solid-dark {
    background: var(--color-darker);
    color: var(--color-white);
    border: 2px solid var(--color-darker);
}
.btn-solid-dark:hover {
    background: transparent;
    color: var(--color-darker);
}

/* Section Spacing */
.section-padding { padding: clamp(80px, 10vw, 140px) 0; }

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s ease;
}

.navbar.scrolled {
    position: fixed;
    background: var(--color-blue);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.navbar:has(.mobile-menu-btn.active) {
    background: transparent !important;
    box-shadow: none !important;
}


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

.logo {
    text-decoration: none;
    font-size: 2rem;
    color: var(--color-white);
    display: flex;
    align-items: baseline;
}
.logo .dot { color: var(--color-neon); }

.nav-links { display: flex; gap: 3vw; }
.nav-links a {
    text-decoration: none;
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--color-neon); }

.nav-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.9rem;
}
.nav-contact .phone-icon {
    background: var(--color-neon);
    color: var(--color-dark);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; z-index: 1001; }
.mobile-menu-btn span { display: block; width: 30px; height: 3px; background-color: var(--color-white); transition: var(--transition); }

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 150px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-stats {
    flex: 0 0 180px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-number {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 5px;
}
.stat-number .neon-plus { color: var(--color-neon); }
.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-center {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 10;
}

.giant-text {
    font-size: clamp(4rem, 10vw, 12rem);
    line-height: 0.9;
    letter-spacing: -2px;
}

.hero-right {
    flex: 0 0 250px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 30px;
}

.decorative-star {
    color: var(--color-neon);
    font-size: 3rem;
    line-height: 1;
}

.hero-desc {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.hero-outline-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: clamp(10rem, 25vw, 30rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,0.1);
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
}

/* Marquee Strip */
.marquee-strip {
    background: var(--color-neon);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--color-darker);
    text-transform: uppercase;
    margin: 0 30px;
}
.marquee-content .plus {
    margin: 0;
}

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

/* Section Headers */
.section-label {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-top { margin-bottom: 60px; }
.section-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    flex-wrap: wrap;
}

.what-we-do h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    max-width: 800px;
}

/* Services Cards / What We Do */
.services-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.svc-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.svc-card:hover { transform: translateY(-10px); }

.dark-card { background: var(--color-dark-grey); }
.blue-card { background: var(--color-blue); }

.svc-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.svc-card h3 { font-size: 1.5rem; }
.svc-card p { font-size: 0.95rem; opacity: 0.8; margin-bottom: 20px; }

.arrow-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.arrow-circle.neon-arrow { background: var(--color-neon); color: var(--color-dark); }

.svc-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    margin-top: auto;
}
.placeholder-img-1 { background-image: url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?q=80&w=800'); }
.placeholder-img-2 { background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?q=80&w=800'); }
.placeholder-img-3 { background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?q=80&w=800'); }

/* About / Who We Are */
.who-we-are { overflow: hidden; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5vw;
    align-items: center;
    margin-bottom: 80px;
}

.about-left h2 { font-size: clamp(2rem, 3.5vw, 3.5rem); margin-bottom: 20px; }
.about-left p { margin-bottom: 30px; font-size: 1.05rem; }

.about-badges { display: flex; flex-direction: column; gap: 15px; }
.badge-item { display: flex; align-items: center; gap: 15px; }
.badge-icon {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    color: var(--color-dark); font-weight: bold; font-size: 1.2rem;
}
.badge-item .blue-bg { color: var(--color-white); }
.badge-text { font-weight: 700; color: var(--color-darker); font-size: 0.9rem; }

.portrait-image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center top;
}

.intro-box {
    background: #fff;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 40px;
    border-top: 4px solid var(--color-neon);
}
.intro-box img { width: 100%; height: 120px; object-fit: cover; margin-bottom: 15px; }
.intro-box p { font-size: 0.9rem; color: var(--color-dark-grey); font-weight: 600;}

.progress-container { display: flex; flex-direction: column; gap: 20px; }
.progress-item { width: 100%; }
.progress-top { display: flex; justify-content: space-between; margin-bottom: 8px; font-weight: 700; color: var(--color-darker); font-size: 0.9rem;}
.progress-bar { width: 100%; height: 8px; background: #e0e0e0; border-radius: 4px; overflow: hidden; }
.progress-fill { height: 100%; }

/* Funky Marquee Strip */
.funky-strip {
    background: var(--color-darker);
    padding: 24px 0;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
    border: 3px solid var(--color-blue);
    position: relative;
    box-shadow: 10px 10px 0 var(--color-neon);
    transform: rotate(1deg);
    transition: var(--transition);
}
.funky-strip:hover {
    transform: rotate(-1deg);
    box-shadow: -10px 10px 0 var(--color-blue);
    border-color: var(--color-neon);
}
.funky-marquee {
    display: inline-flex;
    animation: marquee 12s linear infinite;
    align-items: center;
}
.funky-marquee span {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--color-neon);
    margin: 0 20px;
    line-height: 1;
}
.funky-marquee span.outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--color-neon);
}

/* Neon Callout */
.neon-callout-strip {
    padding: 40px;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    letter-spacing: 1px;
}

/* Process Section */
.process h2 { font-size: clamp(2rem, 3.5vw, 3.5rem); max-width: 800px; margin: 0 auto; }
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}
.step-card {
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.step-number { font-size: 3rem; margin-bottom: 15px; }
.step-card h3 { font-size: 1.2rem; }

/* CTA Banner */
.cta-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 30px; }
.giant-cta { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -1px; }

/* Big Footer */
.big-footer { padding: 80px 0; position: relative; overflow: hidden; }
.footer-top { display: flex; gap: 60px; flex-wrap: wrap; margin-bottom: 60px; position: relative; z-index: 2;}
.footer-brand .logo-text { font-size: 3rem; }
.footer-brand .dot { font-size: 3rem; }

.footer-links-grid { display: flex; gap: 80px; flex-wrap: wrap; flex: 1; justify-content: flex-end; }
.footer-column h4 { font-size: 1.2rem; color: var(--color-white); margin-bottom: 24px; color: var(--color-neon);}
.footer-column a { display: block; color: var(--color-grey); text-decoration: none; margin-bottom: 15px; font-weight: 500; transition: var(--transition); }
.footer-column a:hover { color: var(--color-white); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); color: var(--color-grey); font-weight: 500; font-size: 0.9rem; position: relative; z-index: 2;}
.socials { display: flex; gap: 30px; }
.socials a { color: var(--color-white); text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: var(--transition); }
.socials a:hover { color: var(--color-neon); }

/* Giant Watermark */
.footer-watermark {
    font-family: var(--font-heading);
    font-size: clamp(8rem, 25vw, 30rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    text-align: center;
    line-height: 0.75;
    position: absolute;
    bottom: -5%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-center { order: -1; }
    .portrait-image-wrapper img { height: 400px; }
}

@media (max-width: 992px) {
    .hero-grid { flex-direction: column; align-items: center; text-align: center; gap: 50px; }
    .hero-stats { flex-direction: row; justify-content: center; flex-wrap: wrap; gap: 30px; }
    .hero-right { align-items: center; text-align: center; }
    
    .services-cards, .process-steps { grid-template-columns: 1fr; }
    .section-title-wrapper { flex-direction: column; align-items: flex-start; }
    .what-we-do h2 { max-width: 100%; }
    
    .brands-strip { flex-wrap: wrap; gap: 20px; justify-content: center; }
    .neon-callout-strip { display: flex; flex-direction: column; }
    .cta-flex { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    .nav-links, .nav-contact { display: none; }
    .mobile-menu-btn { display: flex; }

    /* Modern Overlay Style */
    .nav-links.mobile-active {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(20px);
        padding: 100px 10vw 40px;
        z-index: 999;
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.6s cubic-bezier(1, 0, 0, 1), opacity 0.4s ease;
        border: none;
        box-shadow: none;
        overflow: hidden;
    }
    
    .nav-links.mobile-active.mobile-active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-links.mobile-active a {
        padding: 12px 0;
        border-bottom: none;
        text-align: left;
        width: auto;
        font-size: clamp(2rem, 10vw, 3.5rem);
        font-family: var(--font-heading);
        font-weight: 900;
        letter-spacing: -1px;
        line-height: 1;
        opacity: 0;
        transform: translateY(30px);
        transition: none; /* Controlled by animation */
    }

    .nav-links.mobile-active.mobile-active a {
        animation: linkSlideIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }

    .nav-links.mobile-active a:nth-child(1) { animation-delay: 0.1s; }
    .nav-links.mobile-active a:nth-child(2) { animation-delay: 0.2s; }
    .nav-links.mobile-active a:nth-child(3) { animation-delay: 0.3s; }
    .nav-links.mobile-active a:nth-child(4) { animation-delay: 0.4s; }
    .nav-links.mobile-active a:nth-child(5) { animation-delay: 0.5s; }

    @keyframes linkSlideIn {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links.mobile-active a.active {
        color: var(--color-neon);
    }
    
    .nav-links.mobile-active a:hover {
        padding-left: 10px;
        color: var(--color-neon);
    }

    /* Watermark for mobile menu overlay background */
    .nav-links.mobile-active::after {
        content: "XPLOIT";
        position: absolute;
        bottom: 2rem;
        right: -10%;
        font-family: var(--font-heading);
        font-size: clamp(8rem, 30vw, 15rem);
        font-weight: 900;
        color: rgba(255, 255, 255, 0.025);
        pointer-events: none;
        z-index: -1;
        line-height: 1;
        letter-spacing: -5px;
    }

    .nav-links.mobile-active a::before {
        content: "●";
        color: var(--color-neon);
        font-size: 0.8rem;
        margin-right: 15px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .nav-links.mobile-active a.active::before {
        opacity: 1;
    }

    .mobile-menu-btn {
        position: relative;
        z-index: 1001;
    }

    .mobile-menu-btn.active span:nth-child(1) { background-color: var(--color-neon); }
    .mobile-menu-btn.active span:nth-child(3) { background-color: var(--color-neon); }


    
    .footer-top {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .footer-links-grid { 
        justify-content: flex-start; 
        text-align: left;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px 20px;
        margin-top: 20px;
    }
    .footer-column:last-child {
        grid-column: span 2;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .footer-bottom { 
        flex-direction: column; 
        gap: 20px; 
        align-items: flex-start;
        text-align: left; 
    }
}

/* About Page Specific Styles */
.big-para {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 30px;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    margin-top: 40px;
    align-items: center;
}

.intro-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.decorative-blob {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    z-index: 1;
}

.intro-right .stat-card {
    position: relative;
    z-index: 2;
    padding: 60px 40px;
    text-align: center;
    border: 3px solid var(--color-neon);
    box-shadow: 15px 15px 0 var(--color-white);
}

.intro-right .stat-card h2 {
    font-size: 6rem;
    line-height: 1;
}

.intro-right .stat-card p {
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--color-white);
}

/* Team Cards */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.team-card {
    background: var(--color-dark);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.team-card:hover {
    border-color: var(--color-blue);
    transform: translateY(-10px);
}

.member-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 450px;
}

.member-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Ensure faces are visible */
    filter: grayscale(1);
    transition: var(--transition);
}


.team-card:hover .member-image-wrapper img {
    filter: grayscale(0);
    transform: scale(1.05);
}

.member-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 52, 245, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .member-overlay {
    opacity: 1;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--color-neon);
    color: var(--color-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--color-white);
    transform: scale(1.1) rotate(5deg);
    color: var(--color-blue);
}


.member-info {
    padding: 30px;
    text-align: center;
}

.member-info h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.member-degree {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.member-role {
    font-weight: 500;
    color: var(--color-grey);
}

@media (max-width: 992px) {
    .about-intro-grid, .team-grid {
        grid-template-columns: 1fr;
    }
    .intro-right {
        margin-top: 40px;
    }
}

/* Services Page Specific Styles */
.services-detailed-grid {
    display: flex;
    flex-direction: column;
    gap: 120px;
    margin-top: 80px;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 100px 1fr 1fr;
    gap: 60px;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 60px;
    transition: var(--transition);
}

.service-detail-card:hover { border-top-color: var(--color-neon); }

.sd-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px var(--color-grey);
}

.service-detail-card:hover .sd-number {
    color: var(--color-neon);
    -webkit-text-stroke: 0;
}

.sd-content h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.sd-content p {
    font-size: 1.1rem;
    color: var(--color-grey);
    line-height: 1.8;
    margin-bottom: 30px;
}

.sd-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.sd-features li {
    font-weight: 700;
    color: var(--color-white);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.sd-image-placeholder {
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 90% 100%, 0% 100%);
    transition: var(--transition);
    background: var(--color-dark); /* Fallback bg */
}

.sd-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) brightness(0.6);
    transition: var(--transition);
}

.service-detail-card:hover .sd-image-placeholder img {
    filter: grayscale(0) brightness(1);
    transform: scale(1.1);
}

.sd-image-placeholder .icon-box {
    font-size: 8rem;
    line-height: 1;
    transition: var(--transition);
}

.service-detail-card:hover .icon-box {
    transform: rotate(15deg) scale(1.2);
}

@media (max-width: 1200px) {
    .service-detail-card {
        grid-template-columns: 100px 1fr;
    }
    .sd-image-placeholder {
        grid-column: span 2;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .sd-number { font-size: 3rem; }
    .sd-content h2 { font-size: 2rem; }
    .sd-features { grid-template-columns: 1fr; }
    .sd-image-placeholder { grid-column: span 1; height: 250px; }
}

/* Process Page Specific Styles */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 150px;
}

.process-step-item {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ps-header {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 2px solid rgba(255,255,255,0.05);
    padding-bottom: 20px;
}

.ps-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
}

.ps-title {
    font-size: 3rem;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.ps-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ps-body.flipped .ps-content {
    order: 2;
}

.ps-body.flipped .ps-visual {
    order: 1;
}

.ps-content p {
    font-size: 1.2rem;
    color: var(--color-grey);
    margin-bottom: 30px;
}

.ps-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ps-list li {
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.ps-visual {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    z-index: 1;
}

.ps-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid var(--color-neon);
    transform: translate(15px, 15px);
    z-index: -1;
    transition: var(--transition);
}

.process-step-item:hover .ps-visual {
    transform: translate(-10px, -10px);
    box-shadow: 20px 20px 0 var(--color-blue);
}

.process-step-item:hover .ps-visual::after {
    transform: translate(25px, 25px);
    border-color: var(--color-white);
}

.ps-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) brightness(0.7);
    transition: var(--transition);
}

.process-step-item:hover .ps-visual img {
    filter: grayscale(0) brightness(1);
    transform: scale(1.05);
}

.ps-icon {
    display: none; /* Hide if still there */
}

@media (max-width: 992px) {
    .ps-title { font-size: 2rem; }
    .ps-number { font-size: 3.5rem; }
    .ps-body, .ps-body.flipped {
        grid-template-columns: 1fr;
    }
    .ps-body.flipped .ps-content, .ps-body.flipped .ps-visual {
        order: unset;
    }
    .ps-list { grid-template-columns: 1fr; }
    .ps-visual { height: 250px; }
    .ps-icon { font-size: 6rem; }
}

/* Contact Page Specific Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.contact-method-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--color-dark);
    padding: 30px;
    margin-bottom: 24px;
    border-radius: 4px;
    transition: var(--transition);
}

.contact-method-card:hover { border-bottom: 3px solid var(--color-blue); transform: translateY(-5px); }

.method-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

.method-info h3 { font-size: 1.1rem; color: var(--color-grey); margin-bottom: 5px; font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; }
.method-info a, .method-info p { font-size: 1.2rem; font-weight: 700; color: var(--color-white); text-decoration: none; }
.method-info a:hover { color: var(--color-neon); }

.social-box h3 { font-size: 1.1rem; color: var(--color-grey); margin-bottom: 20px; text-transform: uppercase; font-family: var(--font-heading); font-weight: 900; }
.social-links-grid { display: flex; flex-wrap: wrap; gap: 15px; }

.social-tag {
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    transition: var(--transition);
    letter-spacing: 1px;
}

.social-tag:hover { background: var(--color-white); color: var(--color-dark); border-color: var(--color-white); }

/* Form Styles */
.contact-form-wrapper {
    background: var(--color-dark);
    padding: 60px;
    border-top: 5px solid var(--color-neon);
    box-shadow: 20px 20px 0 rgba(20, 52, 245, 0.2);
}

.modern-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.input-group {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--color-grey);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.input-group input, .input-group textarea, .input-group select {
    background: var(--color-darker);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 18px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    border-radius: 0;
}

.input-group input:focus, .input-group textarea:focus, .input-group select:focus {
    outline: none;
    border-color: var(--color-neon);
    box-shadow: 0 0 15px rgba(204, 255, 0, 0.1);
}

@media (max-width: 992px) {
    .contact-grid { 
        grid-template-columns: 1fr;
        gap: 40px; 
    }
    .modern-form .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { 
        padding: 40px 20px; 
        box-shadow: 10px 10px 0 rgba(20, 52, 245, 0.2); 
    }
}


@media (max-width: 768px) {
    .contact-hero { text-align: center; }
    .contact-hero .giant-text {
        font-size: clamp(3rem, 12vw, 5rem);
        margin-bottom: 20px;
    }
    .contact-hero .big-para {
        margin: 20px auto 0;
    }
    
    .funky-strip {
        transform: none; /* Turn off rotation to avoid horizontal overflow on small phones */
        box-shadow: 5px 5px 0 var(--color-neon); 
        margin: 20px 10px;
    }

    .contact-form-wrapper {
        padding: 30px 15px;
        box-shadow: none; /* Remove offset shadow on mobile */
        border: 2px solid rgba(255, 255, 255, 0.1);
    }
    
    .contact-method-card {
        padding: 20px;
        gap: 15px;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .method-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
    
    .method-info a, .method-info p {
        font-size: 1rem;
        word-break: break-word; /* Ensure long emails don't break layout */
    }
}




