:root {
    --primary-bg: oklch(1 0 0);
    --secondary-bg: oklch(0.95 0.0061 57);
    --accent-color: oklch(0.8759 0.0532 127.01);
    --accent-light: oklch(0.9 0.015 120);
    --accent-dark: oklch(0.3 0.015 280);
    --text-dark: oklch(0.1 0.01 250);
    --text-medium: oklch(0.45 0.01 250);
    --text-light: oklch(0.6 0.01 250);
    --border-color: oklch(0.9 0.005 120);
    --accent-plum: oklch(0.6 0.05 290);
    --accent-gold: oklch(0.75 0.1 90);
}

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

body {
    background: var(--primary-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 400;
}


/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(0deg, oklch(0% 0 0 / .5) 0%, oklch(90% 0 0 / .05) 100%),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600') no-repeat center/cover;
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 2;
}

.hero-text h1 {
    font-size: clamp(3rem, 6vw, 6rem);
    margin-bottom: 1rem;
    line-height: 0.9;
    color: oklch(99% .008 124);
}

.hero-text .subtitle {
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: white;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: oklch(75% .01 124);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    text-shadow: 0.1px 0.1px 1.25px black;
    box-shadow: 0 1px 2.2px oklch(75% .01 124);
}

.cta-button:hover {
    background: var(--accent-dark);
    transform: translateY(2.6px);
    box-shadow: 0 3px 20.2px inset oklch(25% .01 284);
    color: var(--accent-plum);
}

.hero-visual {
    position: relative;
    height: 600px;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-5px);
}

.card-1 {
    top: 10%;
    right: 10%;
    width: 280px;
    background: var(--accent-light);
}

.card-2 {
    top: 40%;
    right: 40%;
    width: 240px;
    background: white;
}

.card-3 {
    top: 70%;
    right: 20%;
    width: 200px;
    background: var(--secondary-bg);
}

/* SVG Motifs */
.svg-motif {
    position: absolute;
    opacity: 0.1;
    z-index: 1;
}

.motif-1 {
    top: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
}

.motif-2 {
    bottom: 20%;
    right: 15%;
    width: 150px;
    height: 150px;
}

/* Services Grid */
.services-section {
    padding: 8rem 0;
    background: var(--secondary-bg);
}

.services-intro {
    text-align: center;
    margin-bottom: 6rem;
}

.services-intro h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.services-intro p {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: white;
    padding: 3rem;
    border-radius: 0;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--accent-color);
}

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

.service-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.service-link:hover {
    color: var(--accent-dark);
}

/* Split Section */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.split-content {
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-left {
    background: var(--accent-dark);
    color: white;
}

.split-right {
    background: var(--primary-bg);
    position: relative;
}

.split-left h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    color: white;
}

.split-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

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

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.image-collage {
    position: relative;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--accent-light) 100%);
}

