
    :root {
      --bg: #040404;
      --panel: #0a0a0a;
      --panel-2: #111111;
      --line: rgba(255, 255, 255, 0.08);
      --text: #f5f5f5;
      --muted: rgba(255, 255, 255, 0.72);
      --accent: #e21010;
      --accent-2: #8c0909;
      --container: calc(100% - 64px);
      --container-max: 1200px;
      --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
      --font-display: "Outfit", sans-serif;
      --font-body: "Plus Jakarta Sans", sans-serif;
      --radius-lg: 24px;
      --radius-md: 16px;
      --radius-sm: 12px;
      --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
    }

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

    html {
      scroll-behavior: smooth;
      background: var(--bg);
      overflow-x: clip;
    }

    body {
      font-family: var(--font-body);
      background: 
        linear-gradient(135deg, #050505 0%, #0c0202 50%, #030303 100%),
        radial-gradient(circle at 10% 20%, rgba(226, 16, 16, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(140, 9, 9, 0.04) 0%, transparent 40%);
      color: var(--text);
      overflow-x: clip;
      line-height: 1.6;
    }

    .grid-bg-overlay {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 1;
      opacity: 0.04;
      background-size: 60px 60px;
      background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color 0.3s var(--ease);
    }

    .container {
      width: var(--container);
      max-width: var(--container-max);
      margin: 0 auto;
      position: relative;
    }

    .section {
      padding: 120px 0;
      position: relative;
      z-index: 2;
    }

    .section-header {
      margin-bottom: 60px;
      text-align: center;
      margin: 0 auto 60px;
    }

    .section-eyebrow {
      display: inline-block;
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.3em;
      color: var(--accent);
      margin-bottom: 16px;
      position: relative;
      padding-left: 20px;
    }

    .section-eyebrow::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 12px;
      height: 2px;
      background: var(--accent);
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 800;
      line-height: 1.1;
      text-transform: uppercase;
      letter-spacing: -0.02em;
    }

    .section-title span {
      color: transparent;
      -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
      background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.5) 100%);
      -webkit-background-clip: text;
      background-clip: text;
    }

    .glass-card {
      background: rgba(10, 10, 10, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
    }

    /* Custom Cursor */
    .custom-cursor-dot {
      width: 8px;
      height: 8px;
      background: #ff1010;
      border-radius: 50%;
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: width 0.2s, height 0.2s, background-color 0.2s;
    }

    .custom-cursor-follower {
      width: 40px;
      height: 40px;
      border: 1.5px solid rgba(255, 16, 16, 0.4);
      border-radius: 50%;
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      will-change: transform;
    }
    
    body.cursor-hover .custom-cursor-follower {
      width: 60px;
      height: 60px;
      background: rgba(255, 16, 16, 0.08);
      border-color: #ff1010;
      box-shadow: 0 0 15px rgba(255, 16, 16, 0.35);
    }
    
    body.cursor-hover .custom-cursor-dot {
      width: 12px;
      height: 12px;
    }

    /* Hide default cursor on devices that support hover and are desktop/laptop viewports */
    @media (hover: hover) and (pointer: fine) and (min-width: 992px) {
      body, a, button, [role="button"], input, select, textarea, .service-card, .tool-card, .project-item {
        cursor: none !important;
      }
    }

    /* Hide custom cursor on mobile/tablet viewports and touch devices */
    @media (max-width: 991px), (hover: none) or (pointer: coarse) {
      .custom-cursor-dot,
      .custom-cursor-follower {
        display: none !important;
      }
    }

    /* Header styling */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(5, 5, 5, 0.9);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }

    .header-inner {
      width: var(--container);
      margin: 0 auto;
      min-height: 94px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      flex: 0 0 auto;
    }

    .brand img {
      width: 126px;
      height: auto;
      object-fit: contain;
    }

    .site-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 30px;
      flex: 1 1 auto;
    }

    .site-nav a,
    .header-cta {
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .site-nav a {
      color: rgba(255, 255, 255, 0.88);
      transition: color 0.25s ease, text-shadow 0.25s ease;
      position: relative;
    }

    .site-nav a:hover,
    .site-nav a.active {
      color: var(--accent);
      text-shadow: 0 0 10px rgba(226, 16, 16, 0.6);
    }

    .site-nav a::after {
      content: "";
      position: absolute;
      bottom: -6px;
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.3s ease, left 0.3s ease;
    }

    .site-nav a:hover::after,
    .site-nav a.active::after {
      width: 100%;
      left: 0;
    }

    .header-cta {
      padding: 18px 28px;
      background: linear-gradient(90deg, #c80d0d, #f31a1a);
      box-shadow: 0 14px 34px rgba(226, 16, 16, 0.24);
      flex: 0 0 auto;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      color: #fff;
    }

    .header-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(226, 16, 16, 0.4);
    }

    .menu-toggle {
      display: none;
    }

    /* Page Loader styles */
    .itm-loader {
      position: fixed;
      inset: 0;
      background: #040404;
      z-index: 99999;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity 0.8s ease, visibility 0.8s ease;
    }

    .itm-loader__ambient {
      position: absolute;
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, rgba(226, 16, 16, 0.24) 0%, transparent 70%);
      filter: blur(40px);
    }

    .itm-loader__spinner {
      position: relative;
      width: 60px;
      height: 60px;
      border: 2px solid rgba(255, 255, 255, 0.05);
      border-top-color: var(--accent);
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* HERO BANNER - FULL WIDTH */
    .contact-hero-banner {
      padding: 0; /* Removing top padding resolves gap issue! */
      width: 100%;
      overflow: hidden;
      position: relative;
    }

    .contact-hero-banner .container {
      width: 100%;
      max-width: none;
      margin: 0;
      padding: 0;
    }

    .hero-banner-wrapper {
      position: relative;
      width: 100%;
      aspect-ratio: 21 / 8.5; /* Even taller aspect ratio */
      max-height: 560px; /* Increased desktop height */
      background: #000;
    }

    .hero-banner-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s var(--ease);
    }

    .hero-banner-wrapper:hover .hero-banner-img {
      transform: scale(1.02);
    }

    .hero-banner-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 65%, rgba(4, 4, 4, 0.9) 100%);
      pointer-events: none;
    }

    /* CONTACT HERO HEADER */
    .contact-hero {
      padding: 80px 0 40px;
      text-align: center;
      position: relative;
    }

    .contact-hero::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(226, 16, 16, 0.1) 0%, transparent 70%);
      z-index: 1;
      pointer-events: none;
    }

    /* TILT 3D HELPER */
    .tilt-3d {
      transform-style: preserve-3d;
      will-change: transform;
    }

    /* CONTACT GRID AND CARDS */
    .contact-main-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 50px;
      align-items: start;
      margin-top: 40px;
    }

    .contact-info-column {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .contact-card {
      padding: 30px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: flex-start;
      gap: 20px;
      transition: border-color 0.4s ease, box-shadow 0.4s ease;
    }

    .contact-card::before {
      content: "";
      position: absolute;
      inset: -1px;
      border-radius: inherit;
      background: radial-gradient(120px circle at var(--mx, 50%) var(--my, 50%), rgba(226, 16, 16, 0.35), transparent 80%);
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
      z-index: 1;
    }

    .contact-card:hover::before {
      opacity: 1;
    }

    .contact-card::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 3px;
      background: var(--accent);
      transition: all 0.4s var(--ease);
      transform: translateX(-50%);
      box-shadow: 0 0 12px var(--accent);
      z-index: 3;
    }

    .contact-card:hover::after {
      width: 100%;
    }

    .contact-card * {
      position: relative;
      z-index: 2;
    }

    .contact-icon-wrapper {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.6);
      transition: all 0.4s var(--ease);
      transform: translateZ(20px);
      flex-shrink: 0;
    }

    .contact-card:hover {
      border-color: rgba(226, 16, 16, 0.35);
      box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.65),
        0 0 25px rgba(226, 16, 16, 0.12);
    }

    .contact-card:hover .contact-icon-wrapper {
      background: rgba(226, 16, 16, 0.08);
      border-color: rgba(226, 16, 16, 0.4);
      color: var(--accent);
      box-shadow: 0 0 15px rgba(226, 16, 16, 0.2);
      transform: translateZ(35px) scale(1.15) rotate(-10deg);
    }

    .contact-details-box {
      transform: translateZ(10px);
    }

    .contact-details-box h3 {
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--muted);
      margin-bottom: 8px;
      transition: color 0.3s ease, letter-spacing 0.4s var(--ease);
    }

    .contact-card:hover .contact-details-box h3 {
      color: #fff;
      letter-spacing: 0.12em;
      text-shadow: 0 0 8px rgba(226, 16, 16, 0.6);
    }

    .contact-link-row {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .contact-link-row a,
    .contact-link-row p {
      color: rgba(255, 255, 255, 0.74);
      font-size: 13px;
      line-height: 1.6;
    }

    .contact-link-row a:hover {
      color: var(--accent);
    }

    /* PREMIUM INTERACTIVE FORM */
    .contact-form-panel {
      padding: 50px 40px;
      position: relative;
    }

    .contact-form-panel::before {
      content: "";
      position: absolute;
      inset: -1px;
      border-radius: inherit;
      background: radial-gradient(180px circle at var(--mx, 50%) var(--my, 50%), rgba(226, 16, 16, 0.15), transparent 85%);
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
      z-index: 1;
    }

    .contact-form-panel:hover::before {
      opacity: 1;
    }

    .contact-form-panel * {
      position: relative;
      z-index: 2;
    }

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

    .form-group-full {
      grid-column: span 2;
    }

    .form-group {
      position: relative;
      margin-bottom: 8px;
    }

    .form-input,
    .form-select,
    .form-textarea {
      width: 100%;
      padding: 16px 20px;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-sm);
      color: #fff;
      font-family: var(--font-body);
      font-size: 13px;
      outline: none;
      transition: border-color 0.3s, background-color 0.3s, box-shadow 0.3s;
    }

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

    .form-label {
      position: absolute;
      left: 20px;
      top: 17px;
      color: rgba(255, 255, 255, 0.4);
      font-size: 13px;
      pointer-events: none;
      transition: transform 0.3s var(--ease), color 0.3s var(--ease), font-size 0.3s var(--ease);
    }

    .form-input:focus ~ .form-label,
    .form-input:not(:placeholder-shown) ~ .form-label,
    .form-textarea:focus ~ .form-label,
    .form-textarea:not(:placeholder-shown) ~ .form-label {
      transform: translateY(-28px) scale(0.85);
      color: var(--accent);
      left: 10px;
    }

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      border-color: rgba(226, 16, 16, 0.45);
      background-color: rgba(255, 255, 255, 0.04);
      box-shadow: 0 0 15px rgba(226, 16, 16, 0.1);
    }

    .form-select {
      appearance: none;
      cursor: pointer;
    }

    .form-select-wrapper {
      position: relative;
    }

    .form-select-wrapper::after {
      content: "";
      position: absolute;
      right: 20px;
      top: 50%;
      width: 8px;
      height: 8px;
      border: 2px solid rgba(255, 255, 255, 0.4);
      border-left: 0;
      border-top: 0;
      transform: translateY(-60%) rotate(45deg);
      pointer-events: none;
      transition: border-color 0.3s;
    }

    .form-select:focus + ::after {
      border-color: var(--accent);
    }

    .submit-btn {
      width: 100%;
      padding: 18px;
      background: linear-gradient(90deg, #c80d0d, #f31a1a);
      border: none;
      border-radius: var(--radius-sm);
      color: #fff;
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      cursor: pointer;
      box-shadow: 0 14px 34px rgba(226, 16, 16, 0.24);
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
      margin-top: 10px;
    }

    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(226, 16, 16, 0.4);
    }

    /* DARK THEME GOOGLE MAP */
    .map-section {
      width: 100%;
      height: 450px;
      position: relative;
      z-index: 2;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      overflow: hidden;
      background: #080808;
    }

    .map-container {
      width: 100%;
      height: 100%;
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: 0;
      filter: invert(90%) hue-rotate(185deg) grayscale(40%) contrast(110%);
      opacity: 0.85;
      transition: opacity 0.4s ease;
    }

    .map-container iframe:hover {
      opacity: 1;
    }

    /* Floating WhatsApp Button Style */
    .whatsapp-float-btn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: #25d366;
      color: #ffffff;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
      z-index: 9999;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      text-decoration: none;
    }

    .whatsapp-float-btn:hover {
      transform: translateY(-5px) scale(1.08);
      box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
      background: #22c35e;
    }

    .whatsapp-float-btn svg {
      width: 28px;
      height: 28px;
      fill: #ffffff;
    }

    /* RESPONSIVE LAYOUTS */
    @media (max-width: 992px) {
      .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    @media (max-width: 768px) {
      .header-cta {
        display: none !important;
      }
      
      .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: #ffffff;
        cursor: pointer;
        padding: 8px;
        border-radius: 8px;
        width: 42px;
        height: 42px;
        z-index: 50;
        transition: all 0.3s ease;
      }

      .menu-toggle:hover {
        border-color: var(--accent);
        background: rgba(226, 16, 16, 0.08);
        box-shadow: 0 0 10px rgba(226, 16, 16, 0.25);
      }

      .menu-toggle svg {
        transition: transform 0.3s ease;
      }

      .nav-open .menu-toggle svg {
        transform: rotate(90deg);
      }

      .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.98);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        flex-direction: column;
        gap: 0 !important;
        padding: 16px 24px;
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 45;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.9);
      }

      .nav-open .site-nav {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
      }

      .site-nav a {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 14px 20px;
        font-size: 13px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        background: rgba(255, 255, 255, 0.01);
        border-radius: 8px;
        margin-bottom: 8px;
        box-sizing: border-box;
        transition: all 0.25s ease;
      }

      .site-nav a:hover,
      .site-nav a.active {
        background: rgba(226, 16, 16, 0.08);
        border-color: rgba(226, 16, 16, 0.2);
        color: var(--accent) !important;
      }

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

      .site-nav a::before {
        content: ">";
        order: 2;
        color: var(--accent);
        font-weight: 800;
        font-size: 14px;
        transition: transform 0.2s ease;
      }

      .site-nav a:hover::before {
        transform: translateX(4px);
      }

      .hero-banner-wrapper {
        aspect-ratio: 16 / 7;
        height: auto;
        max-height: 240px;
      }
      
      .section {
        padding: 60px 0;
      }
      .contact-main-grid {
        gap: 30px;
      }
      .map-section {
        height: 320px;
      }
    }

    @media (max-width: 600px) {
      .form-grid {
        grid-template-columns: 1fr;
      }
      .form-group-full {
        grid-column: span 1;
      }
      .contact-form-panel {
        padding: 30px 20px;
      }
    }

    @media (max-width: 480px) {
      :root {
        --container: calc(100% - 32px);
      }
      .contact-card {
        padding: 20px 16px;
        gap: 12px;
      }
      .contact-form-panel {
        padding: 24px 16px;
      }
      .form-grid {
        gap: 16px;
      }
      .map-section {
        height: 300px;
      }
      .whatsapp-float-btn {
        right: 20px;
        bottom: 20px;
        width: 50px;
        height: 50px;
      }
      .whatsapp-float-btn svg {
        width: 24px;
        height: 24px;
      }
    }

    [data-reveal] {
      opacity: 0;
      will-change: transform, opacity;
    }
    [data-reveal="up"] {
      transform: translate3d(0, 50px, 0);
    }
    [data-reveal="down"] {
      transform: translate3d(0, -50px, 0);
    }
    [data-reveal="left"] {
      transform: translate3d(-50px, 0, 0);
    }
    [data-reveal="right"] {
      transform: translate3d(50px, 0, 0);
    }

    /* FOOTER STYLING */
    .site-footer {
      position: relative;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      background:
        radial-gradient(circle at 84% 18%, rgba(255, 0, 0, 0.18), transparent 24%),
        linear-gradient(135deg, #060606 0%, #080808 58%, #130303 100%);
      overflow: hidden;
    }

    .site-footer::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
      background-size: 34px 34px;
      opacity: 0.18;
      pointer-events: none;
    }

    .site-footer::after {
      content: "";
      position: absolute;
      right: -8%;
      top: -16%;
      width: 520px;
      height: 220px;
      background:
        radial-gradient(circle at center, rgba(255, 0, 0, 0.12), transparent 62%);
      transform: rotate(-8deg);
      pointer-events: none;
    }

    .footer-inner {
      width: var(--container);
      max-width: 1380px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(340px, 1.9fr) minmax(150px, 0.95fr) minmax(150px, 0.95fr) minmax(280px, 1.45fr);
      gap: 64px;
      padding: 60px 0 40px;
      align-items: start;
    }

    .footer-brand {
      justify-self: start;
      max-width: 360px;
    }

    .footer-brand img {
      display: block;
      width: min(100%, 220px);
      height: auto;
      object-fit: contain;
      margin: 0 0 22px;
    }

    .footer-brand p {
      max-width: 300px;
      margin: 0 0 18px;
      color: rgba(255, 255, 255, 0.68);
      font-size: 14px;
      line-height: 1.85;
    }

    .footer-socials {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-socials a {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.15);
      display: grid;
      place-items: center;
      color: rgba(255, 255, 255, 0.6);
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .footer-socials a:hover {
      color: #ffffff;
      border-color: var(--accent);
      background: var(--accent);
      box-shadow: 0 0 10px rgba(226, 16, 16, 0.45);
      transform: translateY(-2px);
    }

    .footer-links h3,
    .footer-contact h3 {
      margin: 0 0 16px;
      color: var(--accent);
      font-family: var(--font-display);
      font-size: 1.05rem;
      letter-spacing: -0.03em;
      text-transform: uppercase;
    }

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

    .footer-links a,
    .footer-contact a,
    .footer-contact p {
      color: rgba(255, 255, 255, 0.74);
      font-size: 14px;
      line-height: 1.75;
      text-decoration: none;
      margin: 0;
    }

    .footer-links a:hover,
    .footer-contact a:hover {
      color: #ffffff;
    }

    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .contact-item {
      display: grid;
      grid-template-columns: 20px minmax(0, 1fr);
      gap: 12px;
      align-items: start;
    }

    .contact-item div {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .contact-icon {
      color: var(--accent);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 2px;
    }

    .footer-bottom {
      width: var(--container);
      max-width: 1380px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      min-height: 46px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      padding: 0 0 10px;
    }

    .footer-bottom p {
      margin: 0;
      color: rgba(255, 255, 255, 0.56);
      font-size: 13px;
      line-height: 1.5;
      text-align: center;
    }

    .footer-top {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.22);
      display: grid;
      place-items: center;
      color: rgba(255, 255, 255, 0.82);
      font-size: 12px;
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
    }

    @media (max-width: 1240px) {
      .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 768px) {
      .footer-inner {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 16px;
        padding: 40px 16px 24px;
      }

      .footer-brand {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 100%;
      }

      .footer-brand img {
        width: 130px;
        margin: 0 auto 16px;
      }

      .footer-brand p {
        text-align: center;
        margin: 0 auto 20px;
        max-width: 320px;
        font-size: 13.5px;
        line-height: 1.8;
      }

      .footer-socials {
        justify-content: center;
        gap: 12px;
      }

      .footer-links h3 {
        margin-bottom: 12px;
        text-align: left;
      }

      .footer-links {
        align-items: flex-start;
        text-align: left;
        gap: 8px;
      }

      .footer-links a {
        font-size: 13.5px;
        line-height: 1.7;
        text-align: left;
      }

      .footer-contact {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
        gap: 14px;
        width: 100%;
        margin-top: 8px;
      }

      .footer-contact h3 {
        margin-bottom: 12px;
        text-align: center;
      }

      .footer-contact a,
      .footer-contact p {
        font-size: 13.5px;
        line-height: 1.7;
        text-align: center;
      }

      .contact-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
        margin-bottom: 16px;
      }

      .contact-item div {
        align-items: center;
      }

      .contact-item p {
        text-align: center;
        max-width: 280px;
      }

      .footer-bottom {
        flex-direction: column;
        justify-content: center;
        padding: 16px 0;
        gap: 12px;
      }

      .footer-top {
        position: static;
        transform: none;
        margin: 8px auto 0;
      }
    }

    @media (max-width: 480px) {
      
    }

    @media (max-width: 600px) {
      .footer-inner {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px 20px !important;
        padding: 50px 16px 30px !important;
      }
      .footer-brand {
        grid-column: 1 / -1 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        max-width: 100% !important;
        margin-bottom: 16px !important;
      }
      .footer-brand img {
        margin: 0 auto 16px !important;
        width: 180px !important;
      }
      .footer-brand::after {
        content: "";
        display: block;
        width: 100px;
        height: 1.5px;
        background: linear-gradient(90deg, transparent, var(--accent), transparent);
        margin: 16px auto 24px;
      }
      .footer-brand p {
        text-align: center !important;
        margin: 0 auto 20px !important;
        max-width: 100% !important;
      }
      .footer-socials {
        justify-content: center !important;
      }
      .footer-links {
        grid-column: span 1 !important;
      }
      .footer-links h3 {
        color: var(--accent) !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.08em !important;
        margin-bottom: 16px !important;
      }
      .footer-links a {
        display: block !important;
        font-size: 14px !important;
        margin-bottom: 12px !important;
      }
      .footer-links a::before {
        content: "— ";
        color: var(--accent);
        margin-right: 6px;
        font-weight: bold;
      }
      .footer-contact {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        margin-top: 10px !important;
      }
      .footer-contact h3 {
        color: var(--accent) !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.08em !important;
        margin-bottom: 20px !important;
      }
      .contact-item {
        background: rgba(255, 255, 255, 0.02) !important;
        border: 1px solid rgba(255, 255, 255, 0.06) !important;
        border-radius: 12px !important;
        padding: 16px 20px !important;
        margin-bottom: 14px !important;
        display: flex !important;
        align-items: center !important;
        gap: 18px !important;
        width: 100% !important;
        text-align: left !important;
      }
      .contact-icon {
        width: 44px !important;
        height: 44px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
      }
      /* Phone item */
      .footer-contact .contact-item:nth-of-type(1) .contact-icon {
        border: 1.5px solid rgba(37, 211, 102, 0.45) !important;
        color: #25d366 !important;
        background: rgba(37, 211, 102, 0.06) !important;
      }
      /* Email item */
      .footer-contact .contact-item:nth-of-type(2) .contact-icon {
        border: 1.5px solid rgba(59, 130, 246, 0.45) !important;
        color: #3b82f6 !important;
        background: rgba(59, 130, 246, 0.06) !important;
      }
      /* Address item */
      .footer-contact .contact-item:nth-of-type(3) .contact-icon {
        border: 1.5px solid rgba(251, 191, 36, 0.45) !important;
        color: #fbbf24 !important;
        background: rgba(251, 191, 36, 0.06) !important;
      }
      .contact-item div {
        display: flex !important;
        flex-direction: column !important;
        gap: 4px !important;
      }
      .contact-item a, 
      .contact-item p {
        font-size: 14px !important;
        color: rgba(255, 255, 255, 0.85) !important;
        line-height: 1.5 !important;
      }
      .footer-bottom {
        flex-direction: column !important;
        align-items: center !important;
        gap: 16px !important;
        text-align: center !important;
        padding-top: 30px !important;
      }
      .footer-bottom p {
        text-align: center !important;
      }
    }
  