 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
:root {
  /* Converted to oklch colors */
  --primary-bg: oklch(100% 0 0); /* White */
  --secondary-bg: oklch(97% 0.005 120); /* Off-white */
  --accent-sage: oklch(87.5% 0.02 147); /* #D5FDC3 converted */
  --accent-plum: oklch(52% 0.02 330); /* #8271B1 converted */
  --text-black: oklch(5% 0 0); /* Black */
  --text-coal: oklch(25% 0); /* Matte coal gray */
  --text-medium: oklch(45% 0);
  --text-light: oklch(65% 0);
  --border-light: oklch(90% 0);

  /* Gradients */
  --gradient-dark: Linear-gradient(135deg, oklch(15% 0 0) 0%, oklch(6% 0 0) 100%);
  --gradient-sage: Linear-gradient(135deg, oklch(87.5% 0.02 147) 0%, oklch(82% 0.025 147) 100%);
  --gradient-plum: Linear-gradient(135deg, oklch(52% 0.02 330) 0%, oklch(45% 0.025 330) 100%);
}

    ::selection {
      background: var(--accent-sage);
      color: var(--text-black);
    }

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

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

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

    html {
      scroll-behavior: smooth;
    
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Playfair Display', serif;
      line-height: 1.2;
    }
    body {
      /* font-family controlled globally in /assets/css/main.css */
      background: var(--primary-bg);
      color: var(--text-black);
      overflow-x: hidden;
      cursor: none;
      line-height: 1.4;
      -webkit-font-smoothing: antialiased;
    }

    /* Custom Cursor */
    .ttc-cursor {
      width: 20px;
      height: 20px;
      background: var(--accent-sage);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 10000;
      mix-blend-mode: difference;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .ttc-cursor-follower {
      width: 40px;
      height: 40px;
      border: 2px solid var(--accent-plum);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 9999;
      opacity: 0.5;
      mix-blend-mode: difference;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .ttc-contact-btn:hover {
      background: var(--gradient-sage);
      color: var(--text-black);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px oklch(0% 0 0 / 0.2);
    }

    /* Loader */
    .ttc-loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--primary-bg);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 10002;
    }

    .ttc-loader-number {
      font-size: clamp(4rem, 8vw, 6rem);
      font-weight: 300;
      color: var(--text-black);
      margin-bottom: 1rem;
    }

    .ttc-loader-text {
      font-size: 1.2rem;
      font-weight: 900;
      color: var(--text-medium);
      letter-spacing: 0.1em;
    }

    /* Progress Bar */
    .ttc-progress-bar {
      position: fixed;
      top: 0;
      left: 0;
      width: 0%;
      height: 3px;
      background: var(--gradient-sage);
      z-index: 10001;
      transition: width 0.3s ease;
    }

    /* Asset Management Hero */
    .ttc-asset-hero {
      height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: linear-gradient(oklch(0% 0 0 / 0.03),oklch(0% 0 0 / 0.7), oklch(0% 0 0 / 0.05)),
                  url('https://i.ibb.co/84B6tRhB/commercial-real-estate-buildings-1.webp') repeat center bottom/cover;
      opacity: 0;
      transform: scale(0.95);
    }

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

    .ttc-hero-wrapper {
      width: 100%;
      padding: 0 15% 0 3%;
      display:flex;
      flex-direction: row;
      width: 60%;
      gap: 4rem;
      align-items: center;
      text-align:left;
    }
@media screen and (max-width: 900px) {.ttc-hero-wrapper {justify-self:center;
  align-self:center; align-items:center;justify-items:center;align-content: center;text-align:center;width: 90%; padding: 0 1.75% 0 1.75%;}}
    
    .ttc-hero-content h1 {
      font-size: clamp(4.15rem, 6.7vw, 6rem);
      font-weight: 300;
      line-height: 1.1;
      color: var(--primary-bg);
      margin-bottom: 2rem;
    }

    .ttc-hero-content h1 span {
      color: var(--accent-sage);
      font-weight: 400;
    }

    .ttc-hero-content p {
      font-size: clamp(1.15rem, 1.55vw, 1.6rem);
      color: oklch(90% 0 0);
      margin-bottom: 3rem;
      line-height: 1.6;
    }

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

    .ttc-hero-stat {
      border-left: 3px solid var(--accent-sage);
      padding-left: 1.5rem;
    }

    .ttc-hero-stat-number {
      font-size: 2.5rem;
      font-weight: 600;
      color: var(--accent-sage);
    }

    .ttc-hero-stat-label {
      font-size: 0.9rem;
      color: oklch(80% 0 0);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    /* Value Proposition Section */
    .ttc-value-section {
      max-width: 100%;
      padding: 8rem 5%;
      background: linear-gradient(140deg, oklch(82% .018 164) 0%, oklch(80% .018 144) 33%, oklch(68% .0031 280) 43.1%, oklch(48% .0031 280) 63.1%, oklch(18% .01 280) 100%);
    }
  
    .ttc-value-wrapper {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 6rem;
      align-items: start;
    }

    .ttc-value-header {
      position: sticky;
      top: 8rem;
    }

    .ttc-value-header h2 {
      font-size: clamp(2.5rem, 4vw, 3.5rem);
      font-weight: 300;
      margin-bottom: 1.5rem;
      color: var(--text-black);
    }

    .ttc-value-header p {
      font-size: 1.1rem;
      color: var(--text-medium);
      line-height: 1.6;
    }

    .ttc-value-cards {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .ttc-value-card {
      background: #f8f9fa;
      border: 1px solid #e9ecef;
      border-radius: 12px;
      padding: 2rem 1.5rem;
      transition: all 0.3s ease;
      opacity: 0;
      transform: translateY(30px);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    .ttc-value-card.animate {
      opacity: 1;
      transform: translateY(0);
    }

    .ttc-value-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
      border-color: var(--accent-sage);
    }

    .ttc-value-icon {
      font-size: 2.25rem;
      color: var(--accent-plum);
      margin-bottom: 1.15rem;
    }

    .ttc-value-card h3 {
      font-size: 1.4rem;
      margin-bottom: 1rem;
      color: var(--text-black);
    }

    .ttc-value-card p {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--text-medium);
    }

    .ttc-property-type-one {
    color: oklch(9% 0 0);
    }     
    /* Horizontal Scroll Section */
 
    .ttc-property-types {
      background:oklch(88% .01 124);
      color: oklch(99.8% .02 280);
      font-family: 'Cormorant Upright';
      font-size: 26px;
      overflow: hidden;
      position: relative;
    }

    .ttc-property-header {
      padding: 6rem 5% 4rem;
      text-align: center;
    }

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

    .ttc-property-header p {
      font-size: 1.2rem;
      opacity: 0.8;
      max-width: 800px;
      margin: 0 auto;
    }

    .ttc-horizontal-wrapper {
      display: flex;
      height: 100vh;
      position: relative;
    }

    .ttc-property-panel {
      flex: 0 0 100vw;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .ttc-property-panel:nth-child(1) {
      background: linear-gradient(oklch(0% 0 0 / 0.16), oklch(0% 0 0 / 0.8)),
                  url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?q=80&w=2070&auto=format&fit=crop') center/cover;
    }

    .ttc-property-panel:nth-child(2) {
      background: linear-gradient(oklch(0% 0 0 / 0.6), oklch(0% 0 0 / 0.8)),
                  url('https://images.unsplash.com/photo-1577495508048-b635879837f1?q=80&w=2074&auto=format&fit=crop') center/cover;
    }

    .ttc-property-panel:nth-child(3) {
      background: linear-gradient(oklch(0% 0 0 / 0.6), oklch(0% 0 0 / 0.8)),
                  url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?q=80&w=2070&auto=format&fit=crop') center/cover;
    }

    .ttc-panel-content {
      text-align: center;
      max-width: 800px;
      padding: 0 5%;
    }
    .ttc-panel-content > p {font-size: 16px;}
    .ttc-panel-number {
      font-size: 8rem;
      font-weight: 700;
      color: var(--accent-sage);
      opacity: 0.3;
      position: absolute;
      top: 3rem;
      left: 5%;
    }

    .ttc-panel-content h3 {
      font-size: clamp(3rem, 5vw, 4rem);
      font-weight: 300;
      margin-bottom: 2rem;
      color: var(--primary-bg);
    }

    .ttc-panel-content p {
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 3rem;
      opacity: 0.9;
    }

    .ttc-panel-features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      text-align: left;
    }

    .ttc-panel-feature {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .ttc-panel-feature i {
      color: var(--accent-sage);
      font-size: 1.2rem;
    }

    /* Process Section */
    .ttc-process-section {
      padding: 8rem 5%;
      background: var(--secondary-bg);
    }

    .ttc-process-header {
      text-align: center;
      margin-bottom: 6rem;
    }

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

    .ttc-process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      position: relative;
    }

    .ttc-process-line {
      position: absolute;
      top: 60px;
      left: 12.5%;
      right: 12.5%;
      height: 2px;
      background: var(--accent-sage);
      z-index: 0;
    }

    .ttc-process-step {
      text-align: center;
      position: relative;
      z-index: 1;
      opacity: 0;
      transform: translateY(50px);
    }

    .ttc-process-step.animate {
      opacity: 1;
      transform: translateY(0);
    }

    .ttc-process-number {
      width: 120px;
      height: 120px;
      background: var(--gradient-plum);
      color: var(--primary-bg);
      font-size: 3rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      margin: 0 auto 2rem;
      transition: all 0.3s ease;
    }

    .ttc-process-step:hover .ttc-process-number {
      transform: scale(1.1) rotate(5deg);
      background: var(--gradient-sage);
      color: var(--text-black);
    }

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

    .ttc-process-step p {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--text-medium);
    }

    /* Technology Section */
    .ttc-tech-section {
      padding: 8rem 5%;
      background: var(--primary-bg);
      position: relative;
      overflow: hidden;
    }

    .ttc-tech-wrapper {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 6rem;
      align-items: center;
    }

    .ttc-tech-content h2 {
      font-size: clamp(3.75rem, 4.5vw, 4.5rem);
      font-weight: 300;
      margin-bottom: 2rem;
      color: var(--text-black);
    }

    .ttc-tech-content p {
      font-size: 1.3rem;
      line-height: 1.8;
      color: var(--text-medium);
      margin-bottom: 3rem;
    }

    .ttc-tech-features {
      display: grid;
      gap: 2rem;
    }

    .ttc-tech-feature {
      display: flex;
      gap: 1.5rem;
      align-items: start;
    }

    .ttc-tech-icon {
      width: 60px;
      height: 60px;
      background: var(--gradient-sage);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 15px;
      flex-shrink: 0;
    }

    .ttc-tech-icon i {
      font-size: 1.5rem;
      color: var(--text-black);
    }

    .ttc-tech-feature h4 {
      font-size: 1.3rem;
      margin-bottom: 0.5rem;
      color: var(--text-black);
    }

    .ttc-tech-feature p {
      font-size: 1rem;
      color: var(--text-medium);
      line-height: 1.6;
    }

    .ttc-tech-visual {
      position: relative;
      height: 600px;
      background: var(--gradient-dark);
      border-radius: 30px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ttc-tech-visual img {
      width: 80%;
      height: auto;
      filter: brightness(1.2);
    }

    /* CTA Section */
    .ttc-cta-section {
      padding: 8rem 5%;
      background: linear-gradient(135deg, var(--text-black) 0%, var(--text-coal) 100%);
      color: var(--primary-bg);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .ttc-cta-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 80%;
      height: 200%;
      background: radial-gradient(circle, var(--accent-sage) 0%, transparent 70%);
      opacity: 0.1;
      pointer-events: none;
    }

    .ttc-cta-content {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .ttc-cta-content h2 {
      font-size: clamp(3rem, 5vw, 4rem);
      font-weight: 300;
      margin-bottom: 2rem;
    }

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

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

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

    .ttc-btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px oklch(0% 0 0 / 0.3);
    }

    .ttc-btn-secondary {
      background: transparent;
      color: var(--primary-bg);
      padding: 1rem 3rem;
      border: 2px solid var(--accent-sage);
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: none;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .ttc-btn-secondary:hover {
      background: var(--accent-sage);
      color: var(--text-black);
      transform: translateY(-3px);
    }

    /* Footer */
    .ttc-footer {
      padding: 6rem 5% 3rem;
      background: var(--text-black);
      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;
    }

    .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-sage);
    }

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

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

    .ttc-footer-links a {
      color: oklch(100% 0 0 / 0.7);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.3s ease;
    }

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

    .ttc-footer-bottom {
      padding-top: 3rem;
      border-top: 1px solid oklch(100% 0 0 / 0.1);
      text-align: center;
    }

    .ttc-copyright {
      color: oklch(100% 0 0 / 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-hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .ttc-value-header {
        position: static;
        margin-bottom: 3rem;
        text-align: center;
      }

      .ttc-value-wrapper {
        display: flex;
        flex-direction: column;
        gap: 3rem;
      }

      .ttc-value-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .ttc-value-card {
        padding: 2rem 1.5rem;
      }

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

      .ttc-process-line {
        display: none;
      }

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

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

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

      .ttc-horizontal-wrapper {
        flex-direction: column;
        height: auto;
      }

      .ttc-property-panel {
        flex: 1 1 auto;
        height: 100vh;
      }

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

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

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

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

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

      body {
        cursor: auto;
      }
    }
         /* 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;
      justify-self:
        center;
      align-self: center;
      width: 88vw;
      border-radius: 8px;
      box-shadow: 
        rgba(25, 25, 19, 0.0825) 0px 15px 15.3px -5.2px,
        rgba(110, 110, 110, 0.7) inset 0px 3px 7px -.9px,
        rgba(120, 120, 124, 0.85) 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;
      width: 100vw;
      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 11.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(29% .009 128);
    }

    .jjc-nav-menu {
      display: flex;
      gap: 3rem;
      align-items: center;
       color: oklch(89% 0.01 130);
      text-shadow: .1px 1.1px 2px oklch(40% .1 132);

    }
   
    .jjc-nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }
    .jjc-nav-links a {
      color: black;
      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);
      }
    }

      /* Mobile Styles */
      @media (max-width: 768px) {
        .ttc-mobile-toggle {
          display: flex;
          color:white;
          background:white;
        }
  
        .ttc-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;
        }
  
        .ttc-nav-menu.open {
          right: 0;
        }
  
        .ttc-nav-links {
          display: flex;
          flex-direction: column;
          gap: 20px;
          margin-bottom: 40px;
        }
  
        .ttc-nav-links li {
          margin: 0;
        }
  
        .ttc-nav-links a {
          font-size: 1.1rem;
          font-weight: 500;
        }
  
        /* Mobile mega dropdown */
        .mega-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-mega-dropdown.active .mega-dropdown {
          display: flex;
        }
  
        .mega-column {
          margin-bottom: 1rem;
        }
  
        .mega-column h4 {
          font-size: 1rem;
          margin-bottom: 0.75rem;
          border-bottom: 1px solid #ddd;
          padding-bottom: 0.5rem;
          text-align: center;
        }
  
        .mega-section h5 {
          font-size: 0.95rem;
          margin-bottom: 0.5rem;
          text-align: center;
        }
  
        .mega-subsection {
          margin-left: 0.75rem;
        }
  
        .ttc-contact-btn {
          align-self: flex-start;
          margin-top: 1rem;
        }
  
        /* Prevent body scroll when menu is open */
        body.ttc-menu-open {
          overflow: hidden;
          position: fixed;
          width: 100%;
        }
  
        /* Hide desktop hover effects on mobile */
        .has-mega-dropdown:hover .mega-dropdown {
          opacity: 0;
          visibility: hidden;
          transform: translateY(10px)translateX(-10vw);
        }
      }