.collage-image {
    position: absolute;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.collage-image:hover {
    transform: scale(1.05);
    z-index: 10;
}

.collage-link {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    background: radial-gradient(circle at center,
            oklch(0% 0 0 / .85) 0%,
            oklch(0% 0 0 / .55) 20%,
            oklch(0% 0 0 / .15) 40%,
            oklch(0% 0 0 / .05) 50%,
            oklch(0% 0 0 / .001) 80%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collage-image:hover .collage-link {
    opacity: 1;
}

.img-1 {
    background: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?w=600') no-repeat center/cover;
    top: 10%;
    left: 10%;
    width: 40%;
    height: 35%;
}

.img-2 {
    background: url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?w=600') no-repeat center/cover;
    top: 20%;
    right: 15%;
    width: 35%;
    height: 30%;
}

.img-3 {
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=600') no-repeat center/cover;
    bottom: 15%;
    left: 20%;
    width: 30%;
    height: 25%;
}

.img-4 {
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=600') no-repeat center/cover;
    bottom: 25%;
    right: 10%;
    width: 25%;
    height: 20%;
}

/* Footer */
.footer {
    background: var(--accent-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .split-section {
        grid-template-columns: 1fr;
    }

    .image-collage {
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .dropdown {
        display: none;
    }

    header {
        padding: 1rem;
    }

    .hero {
        padding-top: 60px;
        min-height: auto;
        padding-bottom: 4rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .services-section {
        padding: 4rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    .split-content {
        padding: 3rem 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .services-intro h2 {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.25rem;
    }

    .split-left h2 {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* NEW NAV */
/* Progress Bar */
.new-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: .3px;
    background: oklch(32% .15 126);
    z-index: 10000;
    transition: width 0.1s ease;
    filter: blur(1.8892px);
}

/* Navigation Styles */
.jjc-nav {
    position: fixed;
    top: 0;
    left: 6vw;
    justify-self:
        center !important;
    align-self: center !important;
    width: 88vw;
    border-radius: 8px;
    box-shadow:
        oklch(50% .031 128 / .25) 0px 15px 15.3px -5.2px,
        oklch(80% .031 128) inset 0px 3px 7px -.9px,
        oklch(60% .031 128 /.4) 0px 3px 9px -4.9px,
        oklch(80% .031 128) inset 0px .2px 4.6px -.35px;
    margin: 28px 0 0 0;
    padding: 17px 1.5% 16.5px 1.5%;
    z-index: 1000;
    background: oklch(89.9% 0 0 / .95);
    transition: all 1.3s ease;
    opacity: 1;
}

.jjc-nav.scrolled {
    margin: 0;
    left: 0;
    width: 100vw;
    align-self: center !important;
    justify-self: center !important;
    background: oklch(99.8% 0.045 320 / .185);
    backdrop-filter: blur(1.4px);
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    opacity: 1;
}

.jjc-nav.scrolled .jjc-nav {
    text-shadow: .1px 1.1px 20px oklch(40% .1 132);
}

.jjc-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.jjc-logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
    text-decoration: none;
    color: oklch(40% .019 128);
    font-family: 'Bodoni Moda', serif;
}

.jjc-nav-menu {
    display: flex;
    gap: 3rem;
    align-items: center;
    color: oklch(89% 0.01 130);
    text-shadow: .1px 1.1px 2px oklch(70% .1 132);
    font-family: 'Bodoni Moda', serif;

}

.jjc-nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.jjc-nav-links a {
    color: rgb(210, 236, 198);
    text-shadow: .01px .9535px 1.982px oklch(30% .1 132 / .5);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.jjc-nav-links a:hover,
.jjc-nav-links a.active {
    color: oklch(9% 0 0);
}

.jjc-contact-btn {
    background: oklch(50% 0 0 /.675);
    color: #FFF;
    padding: 0.7rem 1.8rem;
    border: 1px solid transparent;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.jjc-contact-btn:hover {
    background: oklch(50% 0 0 /.675);
    color: #2c2c2c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px oklch(0% 0 0 / 0.2);
}

/* Mobile Toggle */
.jjc-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    background-color: yellow;

    height: 22px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.jjc-mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: yellow;
    transition: all 0.3s ease;
    transform-origin: center;
}

.jjc-mobile-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.jjc-mobile-toggle.open span:nth-child(2) {
    opacity: 0;
}

.jjc-mobile-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mega Dropdown Styles */
.has-ultra-dropdown {
    position: relative;
}

.ultra-dropdown {
    position: absolute;
    top: 100%;
    left: -10vw;
    background: oklch(0.91 0.04 119.37 / 0.95);
    color: oklch(22% .008 280);
    display: flex;
    gap: 3rem;
    padding: 2rem 3rem;
    min-width: 600px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    border-radius: 0.75rem;
    box-shadow: 0 12px 24px oklch(0% 0 0 / 0.15);
    transition: all 0.3s ease;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.has-ultra-dropdown:hover .ultra-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ultra-column {
    flex: 1;
}

.ultra-column h4 {
    font-size: 1.1rem;
    color: oklch(28% .008 290);
    text-shadow: .1px .1px 1.3px oklch(95% .008 290);
    margin-bottom: 1rem;
    font-weight: 600;
}

.ultra-column h4 a {
    text-decoration: none;
    color: inherit;
}

.ultra-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ultra-column ul li {
    margin-bottom: 0.5rem;
}

.ultra-column ul a {
    text-decoration: none;
    color: oklch(14% .008 280);
    font-size: 0.9rem;
    transition: color 0.2s ease;
    display: block;
    padding: 0.25rem 0;
}

.ultra-column ul a:hover {
    color: oklch(45% .065 290);
    padding-left: 0.5rem;
}

/* Subsection styling for residential */
.ultra-section h5 {
    font-size: 1rem;
    color: oklch(95% .015 128);
    text-shadow: .05px .05px 1.3px black;
    font-weight: 900;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.ultra-section h5 a {
    text-decoration: none;
    color: inherit;
}

.ultra-subsection {
    margin-left: 1rem;
}

.ultra-subsection li {
    margin-bottom: 0.25rem;
}

.ultra-subsection a {
    font-size: 0.85rem !important;
    color: oklch(24% .008 280) !important;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .jjc-mobile-toggle {
        display: flex;
        color: white;
        background: white;
    }

    .jjc-nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: #f8f9fa;
        padding: 80px 40px;
        transition: right 0.3s ease;
        z-index: 999;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .jjc-nav-menu.open {
        right: 0;
    }

    .jjc-nav-links {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }

    .jjc-nav-links li {
        margin: 0;
    }

    .jjc-nav-links a {
        font-size: 1.1rem;
        font-weight: 500;
    }

    /* Mobile mega dropdown */
    .ultra-dropdown {
        position: static;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 15px 0 0 20px;
        margin-top: 10px;
        min-width: auto;
        display: none;
        flex-direction: column;
        gap: 1.5rem;
        backdrop-filter: none;
    }

    .has-ultra-dropdown.active .ultra-dropdown {
        display: flex;
    }

    .ultra-column {
        margin-bottom: 1rem;
    }

    .ultra-column h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        border-bottom: 1px solid #ddd;
        padding-bottom: 0.5rem;
        text-align: center;
    }

    .ultra-section h5 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .ultra-subsection {
        margin-left: 0.75rem;
    }

    .jjc-contact-btn {
        align-self: flex-start;
        margin-top: 1rem;
    }

    /* Prevent body scroll when menu is open */
    body.jjc-menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    /* Hide desktop hover effects on mobile */
    .has-ultra-dropdown:hover .ultra-dropdown {
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px)translateX(-10vw);
    }
}
<style>
    .new-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: .3px;
    background: oklch(32% .15 126);
    z-index: 10000;
    transition: width 0.1s ease;
    filter: blur(1.8892px);
    }
    
    /* Navigation Styles */
    .jjc-nav {
    position: fixed;
    top: 0;
    left: 6vw;
    justify-self:
    center !important;
    align-self: center !important;
    width: 88vw;
    border-radius: 8px;
    box-shadow:
    oklch(50% .031 128 / .25) 0px 15px 15.3px -5.2px,
    oklch(80% .031 128) inset 0px 3px 7px -.9px,
    oklch(60% .031 128 /.4) 0px 3px 9px -4.9px,
    oklch(80% .031 128) inset 0px .2px 4.6px -.35px;
    margin: 28px 0 0 0;
    padding: 17px 1.5% 16.5px 1.5%;
    z-index: 1000;
    background: oklch(89.9% 0 0 / .95);
    transition: all 1.3s ease;
    opacity: 1;
    }
    
    .jjc-nav.scrolled {
    margin: 0;
    left: 0;
    width: 100vw;
    align-self: center !important;
    justify-self: center !important;
    background: oklch(99.8% 0.045 320 / .185);
    backdrop-filter: blur(1.4px);
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    opacity: 1;
    }
    
    .jjc-nav.scrolled .jjc-nav {
    text-shadow: .1px 1.1px 20px oklch(4% .1 132 / .91);
    }
    
    .jjc-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    }
    
    .jjc-logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
    text-decoration: none;
    color: oklch(40% .019 128);
    font-family: 'Bodoni Moda', serif;
    }
    
    .jjc-nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
    color: oklch(89% 0.01 130);
    text-shadow: .1px 1.1px 2px oklch(50% .1 132);
    font-family: 'Bodoni Moda', serif;
    }
    
    .jjc-nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    }
    
    .jjc-nav-links a {
    color: rgb(210, 236, 198);
    text-shadow: .01px .9535px 1.982px oklch(30% .1 132 / .5);
    text-decoration: none;
    font-size: 15.5px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    margin-left: 8px;
    margin-right: 8px;
    }
    
    .jjc-nav-links a:hover,
    .jjc-nav-links a.active {
    color: oklch(9% 0 0);
    }
    
    .jjc-contact-btn {
    background: oklch(0.58 0.025 290 / .94);
    color: #efffe6;
    box-shadow: 0 2.15px .93px -5125px oklch(0.358 0.1 304.83);
    padding: 7.5px 26.5px;
    margin-left:10px;
    margin-right:10px;
    border: 2.3px outset oklch(50% .045 299);
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Italianna' !important;
    font-size: 14.5px;
    text-shadow: none !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    }
    
    .jjc-contact-btn:hover {
    background: oklch(99% 0.0941 130 /.975);
    color: oklch(27% .05 290);
    border: double 2px oklch(80% 0.02 130);
    transform: translateY(1.82px) scale(.935);
    box-shadow: 0 5px 15px 3px oklch(80% 0.02 130 / 0.52);
    }
    
    /* Mobile Toggle */
    .jjc-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    background-color: rgb(81, 80, 85);
    
    height: 22px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    }
    .jjc-mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: black;
    transition: all 0.3s ease;
    transform-origin: center;
    }
    
    .jjc-mobile-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    }
    
    .jjc-mobile-toggle.open span:nth-child(2) {
    opacity: 0;
    }
    
    .jjc-mobile-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Mega Dropdown Styles */
    .has-ultra-dropdown {
    position: relative;
    }
    
    .ultra-dropdown {
    position: absolute;
    top: 100%;
    left: -18.95vw;
    display: flex;
    gap: 40px;
    padding: 14px 40px;
    min-width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    border-radius: 13px;
    background: oklch(0.91 0.04 119.37 / 0.985);
    transform: translateY(10px);
    box-shadow: 0 1.8px 12px -.85px oklch(0% 0 0 / 0.45);
    transition: all 0.3s ease;
    z-index: 100;
    }
    
    .has-ultra-dropdown:hover .ultra-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    }
    
    .ultra-column {
    flex: 1;
    }
    
    .ultra-column h4 {
    font-size: 15.25px;
    color: oklch(28% .008 290);
    /*text-shadow: .1px .1px 1.3px oklch(95% .008 290);*/
    margin-bottom: 1rem;
    font-weight: 600;
    }
    
    .ultra-column h4 a {
    text-decoration: none;
    color: inherit;
    }
    
    .ultra-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    }
    
    .ultra-column ul li {
    margin-bottom: 0.5rem;
    }
    
    .ultra-column ul a {
    font-size: 15px;
    color: oklch(95% .015 128);
    font-weight: 600;
    margin-bottom: 0.75rem;
    }
    
    .ultra-column ul a:hover {
    color: oklch(45% .065 290);
    padding-left: 0.5rem;
    }
    /* Subsection styling for residential */
    .ultra-section h5 {
    font-size: 16px;
    color: oklch(95% .015 128);
    /*text-shadow: .05px .05px 1.3px oklch(50% .02 128 / .3);*/
    font-weight: 600;
    margin-bottom: 0.75rem;
    }
    .ultra-section h5 a {
    text-decoration: none;
    color: inherit;
    }
    
    .ultra-subsection {
    margin-left: 1rem;
    }
    
    .ultra-subsection li {
    margin-bottom: 8px;
    }
    
    .ultra-subsection a {
    font-size: 14.5px;
    color: oklch(35% .015 280);
    }
    /* Mobile Styles */
    @media (max-width: 768px) {
    .jjc-mobile-toggle {
    display: flex;
    color: rgb(206, 227, 200);
    background: transparent;
    margin-right: 10px;
    }
    
    .jjc-nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    opacity: 0;
    z-index: -5;
    width: 100%;
    height: 100vh;
    background-color: oklch(50% .008 140 / .4);
    padding: 80px 40px;
    transition: right 0.3s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: -5px 0 1.5px rgba(0, 0, 0, 0.91);
    overflow-y: auto;
    }
    .jjc-nav-menu.scrolled {
    padding-left: 15px;
    padding-right:15px;
    }
    
    .jjc-nav-menu.open {
    right: 0;
    align-items: center;
    justify-content: center;
    justify-items: center;
    align-content: center;
    z-index: 99;
    opacity: 1;
    }
    
    .jjc-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    text-align: center;
    font-size: 20px;
    }
    
    .jjc-nav-links li {
    margin: 0;
    font-weight: 500;
    color: white;
    text-align: center;
    }
    
    .jjc-nav-links a {
    font-size: 16px;
    color: white;
    font-weight: 500;
    }
    
    /* Mobile mega dropdown */
    .ultra-dropdown {
    position: static;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 10px;
    min-width: auto;
    display: none;
    flex-direction: column;
    gap: 20px;
    backdrop-filter: none;
    padding: 14px 15px;
    transition: all 0.3s ease;
    }
    
    .has-ultra-dropdown.active .ultra-dropdown {
    display: flex;
    }
    
    .ultra-column {
    margin-bottom: 1rem;
    }
    
    .ultra-column h4 {
    font-size: 15px;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.5rem;
    text-align: center;
    color: oklch(90% .09 124) !important;
    }
    
    .ultra-section h5 {
    font-size: 14.85px;
    margin-bottom: 5px;
    text-align: center;
    }
    
    .ultra-subsection {
    margin-left: 0.75rem;
    }
    .ultra-subsection li a {
    font-size:14.125px;
    }
    
    .jjc-contact-btn {
    align-self: center;
    justify-self: center;
    margin-top: 1rem;
      position: absolute;
    top: 60%;
    left: 39.5%;
    }
    
    /* Prevent body scroll when menu is open */
    body.jjc-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    display: visible;
    }
    
    /* Hide desktop hover effects on mobile */
    .has-ultra-dropdown:active .ultra-dropdown {
    opacity: 1;
    transform: translateY(10px);
    }
}

  /* Footer */
  .ttc-footer {
    padding: 6rem 5% 3rem;
    background: var(--accent-dark);
    color: var(--primary-bg);
  }

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

  .ttc-footer-brand h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .ttc-footer-brand p {
    opacity: 0.8;
    margin-bottom: 1rem;
  }

  .ttc-footer-column h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
  }

  .ttc-footer-links {
    list-style: none;
  }

  .ttc-footer-links li {
    margin-bottom: 0.8rem;
  }

  .ttc-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }

  .ttc-footer-links a:hover {
    color: var(--accent-green-light);
  }

  .ttc-footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }

  .ttc-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
  }

  /* Magnetic button effect */
  .ttc-magnetic {
    position: relative;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  }

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

    .ttc-service-detail:nth-child(even) {
      direction: ltr;
    }

    .ttc-service-detail.tech-section {
      grid-template-columns: 1fr;
    }

    .ttc-testimonial-cta-wrapper {
      grid-template-columns: 1fr;
      gap: 4rem;
      text-align: center;
    }

    .ttc-testimonial-content,
    .ttc-cta-content {
      text-align: center;
    }

    .ttc-cta-buttons {
      justify-content: center;
    }

    .ttc-footer-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }

  @media (max-width: 768px) {
    .ttc-services-hero {
      height: 60vh;
    }

    .ttc-nav-links {
      display: none;
    }

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

    .ttc-stats-grid {
      grid-template-columns: 1fr;
    }

    .ttc-cta-buttons {
      flex-direction: column;
      align-items: center;
    }

    .ttc-cursor,
    .ttc-cursor-follower {
      display: none;
    }

    body {
      cursor: auto;
    }
  }

  /* Mobile Navigation Styles */
  :root {
    --primary-bg: #FFFFFF;
    --secondary-bg: #F8F7F4;
    --accent-gold: #D4AF37;
    --accent-dark: #1A1A2E;
    --accent-purple: #16213E;
    --text-dark: #0F0F0F;
    --text-medium: #4A4A4A;
    --text-light: #7A7A7A;
    --border-light: rgba(0, 0, 0, 0.08);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  }

  /* Animations */
  @keyframes slideInRight {
    0% {
      transform: translate3d(100px, 0, 0);
      opacity: 0;
    }
    100% {
      transform: translate3d(0, 0, 0);
      opacity: 1;
    }
  }

  @keyframes slideOutRight {
    0% {
      transform: translate3d(0, 0, 0);
    }
    100% {
      transform: translate3d(350px, 0, 0);
      visibility: hidden;
    }
  }

  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }