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

  :root {
    --primary-bg: #FFFFFF;
    --secondary-bg: #f7f8f5;
    --accent-sage: #a8baa3;
    --accent-sage-dark: #7a8b76;
    --accent-gold: #c5a47e;
    --accent-green-dark: #4a5c47;
    --accent-green-light: #c3d3bf;
    --accent-light: #e8ede7;
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #7A7A7A;
    --border-light: #E0E0E0;
    --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);
  }

  ::selection {
    background: var(--accent-sage-dark);
    color: var(--primary-bg);
  }

  ::-webkit-scrollbar {
    width: 8px;
  }

  ::-webkit-scrollbar-track {
    background: var(--primary-bg);
  }

  ::-webkit-scrollbar-thumb {
    background: var(--accent-sage);
    border-radius: 4px;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--primary-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
  }

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

  /* Hero Section */
  .hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 5% 80px;
    background: linear-gradient(135deg, var(--accent-sage) 0%, var(--secondary-bg) 50%, var(--accent-sage) 100%);
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(168, 186, 163, 0.1) 0%, transparent 50%);
  }

  .hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 1;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    color: var(--text-dark);
  }

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

  /* Section Styles */
  section {
    padding: 80px 5%;
  }

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

  .section-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--text-dark);
  }

  .section-header p {
    font-size: 1.2rem;
    color: var(--text-medium);
  }

  /* Services Grid */
  .core-services {
    background: var(--secondary-bg);
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .service-card {
    background: var(--primary-bg);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
  }

  .service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--accent-sage-dark);
  }

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

  .service-features {
    list-style: none;
    margin-bottom: 2rem;
  }

  .service-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-medium);
    position: relative;
    padding-left: 1.5rem;
  }

  .service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-sage);
    font-weight: bold;
  }

  .service-pricing {
    font-weight: 600;
    color: var(--accent-sage-dark);
    margin-top: 1.5rem;
  }

  /* Additional Services */
  .additional-services {
    background: var(--primary-bg);
  }

  .additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .additional-card {
    text-align: center;
    padding: 2rem;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    transition: all 0.3s ease;
  }

  .additional-card:hover {
    border-color: var(--accent-sage);
    background: var(--secondary-bg);
  }

  .additional-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-sage-dark);
  }

  /* Process Section */
  .process-section {
    background: var(--accent-light);
  }

  .process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .process-step {
    text-align: center;
    position: relative;
  }

  .step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-sage);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
  }

  .process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
  }

  .process-step p {
    color: var(--text-medium);
  }

  /* Service Cards */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
  }

  .service-card {
    background: var(--secondary-bg);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
  }

  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }

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

  .service-subtitle {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }

  .service-features {
    list-style: none;
    margin-bottom: 2rem;
  }

  .service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
    font-size: 0.95rem;
  }

  .service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-sage);
  }

  .service-pricing {
    font-weight: 600;
    color: var(--accent-sage-dark);
    font-size: 1.125rem;
  }

  /* Services Grid Section */
  .ttc-services-section {
    padding: 8rem 5%;
    background: var(--primary-bg);
    opacity: 0;
    transform: scale(0.9);
    margin-bottom:0;
  }

  .ttc-services-section.in-view {
    opacity: 1;
    transform: scale(1);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .ttc-section-header {
    text-align: center;
    margin-bottom: 5rem;
  }

  .ttc-section-title {
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--text-dark);
  }

  .ttc-section-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
  }

  .ttc-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 6rem;
  }

  .ttc-service-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: none;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
  }

  .ttc-service-card.animate {
    opacity: 1;
    transform: translateY(0);
  }

  .ttc-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: var(--gray-gradient-3);
  }

  .ttc-service-card:hover * {
    color: var(--primary-bg) !important;
  }

  .ttc-service-icon {
    font-size: 3rem;
    color: var(--accent-green-dark);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
  }

  .ttc-service-card:hover .ttc-service-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-bg);
  }

  .ttc-service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
  }

  .ttc-service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-medium);
    transition: all 0.3s ease;
  }
