:root {
    --primary: #FFD700;  /* Gold/Yellow */
    --primary-dark: #FFC700;
    --black: #0F0F0F;    /* Deep black */
    --gray-900: #1A1A1A;
    --gray-800: #2A2A2A;
    --bg: #FFFFFF;       /* White */
    --text: #0F0F0F;     /* Black text */
    --text-light: #4A4A4A;
    --muted: #6B6B6B;
    --border: #E0E0E0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
    --shadow: 0 4px 16px rgba(0,0,0,.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
    --radius: 16px;
    --radius-sm: 12px;
    --container: 1280px;
  
    /* spacing scale */
    --s-1: .25rem;
    --s-2: .5rem;
    --s-3: .75rem;
    --s-4: 1rem;
    --s-5: 1.5rem;
    --s-6: 2rem;
    --s-7: 3rem;
    --s-8: 4.5rem;
    --s-9: 6rem;
  }
  
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  /* Typography */
  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
  }
  
  h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
  h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
  h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
  h4 { font-size: 1.25rem; }
  
  p { margin: 0; }
  
  /* Utilities */
  .container { 
    max-width: var(--container); 
    margin: 0 auto; 
    padding: 0 var(--s-5); 
  }
  
  .muted { color: var(--muted); }
  .small { font-size: .9rem; }
  .center { text-align: center; }
  
  /* Buttons */
  .btn {
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    padding: 1rem 1.75rem;
    background: var(--black);
    color: var(--bg);
    border-radius: 999px;
    border: 2px solid var(--black);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all .2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
    cursor: pointer;
    white-space: nowrap;
  }
  
  .btn:hover { 
    transform: translateY(-2px); 
    box-shadow: var(--shadow-lg);
    background: var(--gray-900);
    color: var(--primary);
  }
  
  .btn:active { transform: translateY(0); }
  
  .btn-outline {
    background: var(--black);
    color: var(--bg);
    border-color: var(--black);
  }
  
  .btn-outline:hover {
    background: var(--gray-900);
    color: var(--primary);
  }
  
  .btn-lg { padding: 1.15rem 2rem; font-size: 1.05rem; }
  .btn-sm { padding: .7rem 1.25rem; font-size: .9rem; }
  
  /* Header / Nav */
  .site-header {
    position: sticky; 
    top: 0; 
    z-index: 1000;
    background: rgba(255,255,255,.95);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--border);
  }
  
  .header-inner {
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    height: 72px;
  }
  
  .brand { 
    display: inline-flex; 
    align-items: center; 
    gap: .75rem; 
    text-decoration: none; 
    color: var(--black); 
    font-weight: 800; 
    font-size: 1.25rem; 
    letter-spacing: -.02em; 
  }
  
  .brand-box { 
    width: 36px; 
    height: 36px; 
    border-radius: 10px; 
    background: var(--primary); 
    display: inline-grid; 
    place-items: center; 
    color: var(--black); 
    font-weight: 900; 
    font-size: 1.25rem;
  }
  
  .brand-text { letter-spacing: -.01em; }
  
  .nav { 
    display: flex; 
    gap: 2rem; 
    align-items: center; 
  }
  
  .nav a { 
    text-decoration: none; 
    color: var(--text); 
    font-weight: 600;
    font-size: .95rem;
    transition: color .2s ease;
  }
  
  .nav a:hover { color: var(--primary-dark); }
  .nav .btn { 
    margin-left: .5rem; 
    color: var(--bg);
  }
  .nav .btn:hover { 
    color: var(--primary);
  }
  
  .nav-toggle {
    display: none;
    flex-direction: column;
    width: 44px; 
    height: 36px; 
    border: 0; 
    background: transparent; 
    cursor: pointer;
    justify-content: center;
    gap: 6px;
  }
  
  .nav-toggle-bar { 
    display: block; 
    height: 2px; 
    background: var(--black); 
    border-radius: 2px;
    transition: all .3s ease;
  }
  
  /* Mobile Nav */
  @media (max-width: 900px) {
    .nav { 
      position: fixed; 
      inset: 72px 0 auto 0; 
      height: 0; 
      overflow: hidden; 
      background: rgba(255,255,255,.98); 
      border-bottom: 1px solid var(--border); 
      padding: 0 var(--s-5); 
      padding-top: 2px !important;
      gap: 1rem; 
      flex-direction: column; 
      align-items: flex-start; 
      transition: height .3s ease, padding .3s ease; 
    }
    
    .nav[aria-hidden="false"] { 
      height: 270px !important; 
      padding-top: var(--s-5); 
      padding-bottom: var(--s-5);
    }
    
    .nav-toggle { display: flex; }

    .nav-list-item {
      margin-left: 20px;
    }
  }
  
  /* Hero */
  .hero { 
    position: relative; 
    overflow: clip;
    min-height: 600px;
    display: flex;
    align-items: center;
  }

  /* Page Hero (for interior pages) */
  .page-hero {
    background: var(--black);
    color: white;
    padding: var(--s-8) 0;
    text-align: center;
  }

  .page-hero h1 {
    color: white;
    margin-bottom: var(--s-4);
  }

  .page-hero .lead {
    margin: 0 auto;
    max-width: 800px;
    color: rgba(255, 255, 255, 0.85);
  }
  
  .hero-media { 
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  
  .hero-media img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block; 
  }
  
  .hero-overlay {
    position: absolute; 
    inset: 0;
    background: linear-gradient(135deg, rgba(15,15,15,.75) 0%, rgba(15,15,15,.65) 50%, rgba(15,15,15,.5) 100%);
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    display: grid; 
    place-content: center; 
    text-align: center; 
    color: white; 
    padding: var(--s-8) var(--s-5);
    min-height: 600px;
  }
  
  .hero h1 { 
    margin: 0 0 var(--s-5); 
    font-weight: 800; 
    color: white;
    letter-spacing: -.02em;
  }
  
  .lead { 
    font-size: clamp(1.05rem, 1.5vw, 1.25rem); 
    margin: 0 auto var(--s-6); 
    max-width: 820px; 
    opacity: .95;
    line-height: 1.6;
  }
  
  .hero-cta { 
    display: flex; 
    gap: 1rem; 
    justify-content: center; 
    flex-wrap: wrap; 
  }
  
  .pill-bar { 
    margin-top: var(--s-6); 
    display: flex; 
    gap: .75rem; 
    justify-content: center; 
    flex-wrap: wrap; 
  }
  
  .pill { 
    background: var(--primary); 
    color: var(--black); 
    border-radius: 999px; 
    padding: .5rem 1rem; 
    font-weight: 700;
    font-size: .9rem;
  }
  
  /* Stats */
  .stats { 
    background: var(--black); 
    color: #fff; 
    padding: var(--s-8) 0;
  }
  
  .stats .section-head.light h2 { color: white; }
  .stats .section-head.light p { color: rgba(255,255,255,.7); }
  
  .stats-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
    gap: var(--s-6); 
    margin-top: var(--s-6);
  }
  
  .stat { 
    text-align: center; 
    padding: var(--s-4);
  }
  
  .stat-icon { 
    font-size: 2.5rem; 
    margin-bottom: var(--s-3); 
  }
  
  .stat-label { 
    color: rgba(255,255,255,.85); 
    font-size: 1rem;
    line-height: 1.5;
  }

  .img-wrap {
    display: inline-block;      /* shrink to image size, easy to center later */
    position: relative;
    left: -15px;
  }

  .img-base,
  .img-top {
    display: block;
    /* max-width: 100%;
    height: auto; */
    width: 64px;
    height: 64px;
  }

  .img-top {
    position: absolute;
    inset: 0;                   /* fill the same box as base */
    transform: translate(75%, -3%); /* overlap by percentages, responsive */
    width: 50px !important;
    height: 50px !important;
  }


  
  /* Sections */
  .section { 
    padding: var(--s-9) 0; 
  }
  
  .section-alt { 
    background: #FAFAFA; 
    border-top: 1px solid var(--border); 
    border-bottom: 1px solid var(--border); 
  }
  
  .section-head { 
    margin-bottom: var(--s-7); 
  }
  
  .section-head h2 { 
    margin: 0 0 var(--s-3); 
  }
  
  .section-head p { 
    margin: 0; 
    font-size: 1.1rem;
    max-width: 800px;
  }
  
  .section-head.center p {
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Grid */
  .grid { 
    display: grid; 
    gap: var(--s-5); 
  }
  
  /* Solutions Grid */
  .solutions-grid { 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: var(--s-6);
  }
  
  .solution-card { 
    background: var(--bg); 
    border: 1px solid var(--border); 
    border-radius: var(--radius); 
    padding: var(--s-6); 
    box-shadow: var(--shadow-sm);
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
  }
  
  .solution-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
  }
  
  .solution-icon { 
    font-size: 3rem; 
    margin-bottom: var(--s-4); 
  }
  
  .solution-card h3 { 
    margin-bottom: var(--s-3); 
    font-size: 1.5rem;
  }
  
  .solution-card p {
    color: var(--text-light);
    line-height: 1.7;
    flex-grow: 1;
  }
  
  .solution-card .btn {
    margin-top: var(--s-4);
    align-self: flex-start;
  }
  
  /* Crane Types */
  .crane-types { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
    gap: var(--s-5); 
  }
  
  .crane-type { 
    background: var(--bg);
    border: 2px solid var(--border); 
    border-radius: var(--radius-sm); 
    padding: var(--s-5); 
    text-align: center; 
    box-shadow: var(--shadow-sm);
    transition: all .3s ease;
  }
  
  .crane-type:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
  }
  
  .crane-type-icon { 
    font-size: 3rem; 
    margin-bottom: var(--s-3); 
  }
  
  .crane-type h3 { 
    font-size: 1.15rem; 
    margin-bottom: var(--s-2); 
  }
  
  .crane-type p { 
    color: var(--muted); 
    font-size: .9rem; 
  }
  
  /* Products Tabs */
  .products-nav { 
    display: flex; 
    gap: 1rem; 
    justify-content: center; 
    margin-bottom: var(--s-7);
    flex-wrap: wrap;
  }
  
  .product-tab { 
    padding: .75rem 1.5rem; 
    background: transparent; 
    border: 2px solid var(--border); 
    border-radius: 999px; 
    font-weight: 600; 
    cursor: pointer; 
    transition: all .2s ease;
    font-size: 1rem;
  }
  
  .product-tab:hover { 
    border-color: var(--black); 
  }
  
  .product-tab.active { 
    background: var(--black); 
    color: var(--bg); 
    border-color: var(--black); 
  }
  
  .product-content { 
    display: none; 
  }
  
  .product-content.active { 
    display: block; 
  }
  
  /* Feature Grid */
  .feature-grid { 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: var(--s-6);
  }
  
  .feature-card { 
    background: var(--bg); 
    border: 1px solid var(--border); 
    border-radius: var(--radius); 
    padding: var(--s-6); 
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
  }
  
  .feature-number { 
    position: absolute;
    top: -10px;
    right: var(--s-5);
    font-size: 5rem; 
    font-weight: 900; 
    color: var(--primary); 
    opacity: .15;
    line-height: 1;
  }
  
  .feature-card h3 { 
    margin-bottom: var(--s-4); 
    position: relative;
    z-index: 1;
  }
  
  .feature-list { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
  }
  
  .feature-list li { 
    padding-left: 1.75rem; 
    margin-bottom: var(--s-3); 
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
  }
  
  .feature-list li:before { 
    content: '✓'; 
    position: absolute; 
    left: 0; 
    color: var(--primary); 
    font-weight: 900;
    font-size: 1.1rem;
  }
  
  /* Spare Parts */
  .spare-parts-intro { 
    text-align: center; 
    max-width: 800px; 
    margin: 0 auto var(--s-7); 
  }
  
  .spare-parts-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
  }
  
  .spare-parts-grid { 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: var(--s-5);
    margin-bottom: var(--s-6);
  }
  
  .spare-part-card { 
    background: var(--bg); 
    border: 1px solid var(--border); 
    border-radius: var(--radius-sm); 
    padding: var(--s-5); 
    box-shadow: var(--shadow-sm);
  }
  
  .spare-part-card h3 { 
    margin-bottom: var(--s-4); 
    font-size: 1.25rem;
    padding-bottom: var(--s-3);
    border-bottom: 2px solid var(--primary);
  }
  
  .spare-part-card ul { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
  }
  
  .spare-part-card li { 
    padding: var(--s-2) 0; 
    color: var(--text-light);
    line-height: 1.6;
  }
  
  .spare-parts-info { 
    margin-top: var(--s-6); 
  }
  
  .info-box { 
    background: var(--primary); 
    border-radius: var(--radius); 
    padding: var(--s-6); 
    max-width: 700px; 
    margin: 0 auto;
  }
  
  .info-box h4 { 
    margin-bottom: var(--s-4); 
    font-size: 1.35rem;
  }
  
  .info-box ul { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
  }
  
  .info-box li { 
    padding: var(--s-2) 0 var(--s-2) 1.75rem; 
    position: relative;
    line-height: 1.6;
  }
  
  .info-box li:before { 
    content: '→'; 
    position: absolute; 
    left: 0; 
    font-weight: 900;
  }
  
  /* Installation */
  .installation-service h3 { 
    text-align: center; 
    margin-bottom: var(--s-6); 
    font-size: 2rem;
  }
  
  .installation-grid { 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: var(--s-5);
  }
  
  .installation-item { 
    text-align: center; 
    padding: var(--s-5); 
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
  }
  
  .install-icon { 
    font-size: 2.5rem; 
    margin-bottom: var(--s-3); 
  }
  
  .installation-item p {
    color: var(--text-light);
    line-height: 1.6;
  }
  
  /* Services */
  .service-highlight { 
    background: var(--bg); 
    border: 2px solid var(--primary); 
    border-radius: var(--radius); 
    padding: var(--s-7); 
    margin-bottom: var(--s-7);
    position: relative;
    box-shadow: var(--shadow);
  }
  
  .service-badge { 
    position: absolute; 
    top: -14px; 
    left: 50%; 
    transform: translateX(-50%); 
    background: var(--primary); 
    color: var(--black); 
    padding: .4rem 1.25rem; 
    border-radius: 999px; 
    font-weight: 700;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .05em;
  }
  
  .service-highlight h3 { 
    text-align: center; 
    margin-bottom: var(--s-3); 
    font-size: 2rem;
  }
  
  .service-tagline { 
    text-align: center; 
    color: var(--muted); 
    margin-bottom: var(--s-6);
    font-size: 1.1rem;
  }
  
  .amc-grid { 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: var(--s-5);
    margin-bottom: var(--s-6);
  }
  
  .amc-feature { 
    background: #FAFAFA; 
    border-radius: var(--radius-sm); 
    padding: var(--s-5); 
  }
  
  .amc-feature h4 { 
    margin-bottom: var(--s-4); 
    color: var(--black);
    font-size: 1.15rem;
  }
  
  .amc-feature ul { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
  }
  
  .amc-feature li { 
    padding: var(--s-2) 0; 
    color: var(--text-light);
    font-size: .95rem;
    line-height: 1.6;
  }
  
  .amc-benefits { 
    background: var(--gray-900); 
    color: white; 
    border-radius: var(--radius-sm); 
    padding: var(--s-6); 
  }
  
  .amc-benefits h4 { 
    color: white; 
    margin-bottom: var(--s-5); 
    text-align: center;
    font-size: 1.35rem;
  }
  
  .benefits-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
    gap: var(--s-4);
  }
  
  .benefit-item { 
    padding: var(--s-4); 
    background: rgba(255,255,255,.05); 
    border-radius: var(--radius-sm);
    font-size: .95rem;
    line-height: 1.6;
  }
  
  /* Service Section */
  .service-section { 
    background: var(--bg); 
    border: 1px solid var(--border); 
    border-radius: var(--radius); 
    padding: var(--s-7); 
    margin-bottom: var(--s-6);
    box-shadow: var(--shadow-sm);
  }
  
  .service-section h3 { 
    margin-bottom: var(--s-4); 
    font-size: 1.75rem;
  }
  
  .service-section > p {
    color: var(--text-light);
    margin-bottom: var(--s-6);
    font-size: 1.05rem;
    line-height: 1.7;
  }
  
  /* Process Steps */
  .process-steps { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); 
    gap: var(--s-5); 
    margin-bottom: var(--s-6);
  }
  
  .process-step { 
    text-align: center; 
    padding: var(--s-4); 
  }
  
  .step-number { 
    width: 50px; 
    height: 50px; 
    background: var(--primary); 
    color: var(--black); 
    border-radius: 50%; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: 900; 
    font-size: 1.25rem; 
    margin-bottom: var(--s-3); 
  }
  
  .process-step p {
    color: var(--text-light);
    line-height: 1.6;
  }
  
  .response-time { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: var(--s-4); 
    background: var(--primary); 
    border-radius: var(--radius-sm); 
    padding: var(--s-5); 
  }
  
  .response-item { 
    text-align: center; 
    padding: var(--s-3);
    font-size: 1.05rem;
  }
  
  .response-item strong {
    display: block;
    margin-bottom: .25rem;
  }
  
  /* Problems Grid */
  .problems-grid { 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: var(--s-5);
  }
  
  .problem-card { 
    background: #FAFAFA; 
    border: 1px solid var(--border); 
    border-radius: var(--radius-sm); 
    padding: var(--s-5); 
    text-align: center;
  }
  
  .problem-icon { 
    font-size: 2.5rem; 
    margin-bottom: var(--s-3); 
  }
  
  .problem-card h4 { 
    margin-bottom: var(--s-3); 
    font-size: 1.15rem;
  }
  
  .problem-card p {
    color: var(--text-light);
    font-size: .95rem;
    line-height: 1.6;
  }
  
  /* Rental */
  .rental-intro { 
    max-width: 900px; 
    margin: 0 auto var(--s-7); 
    text-align: center; 
  }
  
  .rental-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
  }
  
  .rental-benefits { 
    margin-bottom: var(--s-7); 
  }
  
  .rental-benefits h3 { 
    text-align: center; 
    margin-bottom: var(--s-5); 
    font-size: 1.75rem;
  }
  
  .rental-benefits-grid { 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: var(--s-4);
  }
  
  .rental-benefit { 
    background: var(--primary); 
    padding: var(--s-4); 
    border-radius: var(--radius-sm); 
    font-weight: 600;
    font-size: .95rem;
  }
  
  .rental-types-grid { 
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); 
    gap: var(--s-6);
  }
  
  .rental-card { 
    background: var(--bg); 
    border: 1px solid var(--border); 
    border-radius: var(--radius); 
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  
  .rental-header { 
    background: var(--black); 
    color: white; 
    padding: var(--s-6); 
    text-align: center; 
  }
  
  .rental-icon { 
    font-size: 3rem; 
    margin-bottom: var(--s-3); 
  }
  
  .rental-header h3 { 
    color: white; 
    margin: 0;
    font-size: 1.5rem;
  }
  
  .rental-body { 
    padding: var(--s-6); 
  }
  
  .rental-body > p {
    color: var(--text-light);
    margin-bottom: var(--s-5);
    line-height: 1.7;
  }
  
  .rental-body h4 { 
    margin: var(--s-5) 0 var(--s-3); 
    color: var(--black);
    font-size: 1.15rem;
  }
  
  .rental-body ul { 
    list-style: none; 
    padding: 0; 
    margin: 0 0 var(--s-4); 
  }
  
  .rental-body li { 
    padding: var(--s-2) 0 var(--s-2) 1.5rem; 
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
  }
  
  .rental-body li:before { 
    content: '▸'; 
    position: absolute; 
    left: 0; 
    color: var(--primary);
    font-weight: 900;
  }
  
  .rental-pricing { 
    background: var(--primary); 
    padding: var(--s-4); 
    border-radius: var(--radius-sm); 
    margin-top: var(--s-5);
    text-align: center;
    font-size: 1.05rem;
  }
  
  /* About */
  .about-content { 
    display: grid; 
    grid-template-columns: 1fr 1.2fr; 
    gap: var(--s-7); 
    align-items: center; 
  }
  
  .about-text h2 { 
    margin-bottom: var(--s-5); 
  }
  
  .about-text p {
    color: var(--text-light);
    margin-bottom: var(--s-5);
    line-height: 1.7;
    font-size: 1.05rem;
  }
  
  .about-media img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    border-radius: var(--radius); 
    box-shadow: var(--shadow-lg); 
  }
  
  .checklist { 
    list-style: none; 
    padding: 0; 
    margin: var(--s-5) 0 0; 
  }
  
  .checklist li { 
    padding: var(--s-3) 0 var(--s-3) 2rem; 
    position: relative;
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.6;
  }
  
  .checklist li:before { 
    content: '✓'; 
    position: absolute; 
    left: 0; 
    color: var(--primary); 
    font-weight: 900;
    font-size: 1.5rem;
  }
  
  /* CTA */
  .cta { 
    background: var(--primary); 
    padding: var(--s-8) 0; 
    border-top: 2px solid var(--primary-dark); 
  }
  
  .cta-inner { 
    text-align: center; 
  }
  
  .cta h2 { 
    margin: 0 0 var(--s-4); 
    font-size: clamp(1.5rem, 3vw, 2.25rem);
  }
  
  .cta p { 
    margin: 0 0 var(--s-6); 
    font-size: 1.1rem;
    color: var(--text-light);
  }
  
  .cta-buttons { 
    display: flex; 
    gap: 1rem; 
    justify-content: center; 
    flex-wrap: wrap; 
  }
  
  /* Contact */
  .contact { 
    max-width: 700px; 
    margin: 0 auto; 
    display: grid; 
    gap: var(--s-5); 
  }
  
  .form-row { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: var(--s-5); 
  }
  
  label { 
    display: grid; 
    gap: .5rem; 
    font-weight: 600; 
    color: var(--black);
  }
  
  input, textarea {
    width: 100%; 
    border: 2px solid var(--border); 
    border-radius: var(--radius-sm); 
    padding: .9rem 1rem; 
    font: inherit; 
    background: var(--bg);
    transition: all .2s ease;
    font-size: 1rem;
  }
  
  input:focus, textarea:focus { 
    outline: none; 
    border-color: var(--black); 
    box-shadow: 0 0 0 4px rgba(15,15,15,.05); 
  }
  
  textarea {
    resize: vertical;
    min-height: 150px;
  }
  
  .form-actions { 
    display: flex; 
    align-items: center; 
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  /* Footer */
  .site-footer { 
    background: var(--black); 
    color: #fff; 
  }
  
  .footer-grid { 
    display: grid; 
    grid-template-columns: 1.5fr 1fr 1fr; 
    gap: var(--s-7); 
    padding: var(--s-8) 0; 
  }
  
  .brand-footer { 
    margin-bottom: var(--s-4); 
  }
  
  .footer-grid h4 { 
    color: white; 
    margin-bottom: var(--s-4);
    font-size: 1.15rem;
  }
  
  .linklist { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
    display: grid; 
    gap: .5rem; 
  }
  
  .linklist a { 
    color: rgba(255,255,255,.75); 
    text-decoration: none;
    transition: color .2s ease;
  }
  
  .linklist a:hover { 
    color: var(--primary); 
  }
  
  .footer-bottom { 
    border-top: 1px solid rgba(255,255,255,.15); 
    padding: var(--s-5) 0; 
  }
  
  /* Reveal Animations */
  .reveal { 
    opacity: 0; 
    transform: translateY(20px); 
  }
  
  .reveal.in { 
    opacity: 1; 
    transform: none; 
    transition: opacity .6s ease, transform .6s ease; 
  }
  
  /* Responsive */
  @media (max-width: 1100px) {
    .about-content { 
      grid-template-columns: 1fr; 
    }
    
    .footer-grid { 
      grid-template-columns: 1fr 1fr; 
      padding-top: 20px;
      padding-left: 20px;
    }
    
    .footer-grid > div:first-child {
      grid-column: 1 / -1;
    }
  }
  
  @media (max-width: 768px) {
    .stats-grid { 
      grid-template-columns: 1fr 1fr; 
      gap: var(--s-5); 
    }
    
    .form-row { 
      grid-template-columns: 1fr; 
    }
    
    .rental-types-grid { 
      grid-template-columns: 1fr; 
    }
    
    .solutions-grid,
    .feature-grid,
    .spare-parts-grid,
    .amc-grid,
    .problems-grid {
      grid-template-columns: 1fr;
    }
    
    .benefits-grid {
      grid-template-columns: 1fr;
    }
    
    .hero-cta {
      flex-direction: column;
      align-items: center;
    }
    
    .hero-cta .btn {
      width: 100%;
      max-width: 300px;
    }
    
    .cta-buttons {
      flex-direction: column;
      align-items: center;
    }
    
    .cta-buttons .btn {
      width: 100%;
      max-width: 350px;
    }
  }
  
  @media (max-width: 480px) {
    .container {
      padding: 0 var(--s-4);
    }
    
    .section {
      padding: var(--s-7) 0;
    }
    
    .crane-types {
      grid-template-columns: 1fr;
    }
    
    .stats-grid {
      grid-template-columns: 1fr;
    }
    
    .process-steps {
      grid-template-columns: 1fr;
    }

    .site-footer{
      padding-top: 10px;
    }
  }
  
  /* Contact form select styling — match inputs */
  .contact select,
  form select {
    width: 100%;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    padding: .9rem 1rem;
    font: inherit;
    background: var(--bg);
    color: var(--black);
    font-size: 1rem;
    box-sizing: border-box;
    transition: all .2s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* Use a single inline SVG chevron to avoid a gap between triangles */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 2l5 4 5-4' stroke='%230F0F0F' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 12px 8px;
    padding-right: 2.4rem;
  }

  .contact select:focus,
  form select:focus {
    outline: none;
    border-color: var(--black);
    box-shadow: 0 0 0 4px rgba(15,15,15,.05);
  }
  
  /* Accessibility: reduced motion */
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal, .reveal.in { transition: none !important; }
    * { transition: none !important; animation: none !important; }
  }

  /* Container for the entire carousel */
  .multi-carousel-container {
    cursor: grab;
    margin: 0 auto;
    max-width: 100%;
    overflow: hidden;
    position: relative;
  }

  /* Cursor styles for dragging */
  .multi-carousel-container.dragging,
  #multiCarousel.dragging {
    cursor: grabbing;
  }

  /* Wrapper for all slides */
  .multi-carousel-inner {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  /* Individual slide */
  .multi-carousel-item,
  .clone {
    box-sizing: border-box;
    flex: 0 0 33.333333%;
    padding: 0 5px;
    position: relative; /* Essential for item-number positioning */
  }

  /* Control buttons */
  .multi-carousel-control-prev,
  .multi-carousel-control-next {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    height: 40px;
    justify-content: center;
    position: absolute;
    text-decoration: none;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.3s ease;
    width: 40px;
    z-index: 10;
  }

  .multi-carousel-control-prev:hover,
  .multi-carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }

  .multi-carousel-control-prev {
    left: 10px;
  }

  .multi-carousel-control-next {
    right: 10px;
  }

  /* Image container with dynamic height */
  .img-container {
    border-radius: 1.5rem;
    height: var(--carousel-height, 80vh);
    overflow: hidden;
    position: relative;
  }

  /* Image styling */
  .img-container img,
  #carouselInner img {
    height: 100%;
    object-fit: cover;
    object-position: top;
    pointer-events: none;
    /* user-drag: none; */
    width: 100%;
    -webkit-user-drag: none;
    transition: transform 0.3s ease;
  }

  .img-container:hover img {
    transform: translateZ(0) scale(1.02);
  }

  /* Item number styling - guaranteed visibility */
  .item-number {
    align-items: center;
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    display: inline-flex;
    font-size: 120%;
    font-weight: bold;
    height: 35px;
    justify-content: center;
    left: 1rem;
    position: absolute;
    top: 1rem;
    width: 35px;
    z-index: 2; /* Higher than default but below controls */
    /* Isolation prevents z-index context issues */
    isolation: isolate;
  }

  /* Carousel cursor styling */
  #multiCarousel {
    cursor: grab;
    touch-action: pan-y;
  }

  /* Disable text selection during drag */
  #multiCarousel.dragging {
    user-select: none;
    -webkit-user-select: none;
  }

  /* Responsive adjustments for screens smaller than 720px (45em) */
  @media (max-width: 45em) {
    .multi-carousel-item,
    .clone {
      flex: 0 0 100%;
    }
  }


  .carousel-control-next-icon {
      display: inline-block;
      width: 20px;
      height: 20px;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: center;
      background-size: 100% 100%;
  }

  .carousel-control-prev-icon {
      display: inline-block;
      width: 20px;
      height: 20px;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: center;
      background-size: 100% 100%;
  }