﻿
    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --deep-teal: #0A3D38;
      --teal-mid: #0E4A45;
      --teal-light: #145B55;
      --teal-pale: #E2EFEC;
      --gold: #D4A338;
      --gold-hover: #C5922E;
      --gold-light: #F5E6C8;
      --white: #FFFFFF;
      --off-white: #F5F8F7;
      --gray-100: #EDF1F0;
      --gray-200: #DDE4E2;
      --gray-400: #95A6A2;
      --gray-600: #647B76;
      --charcoal: #1A1D1C;
      --text: #26302D;
      --text-light: #5C716C;
      --radius: 12px;
      --shadow: 0 4px 24px rgba(10, 61, 56, 0.06);
      --shadow-lg: 0 12px 48px rgba(10, 61, 56, 0.10);
      --max-width: 1200px;
      --nav-height: 80px;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 24px;
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: var(--nav-height);
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--gray-200);
      z-index: 1000;
      transition: box-shadow 0.3s;
    }

    .nav.scrolled {
      box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    }

    .nav .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-logo-icon {
      width: 40px;
      height: 40px;
      background: var(--deep-teal);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-weight: 800;
      font-size: 1.1rem;
      letter-spacing: 1px;
    }

    .nav-logo-text {
      font-weight: 700;
      font-size: 1.25rem;
      color: var(--deep-teal);
      letter-spacing: -0.5px;
    }

    .nav-logo-text span {
      color: var(--gold);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--charcoal);
      transition: color 0.2s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gold);
      transition: width 0.3s;
    }

    .nav-links a:hover {
      color: var(--gold);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      background: var(--gold);
      color: var(--deep-teal) !important;
      padding: 8px 20px;
      border-radius: 8px;
      font-weight: 600;
      transition: background 0.2s;
    }

    .nav-cta::after {
      display: none !important;
    }

    .nav-cta:hover {
      background: var(--gold-hover);
      color: var(--deep-teal) !important;
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }

    .nav-toggle span {
      display: block;
      width: 26px;
      height: 2px;
      background: var(--charcoal);
      border-radius: 2px;
      transition: 0.3s;
    }

    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: var(--nav-height);
      position: relative;
      overflow: hidden;
      background: var(--deep-teal);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-bg video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(5, 30, 25, 0.92) 0%, rgba(5, 30, 25, 0.70) 50%, rgba(3, 25, 20, 0.92) 100%);
      z-index: 1;
    }

    .hero-glow {
      position: absolute;
      top: -40%;
      right: -10%;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(212, 163, 56, 0.12) 0%, transparent 70%);
      pointer-events: none;
      z-index: 2;
    }

    .hero-video-wrap {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
      width: 100%;
      max-width: 480px;
      aspect-ratio: 16 / 9;
      background: #000;
    }

    .hero-video-wrap video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-video-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 20px;
      border: 1px solid rgba(212, 163, 56, 0.15);
      pointer-events: none;
    }

    .hero .container {
      position: relative;
      z-index: 3;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .hero-visual {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      padding-right: 0;
    }

    .hero .container > div:first-child {
      justify-self: start;
    }

    .hero-tag {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      background: rgba(212, 163, 56, 0.12);
      padding: 6px 16px;
      border-radius: 100px;
      margin-bottom: 20px;
    }

    .hero h1 {
      font-size: 4.25rem;
      font-weight: 800;
      line-height: 1.05;
      color: var(--white);
      letter-spacing: -2px;
      margin-bottom: 12px;
    }

    .hero h1 span {
      color: var(--gold);
    }

    .hero-sub {
      font-size: 1.2rem;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.8);
      max-width: 520px;
      margin-bottom: 12px;
      line-height: 1.55;
    }

    .hero-support {
      font-size: 0.9rem;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.55);
      max-width: 520px;
      margin-bottom: 32px;
      line-height: 1.6;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      border-radius: 10px;
      font-weight: 600;
      font-size: 0.95rem;
      border: none;
      cursor: pointer;
      transition: all 0.25s;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--deep-teal);
    }

    .btn-primary:hover {
      background: var(--gold-hover);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(212, 163, 56, 0.3);
    }

    .btn-secondary {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255, 255, 255, 0.25);
    }

    .btn-secondary:hover {
      border-color: var(--gold);
      color: var(--gold);
      transform: translateY(-2px);
    }

    section {
      padding: 100px 0;
    }

    .section-label {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .section-title {
      font-size: 2.75rem;
      font-weight: 700;
      color: var(--deep-teal);
      letter-spacing: -1px;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .section-desc {
      font-size: 1.1rem;
      color: var(--text-light);
      max-width: 680px;
      line-height: 1.7;
    }

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

    .mx-auto {
      margin-left: auto;
      margin-right: auto;
    }

    .grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 32px;
    }

    .grid-4 {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: 24px;
    }

    .intro {
      background: var(--white);
    }

    .intro .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .intro-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--gold-light);
      color: var(--gold-hover);
      padding: 6px 14px;
      border-radius: 100px;
      font-size: 0.8rem;
      font-weight: 600;
      margin-bottom: 16px;
    }

    .intro h2 {
      font-size: 2rem;
      font-weight: 700;
      color: var(--deep-teal);
      margin-bottom: 16px;
      line-height: 1.3;
    }

    .intro p {
      color: var(--text-light);
      line-height: 1.8;
    }

    .intro-visual {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .intro-visual-item {
      background: var(--teal-pale);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: var(--shadow);
      border-left: 3px solid var(--gold);
    }

    .intro-visual-item .num {
      font-size: 2rem;
      font-weight: 800;
      color: var(--gold);
      line-height: 1;
    }

    .intro-visual-item h4 {
      font-size: 0.95rem;
      color: var(--deep-teal);
      margin: 8px 0 4px;
    }

    .intro-visual-item p {
      font-size: 0.8rem;
      color: var(--text-light);
    }

    .card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 32px;
      box-shadow: var(--shadow);
      border: 1px solid var(--gray-100);
      transition: transform 0.25s, box-shadow 0.25s;
    }

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

    .card-icon {
      width: 48px;
      height: 48px;
      background: rgba(212, 163, 56, 0.12);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 16px;
      color: var(--gold);
    }

    .card h3 {
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--deep-teal);
      margin-bottom: 10px;
    }

    .card p {
      font-size: 0.9rem;
      color: var(--text-light);
      line-height: 1.7;
    }

    .serve {
      background: var(--deep-teal);
    }

    .serve .section-title {
      color: var(--white);
    }

    .serve .section-desc {
      color: rgba(255, 255, 255, 0.7);
    }

    .serve-card {
      background: rgba(255, 255, 255, 0.06);
      border-radius: var(--radius);
      padding: 32px;
      border: 1px solid rgba(212, 163, 56, 0.12);
      box-shadow: none;
      position: relative;
      overflow: hidden;
    }

    .serve-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: var(--gold);
    }

    .serve-card h3 {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--gold);
      margin-bottom: 10px;
    }

    .serve-card p {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.7;
    }

    .why-section {
      background: var(--deep-teal);
    }

    .why-section .section-title {
      color: var(--white);
    }

    .why-section .section-desc {
      color: rgba(255, 255, 255, 0.7);
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 24px;
    }

    .why-item {
      text-align: center;
      padding: 36px 24px;
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(212, 163, 56, 0.12);
      box-shadow: none;
      transition: transform 0.25s, background 0.25s;
    }

    .why-item:hover {
      transform: translateY(-4px);
      background: rgba(255, 255, 255, 0.09);
    }

    .why-icon {
      width: 56px;
      height: 56px;
      margin: 0 auto 16px;
      background: rgba(212, 163, 56, 0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: var(--gold);
    }

    .why-item h4 {
      font-size: 1rem;
      font-weight: 600;
      color: var(--gold);
      margin-bottom: 10px;
    }

    .why-item p {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.65;
    }

    .cta-banner {
      position: relative;
      padding: 100px 0;
      text-align: center;
      overflow: hidden;
      background: var(--teal-pale);
    }

    .cta-banner .cta-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .cta-banner .cta-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .cta-banner .cta-overlay {
      position: absolute;
      inset: 0;
      background: rgba(226, 239, 236, 0.92);
      z-index: 1;
    }

    .cta-banner .container {
      position: relative;
      z-index: 2;
    }

    .cta-banner h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--deep-teal);
      letter-spacing: -1px;
      margin-bottom: 16px;
    }

    .cta-banner p {
      font-size: 1.1rem;
      color: var(--text-light);
      max-width: 600px;
      margin: 0 auto 32px;
      line-height: 1.7;
    }

    .cta-banner .btn-primary {
      font-size: 1.05rem;
      padding: 16px 40px;
    }

    .about {
      background: var(--teal-pale);
      overflow: hidden;
    }

    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .about-text h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--deep-teal);
      letter-spacing: -1px;
      margin-bottom: 20px;
    }

    .about-text p {
      color: var(--text-light);
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .about-image-wrap {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    .about-image-wrap img {
      width: 100%;
      height: 450px;
      object-fit: cover;
    }

    .about-image-wrap::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 40%;
      background: linear-gradient(transparent, rgba(10, 46, 38, 0.6));
      pointer-events: none;
    }

    .about-image-caption {
      position: absolute;
      bottom: 24px;
      left: 24px;
      z-index: 2;
      color: var(--white);
      font-size: 0.85rem;
      font-weight: 500;
      opacity: 0.8;
    }

    .about-highlights {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .about-highlight {
      background: var(--teal-pale);
      border-radius: var(--radius);
      padding: 24px;
      border-left: 3px solid var(--gold);
    }

    .about-highlight h4 {
      font-size: 0.95rem;
      color: var(--deep-teal);
      margin-bottom: 4px;
    }

    .about-highlight p {
      font-size: 0.8rem;
      color: var(--text-light);
      margin-bottom: 0;
    }

    .services {
      background: var(--deep-teal);
    }

    .services .section-title {
      color: var(--white);
    }

    .services .section-desc {
      color: rgba(255, 255, 255, 0.7);
    }

    .services-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 24px;
      margin-top: 48px;
    }

    .services-grid .service-card:last-child {
      grid-column: 2;
    }

    .service-card {
      background: rgba(255, 255, 255, 0.06);
      border-radius: var(--radius);
      padding: 28px;
      border: 1px solid rgba(212, 163, 56, 0.12);
      box-shadow: none;
      transition: transform 0.25s, background 0.25s;
    }

    .service-card:hover {
      transform: translateY(-4px);
      background: rgba(255, 255, 255, 0.09);
    }

    .service-card .icon {
      width: 48px;
      height: 48px;
      background: rgba(212, 163, 56, 0.12);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 20px;
      color: var(--gold);
    }

    .service-card h4 {
      font-size: 1rem;
      font-weight: 600;
      color: var(--gold);
      margin-bottom: 8px;
    }

    .service-card p {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.65;
    }

    #assessment {
      background: var(--white);
    }

    #assessment .section-title {
      color: var(--deep-teal);
    }

    #assessment .section-desc {
      color: var(--text-light);
    }

    .process {
      background: var(--white);
      color: var(--text);
      position: relative;
      overflow: hidden;
    }

    .process::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('images/parking-2.png') center/cover no-repeat;
      opacity: 0.04;
      z-index: 0;
    }

    .process .container {
      position: relative;
      z-index: 1;
    }

    .process .section-label {
      color: var(--gold);
    }

    .process .section-title {
      color: var(--deep-teal);
    }

    .process .section-desc {
      color: var(--text-light);
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 48px;
    }

    .process-step {
      text-align: center;
      padding: 32px 20px;
      border-radius: var(--radius);
      background: var(--teal-pale);
      border: 1px solid var(--gray-100);
    }

    .process-step .step-num {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--gold);
      opacity: 1;
      line-height: 1;
    }

    .process-step h4 {
      font-size: 1rem;
      font-weight: 600;
      color: var(--deep-teal);
      margin: 12px 0 8px;
    }

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

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .contact-info h3 {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--deep-teal);
      margin-bottom: 16px;
    }

    .contact-info p {
      color: var(--text-light);
      line-height: 1.7;
      margin-bottom: 24px;
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .contact-detail {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .contact-detail .icon {
      width: 40px;
      height: 40px;
      background: var(--gold-light);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: var(--gold-hover);
      flex-shrink: 0;
    }

    .contact-detail .label {
      font-size: 0.8rem;
      color: var(--text-light);
    }

    .contact-detail .value {
      font-weight: 500;
      color: var(--charcoal);
    }

    .contact-form {
      background: var(--white);
      border-radius: var(--radius);
      padding: 40px;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--gray-100);
    }

    .contact-form h4 {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--deep-teal);
      margin-bottom: 24px;
    }

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

    .form-group {
      margin-bottom: 16px;
    }

    .form-group label {
      display: block;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--charcoal);
      margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid var(--gray-200);
      border-radius: 8px;
      font-size: 0.9rem;
      font-family: inherit;
      color: var(--charcoal);
      background: var(--white);
      transition: border-color 0.2s;
      outline: none;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--gold);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 100px;
    }

    .btn-submit {
      width: 100%;
      padding: 14px;
      background: var(--gold);
      color: var(--deep-teal);
      font-weight: 600;
      font-size: 1rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.2s;
    }

    .btn-submit:hover {
      background: var(--gold-hover);
    }

    .footer {
      background: var(--deep-teal);
      color: rgba(255, 255, 255, 0.7);
      padding: 60px 0 32px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-brand p {
      font-size: 1.15rem;
      line-height: 1.7;
      margin-top: 14px;
      color: rgba(255, 255, 255, 0.85);
    }

    .footer-brand .powered {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.5);
      margin-top: 10px;
    }

    .footer h4 {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 16px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.55);
      transition: color 0.2s;
    }

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

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 24px;
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.35);
    }

    .grid-2col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .img-round {
      border-radius: var(--radius);
    }

    .gallery-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .gallery-strip img {
      height: 240px;
      width: 100%;
      object-fit: cover;
      border-radius: var(--radius);
      border: 2px solid rgba(212, 163, 56, 0.15);
    }

    .reason-card {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      background: var(--white);
      padding: 24px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      border-left: 4px solid var(--gold);
      transition: transform 0.25s, box-shadow 0.25s;
    }

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

    .reason-icon {
      width: 40px;
      height: 40px;
      background: var(--gold-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: var(--gold-hover);
      flex-shrink: 0;
    }

    .reason-card p {
      font-size: 0.9rem;
      color: var(--text-light);
      line-height: 1.65;
    }

    .section-compact {
      padding: 80px 0;
    }

    .section-tight {
      padding: 60px 0;
    }

    .img-fixed {
      width: 100%;
      height: 400px;
      object-fit: cover;
    }

    .grid-2 .grid-img-wrap {
      display: flex;
    }

    .grid-2 .grid-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 250px;
    }

    .what-we-do-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .what-we-do-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      background: var(--white);
      padding: 20px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      border-left: 3px solid var(--gold);
    }

    .what-we-do-item .check {
      color: var(--gold);
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .what-we-do-item p {
      font-size: 0.9rem;
      color: var(--text-light);
      line-height: 1.6;
    }

    @media (max-width: 992px) {
      .hero .container {
        gap: 40px;
      }

      .hero-visual {
        justify-content: center;
        padding-right: 0;
      }

      .hero-video-wrap {
        max-width: 100%;
      }
      .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .hero h1 {
        font-size: 3rem;
      }

      .hero-sub {
        margin-left: auto;
        margin-right: auto;
      }

      .hero-support {
        margin-left: auto;
        margin-right: auto;
      }

      .hero-buttons {
        justify-content: center;
      }

      .intro .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
      }

      .about-content {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

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

      .why-grid {
        grid-template-columns: 1fr 1fr;
      }

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

      .grid-2,
      .grid-3,
      .grid-4 {
        grid-template-columns: 1fr 1fr;
      }

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

      .grid-2 {
        gap: 32px;
      }

      .gallery-strip {
        grid-template-columns: 1fr;
      }

      .what-we-do-list {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      :root {
        --nav-height: 70px;
      }

      .nav {
        height: 70px;
      }

      .hero h1 {
        letter-spacing: -1px;
      }

      .section-compact,
      .section-tight {
        padding: 60px 0;
      }

      .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--gray-200);
        transform: translateY(-120%);
        transition: transform 0.3s;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
      }

      .nav-links.open {
        transform: translateY(0);
      }

      .nav-toggle {
        display: flex;
      }

      .hero h1 {
        font-size: 2.25rem;
      }

      section {
        padding: 60px 0;
      }

      .section-title {
        font-size: 2rem;
      }

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

      .why-grid {
        grid-template-columns: 1fr;
      }

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

      .grid-2,
      .grid-3,
      .grid-4 {
        grid-template-columns: 1fr;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .intro-visual {
        grid-template-columns: 1fr;
      }

      .about-highlights {
        grid-template-columns: 1fr;
      }

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

      .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
      }

      .about-image-wrap img {
        height: 280px;
      }

      .hero-glow {
        width: 500px;
        height: 500px;
      }

      .services-grid .service-card:last-child {
        grid-column: auto;
      }

      .img-fixed {
        height: 250px;
      }

      .grid-2 .grid-img-wrap {
        max-height: 300px;
      }

      .cta-banner h2 {
        font-size: 1.75rem;
      }

      .contact-form {
        padding: 24px;
      }

      .gallery-strip {
        grid-template-columns: 1fr;
      }

      .what-we-do-list {
        grid-template-columns: 1fr;
      }
    }

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

      .hero-tag {
        font-size: 0.6rem;
        padding: 4px 12px;
      }

      .hero-sub {
        font-size: 0.95rem;
      }

      .hero-buttons .btn {
        font-size: 0.8rem;
        padding: 12px 20px;
      }

      .section-title {
        font-size: 1.5rem;
      }

      .section-desc {
        font-size: 0.9rem;
      }

      .cta-banner h2 {
        font-size: 1.35rem;
      }

      section {
        padding: 40px 0;
      }

      .container {
        padding: 0 16px;
      }

      .service-card {
        padding: 20px;
      }

      .process-step {
        padding: 24px 16px;
      }

      .reason-card {
        padding: 16px;
      }

      .contact-form {
        padding: 20px;
      }

      .footer-top {
        gap: 24px;
      }

      .grid-2 .grid-img-wrap {
        max-height: 240px;
      }

      .intro .container {
        gap: 24px;
      }

      .about-content {
        gap: 24px;
      }

      .contact-grid {
        gap: 24px;
      }

      .gallery-strip img {
        height: 160px;
      }

      .contact-form {
        padding: 16px;
      }

      .section-compact {
        padding: 40px 0;
      }

      .section-tight {
        padding: 32px 0;
      }

      .gallery-strip {
        padding: 16px !important;
      }

      .hero-glow {
        width: 450px;
        height: 450px;
      }
    }

    @media (max-width: 360px) {
      .container {
        padding: 0 12px;
      }

      section {
        padding: 32px 0;
      }

      .hero h1 {
        font-size: 1.5rem;
      }

      .section-title {
        font-size: 1.35rem;
      }

      .hero-glow {
        width: 350px;
        height: 350px;
      }

      .service-card {
        padding: 16px;
      }

      .serve-card {
        padding: 20px;
      }

      .process-step {
        padding: 16px 12px;
      }

      .reason-card {
        padding: 12px;
      }

      .footer-top {
        gap: 16px;
      }

      .section-compact,
      .section-tight {
        padding: 32px 0;
      }

      .gallery-strip {
        padding: 12px !important;
      }

      .hero-buttons .btn {
        font-size: 0.75rem;
        padding: 10px 14px;
      }
    }