/* Detailed Services Section */
.ttc-detailed-services {
padding: 0rem 5% 8rem;
background: linear-gradient(rgba(113, 223, 111, 0.004), rgba(13, 23, 11, 0.2)),url('https://i.ibb.co/xt0S1S5C/joel-filipe-RFDP7-80v5-A-unsplash.png') no-repeat right 112%/67%;
}

@media screen and (max-width: 768px) {
.ttc-detailed-services {
  padding: 0rem 5% 8rem;
  background: url('https://i.ibb.co/xt0S1S5C/joel-filipe-RFDP7-80v5-A-unsplash.png') no-repeat right 108%/90%;

} 
}

  .ttc-service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 8rem;
    opacity: 0;
    transform: translateX(-50px);
  }

  .ttc-service-detail.animate {
    opacity: 1;
    transform: translateX(0);
    transition: all 1s ease;
  }

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

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

  .ttc-service-info h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: var(--text-dark);
  }

  .ttc-service-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 2rem;
  }

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

  .ttc-service-features li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
  }

  .ttc-service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green-dark);
    font-weight: bold;
  }

  .ttc-service-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-green-dark) 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
  }

  .ttc-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Technology Section with Building */
  .ttc-service-detail.tech-section {
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
  }

  .ttc-building-image {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
  }

  .ttc-building-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* Stats Section */
  .ttc-stats-section {
    padding: 8rem 5%;
    background: var(--accent-dark);
    color: var(--primary-bg);
    text-align: center;
  }

  .ttc-stats-header {
    margin-bottom: 4rem;
  }

  .ttc-stats-header h2 {
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 300;
    margin-bottom: 1rem;
  }

  .ttc-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
  }

  .ttc-stat-card {
    padding: 2rem;
    opacity: 0;
    transform: scale(0.8);
  }

  .ttc-stat-card.animate {
    opacity: 1;
    transform: scale(1);
    transition: all 0.6s ease;
  }

  .ttc-stat-number {
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
  }

  .ttc-stat-label {
    font-size: 1.1rem;
    opacity: 0.8;
  }

  /* Combined Testimonial & CTA Section */
  .ttc-testimonial-cta-section {
    padding: 8rem 5%;
    background: var(--gray-gradient-2);
    color: var(--primary-bg);
    position: relative;
    overflow: hidden;
  }
  
  .ttc-testimonial-cta-wrapper {
      display: grid
      ;
      grid-template-columns: 24vw 24vw;
      gap: 24vw;
      align-items: center;
      max-width: 100%;
      padding: 0;
      margin: 0 14vw;
      justify-content: center;
      justify-items: center;
  }
  .ttc-testimonial-content {
    text-align: left;
    position: relative;
    z-index: 1;
  }

  .ttc-testimonial-quote {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.4;
    color: var(--primary-bg);
    margin-bottom: 2rem;
    position: relative;
  }

  /* Small purple accent for quote mark */
  .ttc-testimonial-quote:before {
    content: '';
    position: absolute;
    top: -2rem;
    left: -3rem;
    font-size: 6rem;
    color: var(--accent-plum);
    opacity: 0.3;
  }

  .ttc-testimonial-author {
    font-size: 1.2rem;
    color: var(--accent-gold);
    font-weight: 500;
  }

  .ttc-cta-content {
    text-align: left;
  }

  .ttc-cta-content h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
  }

  .ttc-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
  }

  .ttc-cta-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .ttc-cta-primary {
    background: var(--primary-bg);
    color: var(--text-dark);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
  }

  .ttc-cta-primary:hover {
    transform: translateY(-2px);
    background: var(--accent-green-dark);
    color: var(--primary-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .ttc-cta-secondary {
    background: transparent;
    color: var(--primary-bg);
    padding: 1rem 2.5rem;
    border: 2px solid var(--primary-bg);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .ttc-cta-secondary:hover {
    background: var(--primary-bg);
    color: var(--text-dark);
    transform: translateY(-2px);
  }

  /* 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;
    }
  }
  /* NEW NAV */
  /* NEW NAV */
  /* 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: 16px;
    font-weight: 500;
    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: 16px;
      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);
    }
  }

  /* Additional Services */
  .additional-services {
    padding: 5rem 5%;
    background: var(--secondary-bg);
  }

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

  .additional-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
  }

  .additional-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }

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

  .additional-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
  }

  /* Process Section */
  .process-section {
    padding: 6rem 5%;
    background: white;
  }

  .process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
  }

  .process-step {
    text-align: center;
    padding: 2rem;
  }

  .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--accent-sage);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
  }

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

  .process-step p {
    color: var(--text-medium);
    font-size: 0.95rem;
  }

  /* CTA Section */
  .cta-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--accent-sage) 0%, var(--accent-sage-dark) 100%);
    color: white;
    text-align: center;
  }

  .cta-section h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
  }

  .cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-button {
    display: inline-block;
    background: white;
    color: var(--accent-sage-dark);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  }

  /* Progress Bar - Enhanced */
  .new-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-sage) 0%, var(--accent-gold) 50%, var(--accent-sage-dark) 100%);
    z-index: 10001;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(168, 186, 163, 0.5);
  }
  
  /* Navigation Styles */
  .jjc-nav {
    position: fixed;
    top: 28px;
    left: 6vw;
    width: 88vw;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 17px 2%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }
  
  .jjc-nav.scrolled {
    top: 0;
    left: 0;
    width: 100vw;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  }
  
  .jjc-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .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;
  }
  
  .jjc-nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }
  
  .jjc-nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    margin: 0 8px;
  }
  
  .jjc-nav-links a:hover,
  .jjc-nav-links a.active {
    color: var(--accent-sage);
  }
  
  .jjc-contact-btn {
    background: var(--accent-sage);
    color: white;
    padding: 8px 26px;
    margin-left: 10px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .jjc-contact-btn:hover {
    background: var(--accent-sage-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(168, 186, 163, 0.3);
  }
  
  /* Mobile Toggle */
  .jjc-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    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: -50px;
    display: flex;
    gap: 40px;
    padding: 2rem 3rem;
    min-width: 700px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    border-radius: 12px;
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 100;
    margin-top: 15px;
  }
  
  .has-ultra-dropdown:hover .ultra-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .has-ultra-dropdown:hover .ultra-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .ultra-column {
    flex: 1;
  }
  
  .ultra-column h4 {
    font-size: 16px;
    color: var(--accent-sage-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
  }
  
  .ultra-column h4 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
  }
  
  .ultra-column h4 a:hover {
    color: var(--accent-sage);
  }
  
  .ultra-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .ultra-column ul li {
    margin-bottom: 0.5rem;
  }
  
  .ultra-column ul a {
    font-size: 14px;
    color: #666;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.25rem 0;
    margin-bottom: 0.75rem;
  }
  
  .ultra-column ul a:hover {
    color: var(--accent-sage);
    padding-left: 0.5rem;
  }
  
  /* Subsection styling */
  .ultra-section {
    margin-bottom: 1.5rem;
  }
  
  .ultra-section h5 {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.75rem;
  }
  
  .ultra-section h5 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
  }
  
  .ultra-section h5 a:hover {
    color: var(--accent-sage);
  }
  
  .ultra-subsection {
    margin-left: 1rem;
  }
  
  .ultra-subsection a {
    font-size: 13px !important;
    color: #666 !important;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .services-grid,
    .additional-grid,
    .process-grid {
      grid-template-columns: 1fr;
    }
    
    .hero {
      padding: 100px 5% 60px;
    }
    
    .jjc-nav-links {
      display: none;
    }
    
    .jjc-mobile-toggle {
      display: flex;
    }
    
    .jjc-nav {
      left: 0;
      width: 100%;
      margin: 0;
      border-radius: 0;
      padding: 1rem;
    }
    
    .jjc-nav-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100vh;
      background-color: white;
      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 {
      flex-direction: column;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }
    
    .ultra-dropdown {
      position: static;
      transform: none;
      box-shadow: none;
      background: var(--secondary-bg);
      padding: 1rem;
      margin: 1rem 0;
      opacity: 0;
      max-height: 0;
      overflow: hidden;
      visibility: hidden;
      transition: all 0.3s ease;
    }
    
    .has-ultra-dropdown.active .ultra-dropdown {
      opacity: 1;
      visibility: visible;
      max-height: 1000px;
    }
    
    body.menu-open {
      overflow: hidden;
    }
  }
